Complete AI Data Analysis Agent implementation with 95.7% test coverage
This commit is contained in:
31
config.example.json
Normal file
31
config.example.json
Normal file
@@ -0,0 +1,31 @@
|
||||
{
|
||||
"llm": {
|
||||
"provider": "openai",
|
||||
"api_key": "your_api_key_here",
|
||||
"base_url": "https://api.openai.com/v1",
|
||||
"model": "gpt-4",
|
||||
"timeout": 120,
|
||||
"max_retries": 3,
|
||||
"temperature": 0.7,
|
||||
"max_tokens": null
|
||||
},
|
||||
"performance": {
|
||||
"agent_max_rounds": 20,
|
||||
"agent_timeout": 300,
|
||||
"tool_max_query_rows": 10000,
|
||||
"tool_execution_timeout": 60,
|
||||
"data_max_rows": 1000000,
|
||||
"data_sample_threshold": 1000000,
|
||||
"max_concurrent_tasks": 1
|
||||
},
|
||||
"output": {
|
||||
"output_dir": "output",
|
||||
"log_dir": null,
|
||||
"chart_dir": null,
|
||||
"report_filename": "analysis_report.md",
|
||||
"log_level": "INFO",
|
||||
"log_to_file": true,
|
||||
"log_to_console": true
|
||||
},
|
||||
"code_repo_enable_reuse": true
|
||||
}
|
||||
Reference in New Issue
Block a user