bidmaster-cli/config/config.yaml
sladro 47fc26f3f0 feat: 初始化BidMaster-CLI项目
- 实现三层架构(CLI/Agent/Tools)
- 完成招标文件解析器(支持Excel/CSV/Word)
- 实现AI智能表格识别和分类
- 支持商务/技术评分项智能分离
- 实现RAG知识库管理
- 完成专业目录结构生成
- 修复编码规范违规问题

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-25 13:50:13 +08:00

42 lines
938 B
YAML
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.

# BidMaster-CLI 默认配置
# LLM设置
llm:
# 提供商: openai, azure_openai, anthropic, zhipu, qwen, deepseek, ollama
llm_provider: "openai"
model_name: "gpt-4"
temperature: 0.1
max_tokens: 4000
# Azure OpenAI 特定配置使用azure_openai时需要
# azure_api_version: "2024-02-15-preview"
# azure_deployment: "your-deployment-name"
# Ollama 配置使用ollama时需要
# ollama_host: "http://localhost:11434"
# 向量数据库设置
vector_db:
persist_directory: "./data/kb"
collection_name: "bidmaster_kb"
# 嵌入模型设置
embedding:
model_name: "text-embedding-3-small"
chunk_size: 1000
chunk_overlap: 200
# 文档处理设置
document:
max_file_size: 50MB
supported_formats: [".pdf", ".docx", ".txt", ".md"]
# 性能设置
performance:
max_workers: 4
timeout: 300
# 日志设置
logging:
level: INFO
format: "%(asctime)s - %(name)s - %(levelname)s - %(message)s"