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
马一丁
2025-11-17 17:19:21 +0800
Browse Files
Options
Browse Files
Download
Plain Diff
Committed by
GitHub
2025-11-17 17:19:21 +0800
Commit
dd963d66893558aa8e672a520d828532d67ae073
dd963d66
2 parents
45ef1b07
3849c6ef
Merge pull request #365 from 666ghj/main
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 @
dd963d6
...
...
@@ -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 @
dd963d6
...
...
@@ -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