返回 VideoClaw
config.yaml.example
根目录 / video-claw / video-claw / backend / config.yaml.example
1 project_name: Video-Claw
2 server:
3 host: 127.0.0.1
4 port: 8000
5 log_level: INFO
6 access_log: false
7 api_providers:
8 common:
9 print_model_input: false
10 proxy: ''
11 openai:
12 api_key: ''
13 base_url: https://api.openai.com/v1
14 enable_proxy: false
15 gemini:
16 api_key: ''
17 base_url: https://generativelanguage.googleapis.com/v1beta
18 enable_proxy: false
19 deepseek:
20 api_key: ''
21 base_url: https://api.deepseek.com/v1
22 enable_proxy: false
23 dashscope:
24 api_key: ''
25 base_url: https://dashscope.aliyuncs.com/api/v1
26 enable_proxy: false
27 ark:
28 api_key: ''
29 base_url: https://ark.cn-beijing.volces.com/api/v3
30 enable_proxy: false
31 kling:
32 base_url: https://api-beijing.klingai.com
33 api_key: ''
34 enable_proxy: false
35 models:
36 llm: qwen3.5-plus
37 vlm: qwen3.5-plus
38 image_it2i: doubao-seedream-5-0-260128
39 image_t2i: doubao-seedream-5-0-260128
40 video: wan2.7-i2v
41 video_first_frame: wan2.7-i2v
42 video_start_end: wan2.7-i2v
43 video_reference: wan2.7-r2v
44 generation:
45 style: realistic
46 video_ratio: '16:9'
47 video_resolution: 720P
48 video_generation_mode: first_frame
49
49 lines Plain Text