Skip to content

MeepoLabs/autogen-agentai

Repository files navigation

autogen-agentai

PyPI version Python versions License Documentation Status

⚠️ Development Status: Development of this repository is currently paused while we build the foundational pyagentai library. Once pyagentai is complete, we will resume development of this AutoGen adapter.

An extension for Microsoft AutoGen that allows running agents from agent.ai.

Overview

autogen-agentai is a Python package that serves as an extension for Microsoft's AutoGen framework, enabling the use of agent.ai agents within AutoGen workflows. This library will serve as an adapter between AutoGen and the pyagentai library.

Architecture Overview:

  • pyagentai: Core library for interacting with the agent.ai platform
  • autogen-agentai: AutoGen adapter that uses pyagentai to integrate agent.ai agents into AutoGen workflows

Once complete, this package will enable developers to:

  • Agent Integration: Seamlessly integrate agent.ai agents into AutoGen workflows using the pyagentai library
  • Agent Communication: Enable communication between AutoGen agents and agent.ai agents
  • Simplified API: Provide a simple interface to configure and use agent.ai services through AutoGen
  • Extensibility: Extend AutoGen's capabilities with agent.ai's specialized AI agents

Key Features (Planned)

  • Agent Interoperability

    • Connect AutoGen's agent ecosystem with agent.ai's specialized agents
    • Enable cross-platform agent communication
    • Maintain agent context across different platforms
    • Synchronize agent states and knowledge
  • Configuration Management

    • Simple configuration for agent.ai API connections
    • Credential management for agent.ai services
    • Environment-based configuration options
    • Persistent configuration storage
  • Workflow Integration

    • Integrate agent.ai agents into existing AutoGen workflows
    • Create hybrid workflows combining agents from both platforms
    • Enable task delegation between different agent types
    • Support for complex multi-agent scenarios
  • Developer Tools

    • Debugging utilities for agent interactions
    • Logging and monitoring capabilities
    • Testing utilities for agent.ai integration
    • Documentation and examples

Installation

Note: This package is not yet available for installation as development is currently paused. Please check back once the pyagentai library is complete.

Once available, you will be able to install it with:

pip install autogen-agentai

Or with Poetry:

poetry add autogen-agentai

Quick Example

from autogen_agentai import AgentAIExtension
import autogen

# Initialize the extension
agentai_extension = AgentAIExtension(api_key="your_agentai_api_key")

# Create an AutoGen agent with agent.ai capabilities
assistant = autogen.AssistantAgent(
    name="assistant",
    llm_config={"config_key": "config_value"},
    extensions=[agentai_extension]
)

# Use the agent normally in AutoGen workflows
# The agent will have access to agent.ai capabilities

Documentation

For detailed documentation, visit autogen-agentai.readthedocs.io.

The documentation includes:

  • Getting Started Guide
  • API Reference
  • Examples and Tutorials
  • FAQ

Contributing

We welcome contributions! Please check out our contributing guidelines for details on:

  • Setting up your development environment
  • Running tests
  • Submitting pull requests

License

This project is licensed under the GNU General Public License v3.0 (GPLv3).

About

An autogen extension for agents and tools from Agent.ai platform

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published