This document provides instructions on how to set up and use this project.
main.py: The main entry point for the application.agents/: Contains various agent implementations..gemini/agents/: Configuration files for the Gemini agents.requirements.txt: Lists Python dependencies.README.md: Project overview.instructions.md: This document.
-
Clone the repository:
git clone <repository_url> cd <project_directory>
-
Create and activate a virtual environment:
python -m venv venv source venv/bin/activate -
Install dependencies:
pip install -r requirements.txt
-
Set up environment variables: Copy
.env.exampleto.envand fill in any necessary API keys or configurations.cp .env.example .env
To run the main application:
python main.pyRefer to main.py for specific command-line arguments or interactive modes if applicable.
The agents/ directory contains different specialized agents. Each agent might have its own usage instructions or configuration. Refer to the individual agent files for more details.
The .gemini/agents/ directory contains markdown files describing the roles and configurations for various sub-agents used by the Gemini CLI. These are internal configurations for the AI agent itself.