├── .github └── workflows │ └── release.yml ├── .gitignore ├── LICENSE ├── README.md ├── agentx ├── __init__.py ├── agentx.py ├── images │ └── LOGO.png ├── resources │ ├── __init__.py │ ├── agent.py │ ├── conversation.py │ └── workforce.py ├── util.py └── version.py └── setup.py /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgentX-ai/agentx-python/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgentX-ai/agentx-python/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgentX-ai/agentx-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgentX-ai/agentx-python/HEAD/README.md -------------------------------------------------------------------------------- /agentx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgentX-ai/agentx-python/HEAD/agentx/__init__.py -------------------------------------------------------------------------------- /agentx/agentx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgentX-ai/agentx-python/HEAD/agentx/agentx.py -------------------------------------------------------------------------------- /agentx/images/LOGO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgentX-ai/agentx-python/HEAD/agentx/images/LOGO.png -------------------------------------------------------------------------------- /agentx/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agentx/resources/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgentX-ai/agentx-python/HEAD/agentx/resources/agent.py -------------------------------------------------------------------------------- /agentx/resources/conversation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgentX-ai/agentx-python/HEAD/agentx/resources/conversation.py -------------------------------------------------------------------------------- /agentx/resources/workforce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgentX-ai/agentx-python/HEAD/agentx/resources/workforce.py -------------------------------------------------------------------------------- /agentx/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgentX-ai/agentx-python/HEAD/agentx/util.py -------------------------------------------------------------------------------- /agentx/version.py: -------------------------------------------------------------------------------- 1 | VERSION = "0.4.8" 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgentX-ai/agentx-python/HEAD/setup.py --------------------------------------------------------------------------------