Toggle navigation
Toggle navigation
This project
Loading...
Sign in
万朱浩
/
Venue-Ops
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
666ghj
2025-11-17 16:10:45 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
3849c6ef5232f2f2f6c4223ea1d3d64af9b9e748
3849c6ef
1 parent
aa3b9130
Update config.
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
.env.example
config.py
.env.example
View file @
3849c6e
...
...
@@ -30,7 +30,7 @@ INSIGHT_ENGINE_API_KEY=
INSIGHT_ENGINE_BASE_URL=
INSIGHT_ENGINE_MODEL_NAME=
# Media Agent(推荐
G
emini-2.5-pro,中转厂商申请地址:https://aihubmix.com/?aff=8Ds9)
# Media Agent(推荐
g
emini-2.5-pro,中转厂商申请地址:https://aihubmix.com/?aff=8Ds9)
MEDIA_ENGINE_API_KEY=
MEDIA_ENGINE_BASE_URL=
MEDIA_ENGINE_MODEL_NAME=
...
...
@@ -40,7 +40,7 @@ QUERY_ENGINE_API_KEY=
QUERY_ENGINE_BASE_URL=
QUERY_ENGINE_MODEL_NAME=
# Report Agent(推荐
G
emini-2.5-pro,中转厂商申请地址:https://aihubmix.com/?aff=8Ds9)
# Report Agent(推荐
g
emini-2.5-pro,中转厂商申请地址:https://aihubmix.com/?aff=8Ds9)
REPORT_ENGINE_API_KEY=
REPORT_ENGINE_BASE_URL=
REPORT_ENGINE_MODEL_NAME=
...
...
config.py
View file @
3849c6e
...
...
@@ -47,22 +47,22 @@ class Settings(BaseSettings):
INSIGHT_ENGINE_MODEL_NAME
:
str
=
Field
(
"kimi-k2-0711-preview"
,
description
=
"Insight Agent LLM 模型名称,例如 kimi-k2-0711-preview"
)
# Media Agent(推荐Gemini,推荐中转厂商:https://aihubmix.com/?aff=8Ds9)
MEDIA_ENGINE_API_KEY
:
Optional
[
str
]
=
Field
(
None
,
description
=
"Media Agent(推荐
G
emini-2.5-pro,中转厂商申请地址:https://aihubmix.com/?aff=8Ds9)API 密钥"
)
MEDIA_ENGINE_API_KEY
:
Optional
[
str
]
=
Field
(
None
,
description
=
"Media Agent(推荐
g
emini-2.5-pro,中转厂商申请地址:https://aihubmix.com/?aff=8Ds9)API 密钥"
)
MEDIA_ENGINE_BASE_URL
:
Optional
[
str
]
=
Field
(
"https://aihubmix.com/v1"
,
description
=
"Media Agent LLM BaseUrl,可根据中转服务调整"
)
MEDIA_ENGINE_MODEL_NAME
:
str
=
Field
(
"gemini-2.5-pro"
,
description
=
"Media Agent LLM 模型名称,如 gemini-2.5-pro"
)
# Query Agent(推荐DeepSeek,申请地址:https://www.deepseek.com/)
QUERY_ENGINE_API_KEY
:
Optional
[
str
]
=
Field
(
None
,
description
=
"Query Agent(推荐
DeepS
eek,官方申请地址:https://platform.deepseek.com/)API 密钥"
)
QUERY_ENGINE_API_KEY
:
Optional
[
str
]
=
Field
(
None
,
description
=
"Query Agent(推荐
deeps
eek,官方申请地址:https://platform.deepseek.com/)API 密钥"
)
QUERY_ENGINE_BASE_URL
:
Optional
[
str
]
=
Field
(
"https://api.deepseek.com"
,
description
=
"Query Agent LLM BaseUrl"
)
QUERY_ENGINE_MODEL_NAME
:
str
=
Field
(
"deepseek-chat"
,
description
=
"Query Agent LLM 模型名称,如 deepseek-reasoner"
)
# Report Agent(推荐Gemini,推荐中转厂商:https://aihubmix.com/?aff=8Ds9)
REPORT_ENGINE_API_KEY
:
Optional
[
str
]
=
Field
(
None
,
description
=
"Report Agent(推荐
G
emini-2.5-pro,中转厂商申请地址:https://aihubmix.com/?aff=8Ds9)API 密钥"
)
REPORT_ENGINE_API_KEY
:
Optional
[
str
]
=
Field
(
None
,
description
=
"Report Agent(推荐
g
emini-2.5-pro,中转厂商申请地址:https://aihubmix.com/?aff=8Ds9)API 密钥"
)
REPORT_ENGINE_BASE_URL
:
Optional
[
str
]
=
Field
(
"https://aihubmix.com/v1"
,
description
=
"Report Agent LLM BaseUrl,可根据中转服务调整"
)
REPORT_ENGINE_MODEL_NAME
:
str
=
Field
(
"gemini-2.5-pro"
,
description
=
"Report Agent LLM 模型名称,如 gemini-2.5-pro"
)
# MindSpider Agent(推荐Deepseek,官方申请地址:https://platform.deepseek.com/)
MINDSPIDER_API_KEY
:
Optional
[
str
]
=
Field
(
None
,
description
=
"MindSpider Agent(推荐
DeepS
eek,官方申请地址:https://platform.deepseek.com/)API 密钥"
)
MINDSPIDER_API_KEY
:
Optional
[
str
]
=
Field
(
None
,
description
=
"MindSpider Agent(推荐
deeps
eek,官方申请地址:https://platform.deepseek.com/)API 密钥"
)
MINDSPIDER_BASE_URL
:
Optional
[
str
]
=
Field
(
None
,
description
=
"MindSpider Agent BaseUrl,可按所选服务配置"
)
MINDSPIDER_MODEL_NAME
:
Optional
[
str
]
=
Field
(
None
,
description
=
"MindSpider Agent 模型名称,例如 deepseek-reasoner"
)
...
...
Please
register
or
login
to post a comment