├── .flake8 ├── .gitignore ├── .pylintrc ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── assets ├── Genesis Logo.png └── Genesis RAG Diagram.png ├── docker ├── .env.docker ├── Dockerfile ├── run-docker.sh └── simple-agent.py ├── genesis_agentic ├── __init__.py ├── _callback.py ├── _observability.py ├── _prompts.py ├── _version.py ├── agent.py ├── agent_config.py ├── agent_endpoint.py ├── db_tools.py ├── tools.py ├── tools_catalog.py ├── types.py └── utils.py ├── requirements-dev.txt ├── requirements.txt └── tests ├── __init__.py ├── test_agent.py └── test_tools.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Genesis-Agentic/Genesis/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Genesis-Agentic/Genesis/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Genesis-Agentic/Genesis/HEAD/.pylintrc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Genesis-Agentic/Genesis/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Genesis-Agentic/Genesis/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Genesis-Agentic/Genesis/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Genesis-Agentic/Genesis/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Genesis-Agentic/Genesis/HEAD/README.md -------------------------------------------------------------------------------- /assets/Genesis Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Genesis-Agentic/Genesis/HEAD/assets/Genesis Logo.png -------------------------------------------------------------------------------- /assets/Genesis RAG Diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Genesis-Agentic/Genesis/HEAD/assets/Genesis RAG Diagram.png -------------------------------------------------------------------------------- /docker/.env.docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Genesis-Agentic/Genesis/HEAD/docker/.env.docker -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Genesis-Agentic/Genesis/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/run-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Genesis-Agentic/Genesis/HEAD/docker/run-docker.sh -------------------------------------------------------------------------------- /docker/simple-agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Genesis-Agentic/Genesis/HEAD/docker/simple-agent.py -------------------------------------------------------------------------------- /genesis_agentic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Genesis-Agentic/Genesis/HEAD/genesis_agentic/__init__.py -------------------------------------------------------------------------------- /genesis_agentic/_callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Genesis-Agentic/Genesis/HEAD/genesis_agentic/_callback.py -------------------------------------------------------------------------------- /genesis_agentic/_observability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Genesis-Agentic/Genesis/HEAD/genesis_agentic/_observability.py -------------------------------------------------------------------------------- /genesis_agentic/_prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Genesis-Agentic/Genesis/HEAD/genesis_agentic/_prompts.py -------------------------------------------------------------------------------- /genesis_agentic/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Genesis-Agentic/Genesis/HEAD/genesis_agentic/_version.py -------------------------------------------------------------------------------- /genesis_agentic/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Genesis-Agentic/Genesis/HEAD/genesis_agentic/agent.py -------------------------------------------------------------------------------- /genesis_agentic/agent_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Genesis-Agentic/Genesis/HEAD/genesis_agentic/agent_config.py -------------------------------------------------------------------------------- /genesis_agentic/agent_endpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Genesis-Agentic/Genesis/HEAD/genesis_agentic/agent_endpoint.py -------------------------------------------------------------------------------- /genesis_agentic/db_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Genesis-Agentic/Genesis/HEAD/genesis_agentic/db_tools.py -------------------------------------------------------------------------------- /genesis_agentic/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Genesis-Agentic/Genesis/HEAD/genesis_agentic/tools.py -------------------------------------------------------------------------------- /genesis_agentic/tools_catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Genesis-Agentic/Genesis/HEAD/genesis_agentic/tools_catalog.py -------------------------------------------------------------------------------- /genesis_agentic/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Genesis-Agentic/Genesis/HEAD/genesis_agentic/types.py -------------------------------------------------------------------------------- /genesis_agentic/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Genesis-Agentic/Genesis/HEAD/genesis_agentic/utils.py -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Genesis-Agentic/Genesis/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Genesis-Agentic/Genesis/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Genesis-Agentic/Genesis/HEAD/tests/test_agent.py -------------------------------------------------------------------------------- /tests/test_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Genesis-Agentic/Genesis/HEAD/tests/test_tools.py --------------------------------------------------------------------------------