Files
vibe_data_ana/config.example.json

32 lines
728 B
JSON
Raw Normal View History

{
"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
}