| 1 | # Example configuration using MiniMax as the chat model provider. |
| 2 | # MiniMax M3 is used via its OpenAI-compatible API. |
| 3 | # |
| 4 | # Set your API key below or export MINIMAX_API_KEY in the environment. |
| 5 | # Available models: |
| 6 | # - MiniMax-M3 (latest, recommended) |
| 7 | # - MiniMax-M2.7 (previous generation) |
| 8 | # - MiniMax-M2.7-highspeed (fast variant) |
| 9 | |
| 10 | chat_model: |
| 11 | init_args: |
| 12 | model: MiniMax-M3 |
| 13 | model_provider: minimax |
| 14 | api_key: # leave empty to use the MINIMAX_API_KEY environment variable |
| 15 | # base_url is auto-resolved to https://api.minimax.io/v1 |
| 16 | max_requests_per_minute: 500 |
| 17 | max_requests_per_day: 2000 |
| 18 | |
| 19 | image_generator: |
| 20 | class_path: tools.ImageGeneratorNanobananaGoogleAPI |
| 21 | init_args: |
| 22 | api_key: |
| 23 | max_requests_per_minute: 10 |
| 24 | max_requests_per_day: 500 |
| 25 | |
| 26 | video_generator: |
| 27 | class_path: tools.VideoGeneratorVeoGoogleAPI |
| 28 | init_args: |
| 29 | api_key: |
| 30 | max_requests_per_minute: 2 |
| 31 | max_requests_per_day: 10 |
| 32 | |
| 33 | working_dir: .working_dir/idea2video |
| 34 |