Torna alla Home

Costruisci collaboratori e skill in Python.

Aether offre un'architettura modulare in Python con supporto nativo per specifiche YAML, integrazioni con Ollama e strumenti personalizzati.

$pip install "git+https://github.com/lom3e/aether.git" && aether ui
Python 3.11+
from aether.team.config import TeamConfig, AgentConfig
from aether.team.team import Team

config = TeamConfig(
    name="enterprise-workforce",
    default_provider="ollama",
    default_model="qwen3.5:9b",
    agents=[
        AgentConfig(
            name="manager",
            role="Workforce Coordinator",
            instructions="Decompose project and delegate tasks.",
            delegates_to=["researcher", "writer"]
        ),
        AgentConfig(
            name="researcher",
            role="Knowledge Specialist",
            skills=["search_knowledge"]
        ),
        AgentConfig(
            name="writer",
            role="Proposal Author",
            skills=["format_markdown"]
        )
    ]
)

team = Team(config=config)
result = team.run("Analyze Q3_Report.pdf and draft summary.")
print(result.output)
Documentazione CompletaGuarda su GitHub