File size: 774 Bytes
af7246f
 
 
 
e36cfa2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
af7246f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
"""
AI Testing Tools
----------------

This package provides tools for testing AI agents in PyCatan.

Main Entry Points:
- play_with_ai.py - Run a game with AI agents (manual or LLM mode)
- play_and_capture.py - Play and capture game states for analysis
- web_viewer.py - Visualize AI prompts and responses

Key Files:
- my_games/ - Session storage for AI interactions
- sample_states/ - Example game states for testing
- templates/ - Prompt templates

Deprecated Files (in _deprecated/):
- Old prompt generation and testing scripts
- See _deprecated/__init__.py for details

Usage:
    # Run a game with AI agents (manual mode):
    python examples/ai_testing/play_with_ai.py
    
    # Run a game and capture states:
    python examples/ai_testing/play_and_capture.py
"""