You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
swarms/docs/old-docs/design/abstraction.py

20 lines
486 B

1 year ago
from swarms import Model, Agent, vectorstore, tools, orchestrator
1 year ago
1 year ago
# 1 model
1 year ago
Model(openai)
1 year ago
# 2 agent level
Agent(model, vectorstore, tools)
1 year ago
1 year ago
# 3 worker infrastructure level
worker_node(Agent, human_input, tools)
1 year ago
1 year ago
# 4 swarm level basically handling infrastructure for multiple worker node
swarm = orchestrator(worker_node, 100) # nodes
1 year ago
1 year ago
# 5
hivemind = Hivemind(swarm * 100)
1 year ago
1 year ago
# a market different pre built worker or boss agent that have access to different tools and memory, proompts