agentmatrix


Nameagentmatrix JSON
Version 0.2.0 PyPI version JSON
download
home_pagehttps://github.com/kiranbeethoju/agentmatrix
SummaryA multi-agent system for processing queries using DuckDuckGo and LLM agents
upload_time2024-08-31 05:15:29
maintainerNone
docs_urlNone
authorKiran Beethoju
requires_python>=3.7
licenseNone
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # README.md
# agentmatrix Package

A Python package that implements agentmatrix a multi-agent system for processing queries using DuckDuckGo and LLM agents.

## Installation

```bash
pip install agentmatrix
```

## Usage

```python
from agentmatrix import MultiAgentSystem

# Initialize the system
mas = MultiAgentSystem()

# Add agents
mas.add_duckduckgo_agent()
mas.add_llm_agent(api_key="your-api-key", model="gpt-4")

# Process a query
result = mas.process_query(
    search_term="Your search term",
    expert_type="Expert type",
    expert_description="Expert description",
    user_prompt="Your prompt",
    response_format="json",
    listed_urls=["https://example.com"]
)

print(result)
```

## License

This project is licensed under the MIT License.

# requirements.txt
requests==2.26.0
openai==0.27.0

# .gitignore
__pycache__/
*.py[cod]
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
.env

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/kiranbeethoju/agentmatrix",
    "name": "agentmatrix",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": null,
    "author": "Kiran Beethoju",
    "author_email": "kiranbeethoju@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/92/83/28f2ae67fe6ec77a13f69c326032963bb07c8159f76cbcc9451bdff14af6/agentmatrix-0.2.0.tar.gz",
    "platform": null,
    "description": "# README.md\n# agentmatrix Package\n\nA Python package that implements agentmatrix a multi-agent system for processing queries using DuckDuckGo and LLM agents.\n\n## Installation\n\n```bash\npip install agentmatrix\n```\n\n## Usage\n\n```python\nfrom agentmatrix import MultiAgentSystem\n\n# Initialize the system\nmas = MultiAgentSystem()\n\n# Add agents\nmas.add_duckduckgo_agent()\nmas.add_llm_agent(api_key=\"your-api-key\", model=\"gpt-4\")\n\n# Process a query\nresult = mas.process_query(\n    search_term=\"Your search term\",\n    expert_type=\"Expert type\",\n    expert_description=\"Expert description\",\n    user_prompt=\"Your prompt\",\n    response_format=\"json\",\n    listed_urls=[\"https://example.com\"]\n)\n\nprint(result)\n```\n\n## License\n\nThis project is licensed under the MIT License.\n\n# requirements.txt\nrequests==2.26.0\nopenai==0.27.0\n\n# .gitignore\n__pycache__/\n*.py[cod]\n*.so\n.Python\nbuild/\ndevelop-eggs/\ndist/\ndownloads/\neggs/\n.eggs/\nlib/\nlib64/\nparts/\nsdist/\nvar/\nwheels/\n*.egg-info/\n.installed.cfg\n*.egg\nMANIFEST\n.env\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "A multi-agent system for processing queries using DuckDuckGo and LLM agents",
    "version": "0.2.0",
    "project_urls": {
        "Homepage": "https://github.com/kiranbeethoju/agentmatrix"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "888678ee6dc652ad88bf303c237e1e7ee085b8331b0fe8194ded8b3f0fcc540a",
                "md5": "ee9d81c12ea6dd4333d23f197b22824c",
                "sha256": "3326167ceb750eff7e66805ca856afa95e637193738f4ff8cedd2047767b914c"
            },
            "downloads": -1,
            "filename": "agentmatrix-0.2.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "ee9d81c12ea6dd4333d23f197b22824c",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 5341,
            "upload_time": "2024-08-31T05:15:27",
            "upload_time_iso_8601": "2024-08-31T05:15:27.723100Z",
            "url": "https://files.pythonhosted.org/packages/88/86/78ee6dc652ad88bf303c237e1e7ee085b8331b0fe8194ded8b3f0fcc540a/agentmatrix-0.2.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "928328f2ae67fe6ec77a13f69c326032963bb07c8159f76cbcc9451bdff14af6",
                "md5": "e311f366d4a7cf5bb08b787628b194fe",
                "sha256": "43143a567ab06bfb197fd40145012eb87950237bc4bf0e4ab98925d44438aed5"
            },
            "downloads": -1,
            "filename": "agentmatrix-0.2.0.tar.gz",
            "has_sig": false,
            "md5_digest": "e311f366d4a7cf5bb08b787628b194fe",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 5157,
            "upload_time": "2024-08-31T05:15:29",
            "upload_time_iso_8601": "2024-08-31T05:15:29.577372Z",
            "url": "https://files.pythonhosted.org/packages/92/83/28f2ae67fe6ec77a13f69c326032963bb07c8159f76cbcc9451bdff14af6/agentmatrix-0.2.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-08-31 05:15:29",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "kiranbeethoju",
    "github_project": "agentmatrix",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "agentmatrix"
}
        
Elapsed time: 0.35358s