返回 ViMax
agent.example.yaml
根目录 / configs / agent.example.yaml
1 # ViMax agent runtime local configuration template.
2 # Keep real keys out of commits. Prefer environment variables for shared or CI usage.
3
4 llm:
5 model_provider: openai
6 model: <YOUR_LLM_MODEL>
7 base_url: <YOUR_LLM_BASE_URL>
8 api_key: ''
9
10 image:
11 model: <YOUR_IMAGE_MODEL>
12 base_url: <YOUR_IMAGE_BASE_URL>
13 api_key: ''
14
15 video:
16 model: <YOUR_VIDEO_MODEL>
17 base_url: <YOUR_VIDEO_BASE_URL>
18 api_key: ''
19
20 # Optional. Fill these only when using novel2video planning.
21 embedding:
22 model_provider: openai
23 model: <YOUR_EMBEDDING_MODEL>
24 base_url: <YOUR_EMBEDDING_BASE_URL>
25 api_key: ''
26
27 # Optional. Fill these only when using novel2video planning.
28 reranker:
29 model: <YOUR_RERANKER_MODEL>
30 base_url: <YOUR_RERANKER_BASE_URL>
31 api_key: ''
32
32 lines YAML