32 lines
745 B
YAML
32 lines
745 B
YAML
# ViMax agent runtime local configuration template.
|
|
# Keep real keys out of commits. Prefer environment variables for shared or CI usage.
|
|
|
|
llm:
|
|
model_provider: openai
|
|
model: <YOUR_LLM_MODEL>
|
|
base_url: <YOUR_LLM_BASE_URL>
|
|
api_key: ''
|
|
|
|
image:
|
|
model: <YOUR_IMAGE_MODEL>
|
|
base_url: <YOUR_IMAGE_BASE_URL>
|
|
api_key: ''
|
|
|
|
video:
|
|
model: <YOUR_VIDEO_MODEL>
|
|
base_url: <YOUR_VIDEO_BASE_URL>
|
|
api_key: ''
|
|
|
|
# Optional. Fill these only when using novel2video planning.
|
|
embedding:
|
|
model_provider: openai
|
|
model: <YOUR_EMBEDDING_MODEL>
|
|
base_url: <YOUR_EMBEDDING_BASE_URL>
|
|
api_key: ''
|
|
|
|
# Optional. Fill these only when using novel2video planning.
|
|
reranker:
|
|
model: <YOUR_RERANKER_MODEL>
|
|
base_url: <YOUR_RERANKER_BASE_URL>
|
|
api_key: ''
|