Some checks are pending
CI / build-check-test (push) Waiting to run
Skills included: - venice-chat: Chat with Venice LLM models, vision, reasoning - venice-chat-benchmark: Benchmark chat models with infographics - venice-image-gen: Generate images via Venice API - venice-list-image-models: List available image models - venice-list-text-models: List available text models - venice-list-video-models: List available video models - venice-tts: Text-to-speech via Venice API - venice-video-generate: Generate videos from text/images - venice-video-queue: Queue video generation jobs - venice-video-quote: Get video generation cost quotes - venice-video-retrieve: Retrieve completed videos All rebranded from Agent Zero paths to Agent JAE (~/.jae/agent/skills/). Requires VENICE_API_KEY environment variable.
56 lines
1.3 KiB
Markdown
56 lines
1.3 KiB
Markdown
---
|
|
name: "venice-video-quote"
|
|
description: "Get cost estimate for Venice.ai video generation before creating. Validates parameters against model capabilities."
|
|
version: "1.0.0"
|
|
author: "Agent JAE"
|
|
tags:
|
|
- venice
|
|
- api
|
|
- video
|
|
- cost
|
|
- quote
|
|
trigger_patterns:
|
|
- "video quote"
|
|
- "video cost"
|
|
- "estimate video"
|
|
- "video price"
|
|
- "how much video"
|
|
---
|
|
|
|
# Venice Video Quote
|
|
|
|
Get cost estimate for video generation before creating.
|
|
|
|
## When to Use
|
|
|
|
Use this skill when you need to:
|
|
- Get cost estimates before generating videos
|
|
- Validate parameters against model capabilities
|
|
- Compare costs between different configurations
|
|
|
|
## Usage
|
|
|
|
```bash
|
|
python ~/.jae/agent/skills/venice-video-quote/scripts/get_video_quote.py <model> <duration> [aspect_ratio] [resolution] [audio]
|
|
```
|
|
|
|
## Arguments
|
|
|
|
| Argument | Required | Default | Description |
|
|
|----------|----------|---------|-------------|
|
|
| model | ✅ | - | Model ID |
|
|
| duration | ✅ | - | Video duration (5s, 10s, etc.) |
|
|
| aspect_ratio | ❌ | 16:9 | Aspect ratio |
|
|
| resolution | ❌ | 720p | Resolution |
|
|
| audio | ❌ | False | Enable audio |
|
|
|
|
## Example
|
|
|
|
```bash
|
|
# Get quote for 5-second video
|
|
python ~/.jae/agent/skills/venice-video-quote/scripts/get_video_quote.py wan-2.5-preview-text-to-video 5s 16:9 720p false
|
|
```
|
|
|
|
## Requirements
|
|
|
|
- `VENICE_API_KEY` environment variable
|