Skip to content

ISAA Quickstart Guide

Installation & Setup

pip install toolboxv2

Erster Agent

from toolboxv2 import Application

app = Application()
isaa = app.get_mod(\"isaa\")

# Agent erstellen
agent = await isaa.get_agent(\"my_first_agent\")

Agent ausführen

# Synchrone Ausführung
result = agent.run(\"Erkläre Python\")

# Asynchrone Ausführung
result = await agent.a_run(\"Erkläre Python\")

Chain erstellen

chain = isaa.chain_from_agents(\"researcher\", \"summarizer\")
result = await chain.a_run(\"Dein Query hier\")

Nächste Schritte