04db423416
- 70 skills with code and documentation - Add .gitignore (ignore __pycache__, output/, temp/, venv/) - Clean up test intermediates and caches
43 lines
1003 B
JSON
43 lines
1003 B
JSON
{
|
|
"image_api": {
|
|
"key": "your_volcengine_api_key_here",
|
|
"base_url": "https://ark.cn-beijing.volces.com/api/coding/v3",
|
|
"model": "doubao-seed-code"
|
|
},
|
|
"vision_api": {
|
|
"key": "your_volcengine_api_key_here",
|
|
"base_url": "https://ark.cn-beijing.volces.com/api/coding/v3",
|
|
"model": "doubao-seed-code"
|
|
},
|
|
"defaults": {
|
|
"text_to_image": {
|
|
"size": "1792x1024",
|
|
"response_format": "b64_json"
|
|
},
|
|
"image_to_image": {
|
|
"size": "1792x1024",
|
|
"response_format": "b64_json"
|
|
},
|
|
"image_to_text": {
|
|
"max_tokens": 2000,
|
|
"temperature": 0.7,
|
|
"mode": "describe"
|
|
}
|
|
},
|
|
"limits": {
|
|
"max_file_size_mb": 4,
|
|
"supported_formats": ["png", "jpg", "jpeg", "webp", "gif"],
|
|
"max_prompt_length": 1000,
|
|
"timeout_seconds": {
|
|
"text_to_image": 180,
|
|
"image_to_image": 180,
|
|
"image_to_text": 120
|
|
}
|
|
},
|
|
"retry": {
|
|
"max_attempts": 3,
|
|
"backoff_multiplier": 2,
|
|
"initial_delay_seconds": 1
|
|
}
|
|
}
|