Files
vibe_data_ana/.env.example

23 lines
511 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# LLM 配置
LLM_PROVIDER=openai # openai 或 gemini
# OpenAI 配置
OPENAI_API_KEY=your_openai_api_key_here
OPENAI_BASE_URL=https://api.openai.com/v1
OPENAI_MODEL=gpt-4
# Gemini 配置(如果使用 Gemini
GEMINI_API_KEY=your_gemini_api_key_here
GEMINI_BASE_URL=https://generativelanguage.googleapis.com/v1beta/openai/
GEMINI_MODEL=gemini-2.0-flash-exp
# Agent 配置
AGENT_MAX_ROUNDS=20
AGENT_OUTPUT_DIR=outputs
# 工具配置
TOOL_MAX_QUERY_ROWS=10000
# 代码库配置
CODE_REPO_ENABLE_REUSE=true