agentic-fleet


Nameagentic-fleet JSON
Version 0.4.80 PyPI version JSON
download
home_pageNone
SummaryA powerful multi-agent system for adaptive AI reasoning and automation
upload_time2025-02-16 17:58:58
maintainerNone
docs_urlNone
authorNone
requires_python>=3.10
licenseApache-2.0
keywords ai adaptive agents ai autogen autogen-sample automation magentic-one multi-agent reasoning
VCS
bugtrack_url
requirements fastapi packaging pydantic pydantic-settings python-dotenv typing-extensions uvicorn aiofiles aiohttp asyncio httpx python-multipart requests autogen-agentchat autogen-core autogen-ext autogen-ext autogen-ext autogen-ext autogen-ext autogen-ext composio-core deepseek magentic-one-cli ollama azure-ai-inference azure-ai-ml azure-ai-projects azure-core azure-cosmos azure-identity azure-keyvault-secrets azure-search-documents azure-storage-blob jsonlines matplotlib numpy pandas pillow plotly plotly-express pytz requests-html seaborn yfinance beautifulsoup4 bing chainlit docker markitdown opentelemetry-instrumentation-fastapi playwright sqlalchemy psycopg2-binary supabase tenacity aioconsole axios authlib black codecov gunicorn ipykernel psutil puremagic pytest pytest-asyncio pytest-cov redis rich ruff scikit-learn starlette semantic-kernel tiktoken typer types-setuptools pyyaml setuptools macholib
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # AgenticFleet

A powerful multi-agent system for adaptive AI reasoning and automation. AgenticFleet combines Chainlit's interactive interface with AutoGen's multi-agent capabilities to create a flexible, powerful AI assistant platform.

<div align="center">
  <p>
    <img src="https://img.shields.io/pepy/dt/agentic-fleet?style=for-the-badge&color=blue" alt="Pepy Total Downloads">
    <img src="https://img.shields.io/github/stars/qredence/agenticfleet?style=for-the-badge&color=purple" alt="GitHub Repo stars">
    <img src="https://img.shields.io/github/license/qredence/agenticfleet?style=for-the-badge" alt="GitHub License">
    <img src="https://img.shields.io/github/forks/qredence/agenticfleet?style=for-the-badge" alt="GitHub forks">
    <a href="https://discord.gg/ebgy7gtZHK">
      <img src="https://img.shields.io/discord/1234567890?style=for-the-badge&logo=discord&logoColor=white&label=Discord" alt="Discord">
    </a>
    <a href="https://x.com/agenticfleet">
      <img src="https://img.shields.io/badge/Twitter-Follow-1DA1F2?style=for-the-badge&logo=x&logoColor=white" alt="Twitter Follow">
    </a>
  </p>
</div>

<div align="center">
  <video src="https://github.com/user-attachments/assets/b1ad83ce-b8af-4406-99ed-257a07c0c7cf" autoplay loop muted playsinline width="800">
    <p>Your browser doesn't support HTML5 video. Here is a <a href="assets/b1ad83ce-b8af-4406-99ed-257a07c0c7cf">link to the video</a> instead.</p>
  </video>
</div>

## Table of Contents

1. [Introduction](#introduction)
2. [System Architecture](#system-architecture)
3. [Quick Start](#quick-start)
   - [Installation & Environment Setup](#installation--environment-setup)
   - [Starting AgenticFleet](#starting-agenticfleet)
   - [Using Docker](#using-docker)
4. [Installation Guide](#installation-guide)
   - [Prerequisites](#prerequisites)
   - [Installation Steps](#installation-steps)
   - [Troubleshooting Installation](#troubleshooting-installation)
   - [Optional Feature Sets](#optional-feature-sets)
   - [Warning About Editable Installations](#warning-about-editable-installations)
5. [Model Provider Installation](#model-provider-installation)
6. [Supported Model Providers](#supported-model-providers)
7. [Key Features](#key-features)
8. [Configuration](#configuration)
9. [Error Handling](#error-handling)
10. [Community Contributions](#community-contributions)
11. [Star History](#star-history)

## Introduction

AgenticFleet operates through a coordinated team of specialized agents that work together to provide advanced AI capabilities. This project leverages Chainlit's interactive interface and AutoGen's multi-agent system to deliver robust and adaptive solutions.

## System Architecture

```mermaid
graph TD
    User[Chainlit UI] -->|HTTP| App[app.py]
    App --> AgentTeam[MagenticOneGroupChat]
    AgentTeam --> WebSurfer
    AgentTeam --> FileSurfer
    AgentTeam --> Coder
    AgentTeam --> Executor
    WebSurfer -->|Selenium| Web[External Websites]
    FileSurfer -->|OS| FileSystem[Local Files]
    Executor -->|Subprocess| Code[Python/Runtime]
```

- **WebSurfer**: Navigates the web, extracts data, and processes screenshots.
- **FileSurfer**: Manages file operations and extracts information from local files.
- **Coder**: Generates and reviews code, ensuring quality and efficiency.
- **Executor**: Executes code safely in an isolated environment and provides feedback.

## Quick Start

### Installation & Environment Setup

Before starting AgenticFleet, install the package using the `uv` package manager:

```bash
uv pip install agentic-fleet
```

Then, set up your environment:

1. **Copy the Example File**

   ```bash
   cp .env.example .env
   ```

2. **Configure Environment Variables**

   Open the `.env` file and set the required values. At a minimum, configure your Azure OpenAI settings:

   ```env
   # Required: Azure OpenAI Configuration
   AZURE_OPENAI_API_KEY=your_api_key
   AZURE_OPENAI_ENDPOINT=your_endpoint
   AZURE_OPENAI_DEPLOYMENT=your_deployment
   AZURE_OPENAI_MODEL=your_model
   ```

### Starting AgenticFleet

After installing the package and configuring your environment, start AgenticFleet using one of the following commands:

```bash
# Start with OAuth enabled (default)
agenticfleet start

# Or start without OAuth
agenticfleet start no-oauth
```

### Using Docker

If you prefer using Docker, follow these instructions:

```bash
# Pull the latest image
docker pull qredence/agenticfleet:latest

# Run with minimum configuration (replace placeholders with your actual values)
docker run -d -p 8001:8001 \
  -e AZURE_OPENAI_API_KEY=your_key \
  -e AZURE_OPENAI_ENDPOINT=your_endpoint \
  -e AZURE_OPENAI_DEPLOYMENT=your_deployment \
  -e AZURE_OPENAI_MODEL=your_model \
  qredence/agenticfleet:latest

# Alternatively, run with additional configuration including OAuth
docker run -d -p 8001:8001 \
  -e AZURE_OPENAI_API_KEY=your_key \
  -e AZURE_OPENAI_ENDPOINT=your_endpoint \
  -e AZURE_OPENAI_DEPLOYMENT=your_deployment \
  -e AZURE_OPENAI_MODEL=your_model \
  -e USE_OAUTH=true \
  -e OAUTH_GITHUB_CLIENT_ID=your_client_id \
  -e OAUTH_GITHUB_CLIENT_SECRET=your_client_secret \
  qredence/agenticfleet:latest

# To run without OAuth:
docker run -d -p 8001:8001 \
  -e AZURE_OPENAI_API_KEY=your_key \
  -e AZURE_OPENAI_ENDPOINT=your_endpoint \
  -e USE_OAUTH=false \
  qredence/agenticfleet:latest
```

## Installation Guide

### Prerequisites

- **Python Version:** 3.10-3.12
- **Operating Systems:** macOS, Linux, Windows

### Installation Steps

1. **Install `uv` Package Manager**

   `uv` is a fast and efficient package manager. Choose your preferred installation method:

   #### macOS/Linux

   ```bash
   # Using pip
   pip install uv

   # Using Homebrew (macOS)
   brew install uv

   # Using curl
   curl -LsSf https://astral.sh/uv/install.sh | sh
   ```

   #### Windows

   ```powershell
   # Using pip
   pip install uv

   # Using winget
   winget install uv
   ```

2. **Create and Activate a Virtual Environment**

   ```bash
   # Create a new virtual environment
   uv venv

   # Activate the virtual environment
   # On macOS/Linux
   source .venv/bin/activate

   # On Windows
   .venv\Scripts\activate
   ```

3. **Install AgenticFleet**

   ```bash
   # Install the latest stable version
   uv pip install agentic-fleet

   # Install Playwright for web automation and scraping (needed by WebSurfer)
   uv pip install playwright
   playwright install --with-deps chromium
   ```

   **Playwright Installation Notes:**

   - Installs the Chromium browser for web automation.
   - Includes necessary browser dependencies.
   - Required for web scraping and browser-based agents.
   - Supports both headless and headed modes.

4. **Verify Installation**

   ```bash
   # Check installed version
   uv pip show agentic-fleet

   # Run a quick version check
   python -c "import agentic_fleet; print(agentic_fleet.__version__)"
   ```

### Troubleshooting Installation

- Ensure you're using Python 3.10-3.12.
- Update `uv` to the latest version: `pip install -U uv`.
- If issues arise, consult our [GitHub Issues](https://github.com/Qredence/AgenticFleet/issues).

### Optional Feature Sets

```bash
# Install with optional telemetry features
uv pip install 'agentic-fleet[telemetry]'

# Install with optional tracing features
uv pip install 'agentic-fleet[tracing]'
```

### Warning About Editable Installations

**DO NOT use `-e` unless you are a core contributor.**  
Editable installations are not supported in production, may introduce unexpected behaviors, and void package support. They are intended solely for package development. If you make local modifications, please file a GitHub issue and submit a pull request.

## Model Provider Installation

Please refer to the existing documentation or the [docs/installation.md](docs/installation.md) file for details on installing model providers.

## Supported Model Providers

AgenticFleet supports multiple LLM providers including OpenAI, Azure OpenAI, Google Gemini, DeepSeek, Ollama, Azure AI Foundry, and CogCache. For specifics on configuration and usage, please refer to the detailed sections in the documentation.

## Key Features

- Advanced multi-agent coordination
- Support for several LLM providers
- GitHub OAuth authentication (optional)
- Configurable agent behaviors and execution isolation
- Comprehensive error handling and automated recovery
- Multi-modal content processing (text, images, etc.)

## Configuration

For complete configuration details, review the `.env.example` file and the [docs/usage-guide.md](docs/usage-guide.md) for further instructions.

## Error Handling

AgenticFleet includes robust error handling:

- Graceful degradation on failures
- Detailed error logging and reporting
- Automatic cleanup and session recovery
- Execution timeout management

## Community Contributions

AgenticFleet welcomes contributions from the community. Please review our [CONTRIBUTING.md](CONTRIBUTING.md) and [CODE_OF_CONDUCT.md](CODE_OF_CONDUCT.md) for guidelines on submitting issues and pull requests.

## Star History

[![Star History Chart](https://api.star-history.com/svg?repos=Qredence/AgenticFleet&type=Date)](https://star-history.com/#Qredence/AgenticFleet&Date)

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "agentic-fleet",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": null,
    "keywords": "AI, adaptive, agents, ai, autogen, autogen-sample, automation, magentic-one, multi-agent, reasoning",
    "author": null,
    "author_email": "Zachary BENSALEM <contact@qredence.ai>",
    "download_url": "https://files.pythonhosted.org/packages/7b/b7/ad95ba965e157f3351e53c15198179430db004c2e905940dd6aadc5e4b9e/agentic_fleet-0.4.80.tar.gz",
    "platform": null,
    "description": "# AgenticFleet\n\nA powerful multi-agent system for adaptive AI reasoning and automation. AgenticFleet combines Chainlit's interactive interface with AutoGen's multi-agent capabilities to create a flexible, powerful AI assistant platform.\n\n<div align=\"center\">\n  <p>\n    <img src=\"https://img.shields.io/pepy/dt/agentic-fleet?style=for-the-badge&color=blue\" alt=\"Pepy Total Downloads\">\n    <img src=\"https://img.shields.io/github/stars/qredence/agenticfleet?style=for-the-badge&color=purple\" alt=\"GitHub Repo stars\">\n    <img src=\"https://img.shields.io/github/license/qredence/agenticfleet?style=for-the-badge\" alt=\"GitHub License\">\n    <img src=\"https://img.shields.io/github/forks/qredence/agenticfleet?style=for-the-badge\" alt=\"GitHub forks\">\n    <a href=\"https://discord.gg/ebgy7gtZHK\">\n      <img src=\"https://img.shields.io/discord/1234567890?style=for-the-badge&logo=discord&logoColor=white&label=Discord\" alt=\"Discord\">\n    </a>\n    <a href=\"https://x.com/agenticfleet\">\n      <img src=\"https://img.shields.io/badge/Twitter-Follow-1DA1F2?style=for-the-badge&logo=x&logoColor=white\" alt=\"Twitter Follow\">\n    </a>\n  </p>\n</div>\n\n<div align=\"center\">\n  <video src=\"https://github.com/user-attachments/assets/b1ad83ce-b8af-4406-99ed-257a07c0c7cf\" autoplay loop muted playsinline width=\"800\">\n    <p>Your browser doesn't support HTML5 video. Here is a <a href=\"assets/b1ad83ce-b8af-4406-99ed-257a07c0c7cf\">link to the video</a> instead.</p>\n  </video>\n</div>\n\n## Table of Contents\n\n1. [Introduction](#introduction)\n2. [System Architecture](#system-architecture)\n3. [Quick Start](#quick-start)\n   - [Installation & Environment Setup](#installation--environment-setup)\n   - [Starting AgenticFleet](#starting-agenticfleet)\n   - [Using Docker](#using-docker)\n4. [Installation Guide](#installation-guide)\n   - [Prerequisites](#prerequisites)\n   - [Installation Steps](#installation-steps)\n   - [Troubleshooting Installation](#troubleshooting-installation)\n   - [Optional Feature Sets](#optional-feature-sets)\n   - [Warning About Editable Installations](#warning-about-editable-installations)\n5. [Model Provider Installation](#model-provider-installation)\n6. [Supported Model Providers](#supported-model-providers)\n7. [Key Features](#key-features)\n8. [Configuration](#configuration)\n9. [Error Handling](#error-handling)\n10. [Community Contributions](#community-contributions)\n11. [Star History](#star-history)\n\n## Introduction\n\nAgenticFleet operates through a coordinated team of specialized agents that work together to provide advanced AI capabilities. This project leverages Chainlit's interactive interface and AutoGen's multi-agent system to deliver robust and adaptive solutions.\n\n## System Architecture\n\n```mermaid\ngraph TD\n    User[Chainlit UI] -->|HTTP| App[app.py]\n    App --> AgentTeam[MagenticOneGroupChat]\n    AgentTeam --> WebSurfer\n    AgentTeam --> FileSurfer\n    AgentTeam --> Coder\n    AgentTeam --> Executor\n    WebSurfer -->|Selenium| Web[External Websites]\n    FileSurfer -->|OS| FileSystem[Local Files]\n    Executor -->|Subprocess| Code[Python/Runtime]\n```\n\n- **WebSurfer**: Navigates the web, extracts data, and processes screenshots.\n- **FileSurfer**: Manages file operations and extracts information from local files.\n- **Coder**: Generates and reviews code, ensuring quality and efficiency.\n- **Executor**: Executes code safely in an isolated environment and provides feedback.\n\n## Quick Start\n\n### Installation & Environment Setup\n\nBefore starting AgenticFleet, install the package using the `uv` package manager:\n\n```bash\nuv pip install agentic-fleet\n```\n\nThen, set up your environment:\n\n1. **Copy the Example File**\n\n   ```bash\n   cp .env.example .env\n   ```\n\n2. **Configure Environment Variables**\n\n   Open the `.env` file and set the required values. At a minimum, configure your Azure OpenAI settings:\n\n   ```env\n   # Required: Azure OpenAI Configuration\n   AZURE_OPENAI_API_KEY=your_api_key\n   AZURE_OPENAI_ENDPOINT=your_endpoint\n   AZURE_OPENAI_DEPLOYMENT=your_deployment\n   AZURE_OPENAI_MODEL=your_model\n   ```\n\n### Starting AgenticFleet\n\nAfter installing the package and configuring your environment, start AgenticFleet using one of the following commands:\n\n```bash\n# Start with OAuth enabled (default)\nagenticfleet start\n\n# Or start without OAuth\nagenticfleet start no-oauth\n```\n\n### Using Docker\n\nIf you prefer using Docker, follow these instructions:\n\n```bash\n# Pull the latest image\ndocker pull qredence/agenticfleet:latest\n\n# Run with minimum configuration (replace placeholders with your actual values)\ndocker run -d -p 8001:8001 \\\n  -e AZURE_OPENAI_API_KEY=your_key \\\n  -e AZURE_OPENAI_ENDPOINT=your_endpoint \\\n  -e AZURE_OPENAI_DEPLOYMENT=your_deployment \\\n  -e AZURE_OPENAI_MODEL=your_model \\\n  qredence/agenticfleet:latest\n\n# Alternatively, run with additional configuration including OAuth\ndocker run -d -p 8001:8001 \\\n  -e AZURE_OPENAI_API_KEY=your_key \\\n  -e AZURE_OPENAI_ENDPOINT=your_endpoint \\\n  -e AZURE_OPENAI_DEPLOYMENT=your_deployment \\\n  -e AZURE_OPENAI_MODEL=your_model \\\n  -e USE_OAUTH=true \\\n  -e OAUTH_GITHUB_CLIENT_ID=your_client_id \\\n  -e OAUTH_GITHUB_CLIENT_SECRET=your_client_secret \\\n  qredence/agenticfleet:latest\n\n# To run without OAuth:\ndocker run -d -p 8001:8001 \\\n  -e AZURE_OPENAI_API_KEY=your_key \\\n  -e AZURE_OPENAI_ENDPOINT=your_endpoint \\\n  -e USE_OAUTH=false \\\n  qredence/agenticfleet:latest\n```\n\n## Installation Guide\n\n### Prerequisites\n\n- **Python Version:** 3.10-3.12\n- **Operating Systems:** macOS, Linux, Windows\n\n### Installation Steps\n\n1. **Install `uv` Package Manager**\n\n   `uv` is a fast and efficient package manager. Choose your preferred installation method:\n\n   #### macOS/Linux\n\n   ```bash\n   # Using pip\n   pip install uv\n\n   # Using Homebrew (macOS)\n   brew install uv\n\n   # Using curl\n   curl -LsSf https://astral.sh/uv/install.sh | sh\n   ```\n\n   #### Windows\n\n   ```powershell\n   # Using pip\n   pip install uv\n\n   # Using winget\n   winget install uv\n   ```\n\n2. **Create and Activate a Virtual Environment**\n\n   ```bash\n   # Create a new virtual environment\n   uv venv\n\n   # Activate the virtual environment\n   # On macOS/Linux\n   source .venv/bin/activate\n\n   # On Windows\n   .venv\\Scripts\\activate\n   ```\n\n3. **Install AgenticFleet**\n\n   ```bash\n   # Install the latest stable version\n   uv pip install agentic-fleet\n\n   # Install Playwright for web automation and scraping (needed by WebSurfer)\n   uv pip install playwright\n   playwright install --with-deps chromium\n   ```\n\n   **Playwright Installation Notes:**\n\n   - Installs the Chromium browser for web automation.\n   - Includes necessary browser dependencies.\n   - Required for web scraping and browser-based agents.\n   - Supports both headless and headed modes.\n\n4. **Verify Installation**\n\n   ```bash\n   # Check installed version\n   uv pip show agentic-fleet\n\n   # Run a quick version check\n   python -c \"import agentic_fleet; print(agentic_fleet.__version__)\"\n   ```\n\n### Troubleshooting Installation\n\n- Ensure you're using Python 3.10-3.12.\n- Update `uv` to the latest version: `pip install -U uv`.\n- If issues arise, consult our [GitHub Issues](https://github.com/Qredence/AgenticFleet/issues).\n\n### Optional Feature Sets\n\n```bash\n# Install with optional telemetry features\nuv pip install 'agentic-fleet[telemetry]'\n\n# Install with optional tracing features\nuv pip install 'agentic-fleet[tracing]'\n```\n\n### Warning About Editable Installations\n\n**DO NOT use `-e` unless you are a core contributor.**  \nEditable installations are not supported in production, may introduce unexpected behaviors, and void package support. They are intended solely for package development. If you make local modifications, please file a GitHub issue and submit a pull request.\n\n## Model Provider Installation\n\nPlease refer to the existing documentation or the [docs/installation.md](docs/installation.md) file for details on installing model providers.\n\n## Supported Model Providers\n\nAgenticFleet supports multiple LLM providers including OpenAI, Azure OpenAI, Google Gemini, DeepSeek, Ollama, Azure AI Foundry, and CogCache. For specifics on configuration and usage, please refer to the detailed sections in the documentation.\n\n## Key Features\n\n- Advanced multi-agent coordination\n- Support for several LLM providers\n- GitHub OAuth authentication (optional)\n- Configurable agent behaviors and execution isolation\n- Comprehensive error handling and automated recovery\n- Multi-modal content processing (text, images, etc.)\n\n## Configuration\n\nFor complete configuration details, review the `.env.example` file and the [docs/usage-guide.md](docs/usage-guide.md) for further instructions.\n\n## Error Handling\n\nAgenticFleet includes robust error handling:\n\n- Graceful degradation on failures\n- Detailed error logging and reporting\n- Automatic cleanup and session recovery\n- Execution timeout management\n\n## Community Contributions\n\nAgenticFleet welcomes contributions from the community. Please review our [CONTRIBUTING.md](CONTRIBUTING.md) and [CODE_OF_CONDUCT.md](CODE_OF_CONDUCT.md) for guidelines on submitting issues and pull requests.\n\n## Star History\n\n[![Star History Chart](https://api.star-history.com/svg?repos=Qredence/AgenticFleet&type=Date)](https://star-history.com/#Qredence/AgenticFleet&Date)\n",
    "bugtrack_url": null,
    "license": "Apache-2.0",
    "summary": "A powerful multi-agent system for adaptive AI reasoning and automation",
    "version": "0.4.80",
    "project_urls": {
        "Docker": "https://hub.docker.com/r/qredenceai/agenticfleet",
        "Documentation": "https://github.com/qredence/agenticfleet/tree/main/docs",
        "Homepage": "https://github.com/qredence/agenticfleet",
        "Issues": "https://github.com/qredence/agenticfleet/issues",
        "Repository": "https://github.com/qredence/agenticfleet.git",
        "Source": "https://github.com/qredence/agenticfleet"
    },
    "split_keywords": [
        "ai",
        " adaptive",
        " agents",
        " ai",
        " autogen",
        " autogen-sample",
        " automation",
        " magentic-one",
        " multi-agent",
        " reasoning"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "293e838ecd3d478d33906b534361b607424349f4f189f964af858cfd225b4325",
                "md5": "44dce9a64bbba589ba23c5530fa0f275",
                "sha256": "0420b74881476f10c3f483f29fede301cac8654c4664d56c42f573d312ca7744"
            },
            "downloads": -1,
            "filename": "agentic_fleet-0.4.80-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "44dce9a64bbba589ba23c5530fa0f275",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 10308,
            "upload_time": "2025-02-16T17:58:55",
            "upload_time_iso_8601": "2025-02-16T17:58:55.724042Z",
            "url": "https://files.pythonhosted.org/packages/29/3e/838ecd3d478d33906b534361b607424349f4f189f964af858cfd225b4325/agentic_fleet-0.4.80-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7bb7ad95ba965e157f3351e53c15198179430db004c2e905940dd6aadc5e4b9e",
                "md5": "8ac80ee198b94a3fb9e520a4bdb5c58f",
                "sha256": "04a87ad320a5b3842ac097f9a24d7012a4a66dcfd3a41c9f4f9f4cbd9fc7a5c4"
            },
            "downloads": -1,
            "filename": "agentic_fleet-0.4.80.tar.gz",
            "has_sig": false,
            "md5_digest": "8ac80ee198b94a3fb9e520a4bdb5c58f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 85285,
            "upload_time": "2025-02-16T17:58:58",
            "upload_time_iso_8601": "2025-02-16T17:58:58.148931Z",
            "url": "https://files.pythonhosted.org/packages/7b/b7/ad95ba965e157f3351e53c15198179430db004c2e905940dd6aadc5e4b9e/agentic_fleet-0.4.80.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-02-16 17:58:58",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "qredence",
    "github_project": "agenticfleet",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "fastapi",
            "specs": [
                [
                    ">=",
                    "0.109.0"
                ]
            ]
        },
        {
            "name": "packaging",
            "specs": [
                [
                    ">=",
                    "23.2"
                ]
            ]
        },
        {
            "name": "pydantic",
            "specs": [
                [
                    ">=",
                    "2.5.2"
                ]
            ]
        },
        {
            "name": "pydantic-settings",
            "specs": [
                [
                    ">=",
                    "2.2.1"
                ]
            ]
        },
        {
            "name": "python-dotenv",
            "specs": [
                [
                    ">=",
                    "1.0.1"
                ]
            ]
        },
        {
            "name": "typing-extensions",
            "specs": [
                [
                    ">=",
                    "4.8.0"
                ]
            ]
        },
        {
            "name": "uvicorn",
            "specs": [
                [
                    ">=",
                    "0.24.0"
                ]
            ]
        },
        {
            "name": "aiofiles",
            "specs": [
                [
                    ">=",
                    "23.1.0"
                ]
            ]
        },
        {
            "name": "aiohttp",
            "specs": [
                [
                    ">=",
                    "3.11.11"
                ],
                [
                    "<",
                    "4.0.0"
                ]
            ]
        },
        {
            "name": "asyncio",
            "specs": [
                [
                    ">=",
                    "3.4.3"
                ]
            ]
        },
        {
            "name": "httpx",
            "specs": [
                [
                    ">=",
                    "0.25.0"
                ]
            ]
        },
        {
            "name": "python-multipart",
            "specs": [
                [
                    ">=",
                    "0.0.6"
                ]
            ]
        },
        {
            "name": "requests",
            "specs": [
                [
                    ">=",
                    "2.32.3"
                ]
            ]
        },
        {
            "name": "autogen-agentchat",
            "specs": [
                [
                    "<",
                    "0.5.0"
                ],
                [
                    ">=",
                    "0.4.7"
                ]
            ]
        },
        {
            "name": "autogen-core",
            "specs": [
                [
                    "<",
                    "0.5.0"
                ],
                [
                    ">=",
                    "0.4.7"
                ]
            ]
        },
        {
            "name": "autogen-ext",
            "specs": [
                [
                    "<",
                    "0.5.0"
                ],
                [
                    ">=",
                    "0.4.7"
                ]
            ]
        },
        {
            "name": "autogen-ext",
            "specs": [
                [
                    "<",
                    "0.5.0"
                ],
                [
                    ">=",
                    "0.4.7"
                ]
            ]
        },
        {
            "name": "autogen-ext",
            "specs": [
                [
                    "<",
                    "0.5.0"
                ],
                [
                    ">=",
                    "0.4.7"
                ]
            ]
        },
        {
            "name": "autogen-ext",
            "specs": [
                [
                    "<",
                    "0.5.0"
                ],
                [
                    ">=",
                    "0.4.7"
                ]
            ]
        },
        {
            "name": "autogen-ext",
            "specs": [
                [
                    "<",
                    "0.5.0"
                ],
                [
                    ">=",
                    "0.4.7"
                ]
            ]
        },
        {
            "name": "autogen-ext",
            "specs": [
                [
                    "<",
                    "0.5.0"
                ],
                [
                    ">=",
                    "0.4.7"
                ]
            ]
        },
        {
            "name": "composio-core",
            "specs": [
                [
                    ">=",
                    "0.6.11.post1"
                ]
            ]
        },
        {
            "name": "deepseek",
            "specs": [
                [
                    ">=",
                    "0.1.0"
                ]
            ]
        },
        {
            "name": "magentic-one-cli",
            "specs": [
                [
                    ">=",
                    "0.2.2"
                ]
            ]
        },
        {
            "name": "ollama",
            "specs": [
                [
                    ">=",
                    "0.1.5"
                ]
            ]
        },
        {
            "name": "azure-ai-inference",
            "specs": [
                [
                    ">=",
                    "1.0.0b6"
                ]
            ]
        },
        {
            "name": "azure-ai-ml",
            "specs": [
                [
                    ">=",
                    "1.12.1"
                ]
            ]
        },
        {
            "name": "azure-ai-projects",
            "specs": [
                [
                    ">=",
                    "1.0.0b4"
                ]
            ]
        },
        {
            "name": "azure-core",
            "specs": [
                [
                    ">=",
                    "1.32.0"
                ]
            ]
        },
        {
            "name": "azure-cosmos",
            "specs": [
                [
                    ">=",
                    "4.9.0"
                ]
            ]
        },
        {
            "name": "azure-identity",
            "specs": [
                [
                    ">=",
                    "1.19.0"
                ]
            ]
        },
        {
            "name": "azure-keyvault-secrets",
            "specs": [
                [
                    ">=",
                    "4.9.0"
                ]
            ]
        },
        {
            "name": "azure-search-documents",
            "specs": [
                [
                    "==",
                    "11.6.0b4"
                ]
            ]
        },
        {
            "name": "azure-storage-blob",
            "specs": [
                [
                    ">=",
                    "12.24.0"
                ]
            ]
        },
        {
            "name": "jsonlines",
            "specs": [
                [
                    ">=",
                    "4.0.0"
                ]
            ]
        },
        {
            "name": "matplotlib",
            "specs": [
                [
                    ">=",
                    "3.10.0"
                ]
            ]
        },
        {
            "name": "numpy",
            "specs": [
                [
                    "<",
                    "2.0"
                ],
                [
                    ">=",
                    "1.26"
                ]
            ]
        },
        {
            "name": "pandas",
            "specs": [
                [
                    ">=",
                    "2.2.3"
                ]
            ]
        },
        {
            "name": "pillow",
            "specs": [
                [
                    ">=",
                    "11.0.0"
                ]
            ]
        },
        {
            "name": "plotly",
            "specs": [
                [
                    ">=",
                    "5.16.0"
                ]
            ]
        },
        {
            "name": "plotly-express",
            "specs": [
                [
                    ">=",
                    "0.4.1"
                ]
            ]
        },
        {
            "name": "pytz",
            "specs": [
                [
                    ">=",
                    "2024.2"
                ]
            ]
        },
        {
            "name": "requests-html",
            "specs": [
                [
                    ">=",
                    "0.10.0"
                ]
            ]
        },
        {
            "name": "seaborn",
            "specs": [
                [
                    ">=",
                    "0.13.0"
                ]
            ]
        },
        {
            "name": "yfinance",
            "specs": [
                [
                    ">=",
                    "0.2.51"
                ]
            ]
        },
        {
            "name": "beautifulsoup4",
            "specs": [
                [
                    ">=",
                    "4.12.0"
                ]
            ]
        },
        {
            "name": "bing",
            "specs": [
                [
                    ">=",
                    "0.31"
                ]
            ]
        },
        {
            "name": "chainlit",
            "specs": [
                [
                    ">=",
                    "2.2.0"
                ]
            ]
        },
        {
            "name": "docker",
            "specs": [
                [
                    ">=",
                    "7.1.0"
                ]
            ]
        },
        {
            "name": "markitdown",
            "specs": [
                [
                    ">=",
                    "0.0.1a3"
                ]
            ]
        },
        {
            "name": "opentelemetry-instrumentation-fastapi",
            "specs": [
                [
                    ">=",
                    "0.44b0"
                ]
            ]
        },
        {
            "name": "playwright",
            "specs": [
                [
                    ">=",
                    "1.20.0"
                ]
            ]
        },
        {
            "name": "sqlalchemy",
            "specs": [
                [
                    ">=",
                    "2.0.28"
                ]
            ]
        },
        {
            "name": "psycopg2-binary",
            "specs": [
                [
                    ">=",
                    "2.9.9"
                ]
            ]
        },
        {
            "name": "supabase",
            "specs": [
                [
                    ">=",
                    "2.3.1"
                ]
            ]
        },
        {
            "name": "tenacity",
            "specs": [
                [
                    ">=",
                    "9.0.0"
                ]
            ]
        },
        {
            "name": "aioconsole",
            "specs": [
                [
                    ">=",
                    "0.8.1"
                ]
            ]
        },
        {
            "name": "axios",
            "specs": [
                [
                    ">=",
                    "0.4.0"
                ]
            ]
        },
        {
            "name": "authlib",
            "specs": [
                [
                    ">=",
                    "1.4.0"
                ]
            ]
        },
        {
            "name": "black",
            "specs": [
                [
                    ">=",
                    "24.10.0"
                ]
            ]
        },
        {
            "name": "codecov",
            "specs": [
                [
                    ">=",
                    "2.1.13"
                ]
            ]
        },
        {
            "name": "gunicorn",
            "specs": [
                [
                    ">=",
                    "23.0.0"
                ]
            ]
        },
        {
            "name": "ipykernel",
            "specs": [
                [
                    ">=",
                    "6.29.5"
                ]
            ]
        },
        {
            "name": "psutil",
            "specs": [
                [
                    ">=",
                    "5.9.6"
                ]
            ]
        },
        {
            "name": "puremagic",
            "specs": [
                [
                    ">=",
                    "1.28"
                ]
            ]
        },
        {
            "name": "pytest",
            "specs": [
                [
                    ">=",
                    "8.3.4"
                ]
            ]
        },
        {
            "name": "pytest-asyncio",
            "specs": [
                [
                    ">=",
                    "0.25.2"
                ]
            ]
        },
        {
            "name": "pytest-cov",
            "specs": [
                [
                    ">=",
                    "6.0.0"
                ]
            ]
        },
        {
            "name": "redis",
            "specs": [
                [
                    ">=",
                    "5.2.1"
                ]
            ]
        },
        {
            "name": "rich",
            "specs": [
                [
                    ">=",
                    "13.9.4"
                ]
            ]
        },
        {
            "name": "ruff",
            "specs": [
                [
                    "==",
                    "0.4.8"
                ]
            ]
        },
        {
            "name": "scikit-learn",
            "specs": [
                [
                    ">=",
                    "1.6.1"
                ]
            ]
        },
        {
            "name": "starlette",
            "specs": [
                [
                    ">=",
                    "0.41.3"
                ]
            ]
        },
        {
            "name": "semantic-kernel",
            "specs": [
                [
                    ">=",
                    "1.19.0"
                ]
            ]
        },
        {
            "name": "tiktoken",
            "specs": [
                [
                    ">=",
                    "0.8.0"
                ]
            ]
        },
        {
            "name": "typer",
            "specs": [
                [
                    ">=",
                    "0.15.1"
                ]
            ]
        },
        {
            "name": "types-setuptools",
            "specs": [
                [
                    ">=",
                    "75.8.0.20250110"
                ]
            ]
        },
        {
            "name": "pyyaml",
            "specs": [
                [
                    ">=",
                    "6.0.2"
                ]
            ]
        },
        {
            "name": "setuptools",
            "specs": [
                [
                    ">=",
                    "75.8.0"
                ]
            ]
        },
        {
            "name": "macholib",
            "specs": [
                [
                    ">=",
                    "1.16.3"
                ]
            ]
        }
    ],
    "lcname": "agentic-fleet"
}
        
Elapsed time: 0.43222s