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.
76 lines
1.8 KiB
Markdown
76 lines
1.8 KiB
Markdown
---
|
|
name: "venice-chat"
|
|
description: "Chat with Venice.ai LLM models, analyze images/videos. Supports reasoning mode and web search."
|
|
version: "1.0.0"
|
|
author: "Agent JAE"
|
|
tags:
|
|
- venice
|
|
- api
|
|
- chat
|
|
- llm
|
|
- vision
|
|
- reasoning
|
|
trigger_patterns:
|
|
- "venice chat"
|
|
- "chat with venice"
|
|
- "analyze image with venice"
|
|
- "venice reasoning"
|
|
---
|
|
|
|
# Venice Chat
|
|
|
|
Chat with Venice.ai LLM models with optional image analysis and reasoning mode.
|
|
|
|
## When to Use
|
|
|
|
Use this skill when you need to:
|
|
- Chat with Venice.ai models directly
|
|
- Analyze images using vision models
|
|
- Use reasoning mode for complex problems
|
|
- Enable web search for current information
|
|
|
|
## Usage
|
|
|
|
### Simple Chat
|
|
```bash
|
|
python ~/.jae/agent/skills/venice-chat/scripts/chat.py "What is the capital of France?"
|
|
```
|
|
|
|
### With System Prompt
|
|
```bash
|
|
python ~/.jae/agent/skills/venice-chat/scripts/chat.py "Write a haiku" --system "You are a poet"
|
|
```
|
|
|
|
### Image Analysis
|
|
```bash
|
|
python ~/.jae/agent/skills/venice-chat/scripts/chat.py "What's in this image?" --image /path/to/image.png
|
|
```
|
|
|
|
### Reasoning Mode
|
|
```bash
|
|
python ~/.jae/agent/skills/venice-chat/scripts/chat.py "Solve this math problem" --reasoning
|
|
```
|
|
|
|
## Default Models
|
|
|
|
| Mode | Model | Notes |
|
|
|------|-------|-------|
|
|
| Default | zai-org-glm-4.7 | GLM 4.7 - most intelligent |
|
|
| Vision | qwen3-vl-235b-a22b | Qwen3 VL 235B - 250K context |
|
|
| Reasoning | qwen3-235b-a22b-thinking-2507 | Extended thinking |
|
|
|
|
## Options
|
|
|
|
| Option | Description |
|
|
|--------|-------------|
|
|
| --model | Override model ID |
|
|
| --system | System prompt |
|
|
| --image | Path to image for analysis |
|
|
| --reasoning | Enable reasoning mode |
|
|
| --temperature | 0.0-2.0 (default: 0.7) |
|
|
| --max_tokens | Max response tokens |
|
|
| --web_search | Enable web search |
|
|
|
|
## Requirements
|
|
|
|
- `VENICE_API_KEY` environment variable
|