Skip to main content

A package for evolving LLM agents through adversarial training

Project description

troyAI: Evolutionary Reinforcement Learning for LLMs

Empowering Truly Autonomous AI Agents Through Adversarial Evolutionary Reinforcement Learning

Links

๐Ÿ“š Table of Contents

Overview

troyAI is a groundbreaking framework that enables AI agents to self-improve through evolutionary and adversarial mechanisms. Unlike traditional approaches that rely heavily on manual prompt engineering, troyAI allows agents to systematically generate, test, and refine their own prompts and configurations, bridging the gap between theoretical autonomy and actual self-reliance.

The Challenge

In the emerging AI agent economy, many envision a future where agents run autonomously with minimal human oversight. However, if humans must constantly update AI prompts to handle new tasks or edge cases, the agents aren't truly sovereign. troyAI solves this by enabling continuous self-improvement through:

  1. Autonomous Evolution: Agents detect gaps and update their own prompts
  2. Adversarial Testing: Robust validation against challenging scenarios
  3. Performance-Based Selection: Natural emergence of optimal configurations
  4. Continuous Adaptation: Real-time response to changing conditions

Features

  • ๐Ÿงฌ Evolutionary Optimization: Evolve prompts and behaviors using genetic algorithms
  • ๐ŸŽฏ Domain Agnostic: Specialization for any domain
  • โš–๏ธ Robust Evaluation: Comprehensive judging and evaluation
  • ๐Ÿ”ฅ Adversarial Testing: Generate challenging scenarios to ensure robustness
  • ๐Ÿ’พ State Management: Save and load evolved models and their states
  • ๐Ÿ”„ Multiple Model Support: Use OpenAI's GPT or Anthropic's Claude, or run LLaMA locally (coming soon)
  • ๐Ÿค– Self-Improvement Loop: Continuous evolution without human intervention

Installation

# Basic installation
pip install troyai

# Install with all dependencies
pip install troyai[all]

Quick Start

from troyai.evolution import Evolution, EvolutionConfig
from troyai.llm import LLMConfig
from troyai.agent import Agent, AgentConfig

# Configure LLM backend
llm_config = LLMConfig(
    model_name="gpt-4",
    model_type="openai",  # or "anthropic"
    openai_api_key="your-api-key"  # or anthropic_api_key for Claude
)

# Create agent with system prompt
agent_config = AgentConfig(llm_config=llm_config)
agent = Agent(agent_config)
agent.set_default_prompt("""You are an expert AI agent specialized in mathematics.
You break down complex problems step by step and show your work clearly.""")

# Configure evolution process
config = EvolutionConfig(
    population_size=5,
    generations=10,
    mutation_rate=0.1,
    crossover_rate=0.8,
    output_dir="agents"
)

# Create evolution instance
evolution = Evolution(config, experiment_id="math_solver")

# Run evolution process
await evolution.evolve(
    domain="mathematics",
    description="Solve complex math problems with detailed explanations"
)

Direct Agent Usage

You can also use agents directly without evolution:

# Create and configure agent
agent = Agent(AgentConfig(llm_config=llm_config))
agent.set_default_prompt("You are a helpful AI assistant...")

# Send messages
response = await agent.send_message("What is 2+2?")
print(response)

CLI Usage

train_agent.py is a single file CLI that runs the evolution process. Be sure to update the config file default_config.json first, as well as keep your OpenAI or Anthropic API key as environment variables or in the .env.

# Basic usage with OpenAI
python train_agent.py --domain math --description "Solve math problems" -v

# Use Anthropic's Claude
python train_agent.py --provider anthropic --domain math --description "Solve math problems"

# Load domain from file
python train_agent.py --domain-file domains/math_solver.json

# Custom output directory
python train_agent.py --domain math --description "..." --output-dir ./my_agents

# Increase verbosity (up to -vvvvv)
python train_agent.py --domain math --description "..." -vvv

Current domain examples are in natural language. You can add more details when building your own use cases. In addition, you may include any examples you believe are important for the agent to know.

Output Structure

agents/
โ”œโ”€โ”€ {experiment_id}_gen0.json           # Best agent from generation 0
โ”œโ”€โ”€ {experiment_id}_gen0_full.json      # All variants and scores from generation 0
โ”œโ”€โ”€ {experiment_id}_gen1.json           # Best agent from generation 1
โ”œโ”€โ”€ {experiment_id}_gen1_full.json      # All variants and scores from generation 1
โ””โ”€โ”€ {experiment_id}_best.json           # Best agent overall

The individual .json (not the *_full.json) contains the AgentConfig for the best agent of the generation or overall. You may initiate an agent directly from its AgentConfig file by calling agent.load_config(PATH_TO_CONFIG_FILE). Be sure to update the API key as it will not be stored in the AgentConfig file.

Generation Output Format

{
    "population_size": 5,
    "generations": 10,
    "mutation_rate": 0.1,
    "crossover_rate": 0.8,
    "min_score_threshold": 0.7,
    "tournament_size": 2,
    "max_interaction_attempts": 5,
    "output_dir": "agents",
    "llm_config": {
        "model_name": "gpt-4o-mini",
        "model_type": "openai",
        "max_tokens": 500,
        "temperature": 0.7
    }
}

Output Structure

agents/
โ”œโ”€โ”€ {experiment_id}_gen0.json           # Best agent from generation 0
โ”œโ”€โ”€ {experiment_id}_gen0_full.json      # All variants from generation 0
โ”œโ”€โ”€ {experiment_id}_gen1.json           # Best agent from generation 1
โ”œโ”€โ”€ {experiment_id}_gen1_full.json      # All variants from generation 1
โ””โ”€โ”€ {experiment_id}_best.json           # Best agent overall

Progress Tracking

The evolution process shows real-time progress with nested progress bars:

Generation 2/10: 100%|โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ| 6/6 [00:15<00:00, best_score=0875, avg_score=0834]
Overall Progress:  15%|โ–ˆโ–ˆ        | 12/80 [00:30<02:45, generation=2/10, best_overall=0875]

This may take a while depending on the number of generations and population size per generation.

License

MIT License - see LICENSE file for details

Contributing

  1. Fork the repository
  2. Create a feature branch
  3. Commit your changes
  4. Push to the branch
  5. Create a Pull Request

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

troy_ai_dev-0.2.1-py3-none-any.whl (5.0 kB view details)

Uploaded Python 3

File details

Details for the file troy_ai_dev-0.2.1-py3-none-any.whl.

File metadata

  • Download URL: troy_ai_dev-0.2.1-py3-none-any.whl
  • Upload date:
  • Size: 5.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.10.16

File hashes

Hashes for troy_ai_dev-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 2b6fbb079e28cdc227fb4c70f3b408eaf33721eb83ddf73e8b7abd998bd22d0f
MD5 f2a4d81c3f990e9682d3ca1cd16fab4d
BLAKE2b-256 4e02ebfc38a647d1011644bbd3b5189076847208e6f057fa7f2e747133281d59

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page