mirror of
https://github.com/Xe138/AI-Trader.git
synced 2026-04-01 17:17:24 -04:00
Added comprehensive implementation plan for development mode feature and test configuration used during verification. Files: - docs/plans/2025-11-01-dev-mode-mock-ai.md: Complete 12-task plan - configs/test_dev_mode.json: Test configuration for dev mode These files document the feature implementation process and provide reference configurations for testing.
25 lines
453 B
JSON
25 lines
453 B
JSON
{
|
|
"agent_type": "BaseAgent",
|
|
"date_range": {
|
|
"init_date": "2025-01-01",
|
|
"end_date": "2025-01-02"
|
|
},
|
|
"models": [
|
|
{
|
|
"name": "test-dev-model",
|
|
"basemodel": "mock/test-trader",
|
|
"signature": "test-dev-agent",
|
|
"enabled": true
|
|
}
|
|
],
|
|
"agent_config": {
|
|
"max_steps": 5,
|
|
"max_retries": 1,
|
|
"base_delay": 0.5,
|
|
"initial_cash": 10000.0
|
|
},
|
|
"log_config": {
|
|
"log_path": "./data/agent_data"
|
|
}
|
|
}
|