Files
GenericAgent/mykey_template.py
Liang Jiaqing 08d6cedc7d feat: 优化LLM显示、修复API路径、重构自主操作SOP、添加sche_tasks到gitignore
- agentmain.py: LLM列表显示增加backend类型
- sidercall.py: 统一API endpoint路径为/v1/chat/completions
- autonomous_operation_sop.md: 重构任务选择逻辑和报告目录规则
- .gitignore: 添加sche_tasks/目录排除
- 移除git追踪的sche_tasks任务报告文件
2026-02-20 11:10:04 +08:00

31 lines
573 B
Python

oai_config = {
'apikey':'sk-uklURcj',
'apibase':"http://113.145.139.147:3001",
'model':"openai/gpt-5.1"
}
# or
sider_cookie = 'token=Bearer%20eyJhbGciOiJIUz...'
# feel free to add more ~
oai_config2 = {
'apikey':'sk-uklURcj...',
'apibase':"http://133.145.139.147:3001",
'model':"claude-opus-4-6-20260206"
}
claude_config = {
'apikey':'klURcj...',
'apibase':"http://233.145.139.147:3001",
'model':"claude-opus"
}
# If you need them
# tg_bot_token = '84102K2gYZ...'
# tg_allowed_users = [6806...]
# proxy = "http://127.0.0.1:2082"