npi-ai / npi

Action library for AI Agent
https://www.npi.ai
Apache License 2.0
191 stars 7 forks source link

Multiagents collaboration #42

Open wenfengwang opened 6 months ago

wenfengwang commented 6 months ago
from npiai.core import Agent

agent1 = Agent(prompt="...")
agent1.use(Gmail(), Calendar())

agent2 = Agent(prompt="...")
agent2.use(GitHub())

agent3 = Agent.group(agent1, agent2)
agent3.run(task="...")