Skip to main content

A powerful framework for orchestrating multi-agent teams using Large Language Models. Create intelligent AI agent swarms that collaborate through streaming delegation and dynamic tool discovery.

Project description

Gnosari AI Workforce

Gnosari AI Workforce is a powerful framework for orchestrating multi-agent teams using Large Language Models. Create intelligent AI agent swarms that collaborate through streaming delegation and dynamic tool discovery.

What is Gnosari AI Workforce?

Gnosari AI Workforce enables you to build sophisticated multi-agent systems where AI agents can:

  • 🤝 Delegate tasks to specialized agents in real-time
  • 🔧 Discover and use tools dynamically through MCP servers
  • 📚 Query knowledge bases for context-aware responses
  • 🌐 Make API calls to external services
  • 🗄️ Query databases for data-driven decisions
  • 📊 Stream responses for real-time collaboration

Key Features

Multi-Provider LLM Support

Each agent can use different models from various providers:

  • OpenAI (GPT-4, GPT-4o, etc.)
  • Anthropic (Claude)
  • DeepSeek
  • Google (Gemini)
  • And more...

Task Delegation

Agents use the delegate_agent tool to send tasks to other agents and receive responses, enabling seamless multi-agent coordination.

Tool Integration

  • Built-in tools (delegate_agent, api_request, knowledge_query, mysql_query, website_content, file_operations)
  • MCP (Model Context Protocol) server integration
  • Dynamic tool discovery

Knowledge Bases

Embedchain integration for RAG capabilities with support for:

  • Websites
  • YouTube videos
  • Documents
  • And more...

Quick Start

Prerequisites

  • Python 3.12+ installed on your system
  • Poetry for dependency management
  • API Keys for the LLM providers you want to use

Installation

  1. Clone the Repository
git clone https://github.com/neomanex/gnosari-engine.git
cd gnosari-engine
  1. Install Dependencies
poetry install
  1. Set Up Environment Variables Create a .env file in the project root:
# OpenAI (required for most examples)
OPENAI_API_KEY=your-openai-api-key

# Optional: Other providers
ANTHROPIC_API_KEY=your-anthropic-key
DEEPSEEK_API_KEY=your-deepseek-key

Your First Team

Create a file called my-first-team.yaml:

name: My First Team

# Define tools for the team
tools:
  - name: delegate_agent
    module: gnosari.tools.delegate_agent
    class: DelegateAgentTool
    args:
      pass

# Define agents
agents:
  - name: Coordinator
    instructions: >
      You are a helpful coordinator who manages tasks and delegates work to specialists.
      When you receive a request, analyze it and delegate to the appropriate specialist.
      Always provide a summary of the work completed.
    orchestrator: true
    model: gpt-4o
    tools:
      - delegate_agent

  - name: Writer
    instructions: >
      You are a professional writer who creates clear, engaging content.
      When given a writing task, focus on clarity, structure, and engaging the reader.
      Always ask for clarification if the requirements are unclear.
    model: gpt-4o

  - name: Researcher
    instructions: >
      You are a thorough researcher who gathers and analyzes information.
      When given a research task, provide comprehensive, well-sourced information.
      Always cite your sources and note any limitations in the information.
    model: gpt-4o

Run Your Team

# Run entire team
poetry run gnosari --config "my-first-team.yaml" --message "Write a blog post about the benefits of renewable energy"

# Run specific agent
poetry run gnosari --config "my-first-team.yaml" --message "Research renewable energy trends" --agent "Researcher"

# With streaming output
poetry run gnosari --config "my-first-team.yaml" --message "Your message" --stream

# With debug mode
poetry run gnosari --config "my-first-team.yaml" --message "Your message" --debug

Advanced Configuration

Team with Knowledge Bases and Tools

name: Advanced Content Team

# Knowledge bases (automatically adds knowledge_query tool)
knowledge:
  - name: "company_docs"
    type: "website"
    data: ["https://docs.yourcompany.com"]

# Tools configuration
tools:
  - name: delegate_agent
    module: gnosari.tools.delegate_agent
    class: DelegateAgentTool
    args:
      pass

  - name: api_request
    module: gnosari.tools.api_request
    class: APIRequestTool
    args:
      base_url: https://api.example.com
      base_headers:
        Authorization: Bearer ${API_TOKEN}
        Content-Type: application/json
      timeout: 30
      verify_ssl: true

  - name: mysql_query
    module: gnosari.tools.mysql_query
    class: MySQLQueryTool
    args:
      host: ${DB_HOST}
      port: 3306
      database: ${DB_NAME}
      username: ${DB_USER}
      password: ${DB_PASSWORD}
      pool_size: 5
      query_timeout: 30

# Agents configuration
agents:
  - name: Content Manager
    instructions: >
      You are a content manager who coordinates content creation workflows.
      You can delegate tasks to specialists and use various tools to gather information.
      Always ensure content is accurate, engaging, and meets quality standards.
    orchestrator: true
    model: gpt-4o
    tools:
      - delegate_agent
      - knowledge_query
    knowledge: ["company_docs"]

  - name: Data Analyst
    instructions: >
      You are a data analyst who works with databases and APIs to gather insights.
      Use the mysql_query tool to analyze data and the api_request tool to fetch external data.
      Always provide clear, actionable insights based on the data.
    model: gpt-4o
    tools:
      - mysql_query
      - api_request

  - name: Content Writer
    instructions: >
      You are a professional content writer who creates engaging, well-researched content.
      Use the knowledge_query tool to access company documentation and ensure accuracy.
      Focus on creating content that resonates with the target audience.
    model: gpt-4o
    tools:
      - knowledge_query
    knowledge: ["company_docs"]

Built-in Tools

Tool Description Use Case
delegate_agent Delegate tasks to other agents in the team Multi-agent coordination
api_request Make HTTP requests to external APIs External service integration
knowledge_query Query knowledge bases for information RAG and information retrieval
mysql_query Execute SQL queries against MySQL databases Database operations
website_content Fetch content from websites via API Web content retrieval
file_operations Read, write, and manage files in a sandboxed directory Local file management

Knowledge Base Support

Gnosari AI Workforce supports various knowledge sources through Embedchain:

  • Websites: Crawl and index content from websites
  • YouTube: Extract and index content from YouTube videos
  • Documents: Process PDF, text, CSV, and JSON files
  • Direct Text: Q&A content and structured information

CLI Options

# Basic team execution
poetry run gnosari --config "team.yaml" --message "Your message"

# Run specific agent from team
poetry run gnosari --config "team.yaml" --message "Your message" --agent "AgentName"

# With streaming output
poetry run gnosari --config "team.yaml" --message "Your message" --stream

# With debug mode
poetry run gnosari --config "team.yaml" --message "Your message" --debug

# With custom model and temperature
poetry run gnosari --config "team.yaml" --message "Your message" --model "gpt-4o" --temperature 0.7

Architecture

Core Components

  • Team Builder: Builds teams from YAML configs using OpenAI Agents SDK with handoffs
  • Team Runner: Executes team workflows using OpenAI Agents SDK Runner with streaming support
  • Agent System: Uses OpenAI's official Agents SDK with native handoff support
  • Tool Integration: Native OpenAI tool calling with MCP server integration
  • Knowledge Bases: Embedchain integration for RAG capabilities

Key Directories

  • src/gnosari/: Main source code
    • agents/: Agent implementations
    • engine/: Team orchestration and execution
    • tools/: Built-in tools (delegation, API requests, etc.)
    • prompts/: Prompt engineering utilities
    • schemas/: Pydantic schemas and base classes
    • utils/: LLM client, tool manager, knowledge manager
  • examples/: Team configuration examples
  • tests/: Test files
  • docs/: Documentation

Development

Testing

# Run all tests
poetry run pytest

# Run specific test
poetry run pytest tests/test_specific.py

# Run tests with coverage
poetry run pytest --cov=gnosari

Alternative Execution

If experiencing pyenv shim issues, use the wrapper script:

./scripts/run-gnosari team run --config "examples/team.yaml" --message "Your message"

Documentation

For comprehensive documentation, visit the docs folder which includes:

  • Quickstart Guide - Get up and running in minutes
  • Agents - Learn about agent configuration and capabilities
  • Teams - Understand team structure and coordination
  • Orchestration - Learn about agent coordination and workflow management
  • Knowledge Bases - Set up knowledge bases for RAG capabilities
  • Tools Overview - Learn about built-in tools and how to use them

Contributing

We welcome contributions! Please see our contributing guidelines and feel free to submit issues and pull requests.

License

This project is licensed under the MIT License - see the LICENSE file for details.


Ready to build your first AI workforce? Start with the Quickstart Guide and create intelligent multi-agent teams that can tackle complex tasks through collaboration and specialization! 🚀

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

gnosari_engine-0.1.0.tar.gz (47.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

gnosari_engine-0.1.0-py3-none-any.whl (57.8 kB view details)

Uploaded Python 3

File details

Details for the file gnosari_engine-0.1.0.tar.gz.

File metadata

  • Download URL: gnosari_engine-0.1.0.tar.gz
  • Upload date:
  • Size: 47.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.3 CPython/3.13.2 Darwin/23.4.0

File hashes

Hashes for gnosari_engine-0.1.0.tar.gz
Algorithm Hash digest
SHA256 3b411163a3e113f216c0e439041c210f5e1e93952e1ac7edb69b1a7c66665fb3
MD5 de5750936a09c64313cfb3610fb55596
BLAKE2b-256 5874cbaf6838e8eb6b1af22c6c4514450d8d472278e01731953e82722d4ea228

See more details on using hashes here.

File details

Details for the file gnosari_engine-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: gnosari_engine-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 57.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.3 CPython/3.13.2 Darwin/23.4.0

File hashes

Hashes for gnosari_engine-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 234ad7bdeba5d56fe0560350097fa3b3157ba723b76c4d530dc9c33410f3ea93
MD5 66285eb654243f25f4bf4994d0c93623
BLAKE2b-256 c5a3c2923ae0b3f5e41e1b5baf8010779a5b8e91870f1e59cb1ca23112daa2b3

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page