Skip to content

Latest commit

 

History

History
55 lines (39 loc) · 1.46 KB

File metadata and controls

55 lines (39 loc) · 1.46 KB

Instructions

This document provides instructions on how to set up and use this project.

Project Structure

  • 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.

Setup

  1. Clone the repository:

    git clone <repository_url>
    cd <project_directory>
  2. Create and activate a virtual environment:

    python -m venv venv
    source venv/bin/activate
  3. Install dependencies:

    pip install -r requirements.txt
  4. Set up environment variables: Copy .env.example to .env and fill in any necessary API keys or configurations.

    cp .env.example .env

Usage

To run the main application:

python main.py

Refer to main.py for specific command-line arguments or interactive modes if applicable.

Agents

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.

Gemini Agents Configuration

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.