Skip to main content

VAP - Visual Audio Production SDK: Give your Agent a Studio

Project description

VAP SDK for Python

Give your Agent a Studio - VAP is the Media Card for AI Agents

PyPI version Python 3.9+ License: MIT

VAP (Visual Audio Production) SDK enables AI agents to generate professional media content with a single API call. Think of it as a "credit card for media" - deposit funds, execute presets, pay only for what you use.

🚀 Quick Start

pip install vap-sdk
from vap import VapClient

client = VapClient(api_key="your-api-key")
result = client.execute("streaming_campaign", text="Welcome to the future of AI media!")

print(result.video_url)  # Your video is ready!

📋 Features

  • Simple API: One method to generate complete media packages
  • Preset System: Pre-configured media generation pipelines
  • Deposit-Reserve-Burn: Transparent prepaid financial model
  • Sync & Async: Both synchronous and asynchronous clients
  • Type Safe: Full Pydantic models with IDE autocomplete
  • Framework Ready: Built for LangChain, CrewAI, and MCP integration

💰 Preset Pricing

Preset Output Price
streaming_campaign Video + Music + Narration $5.90
full_production Full Production Package $7.90
video.basic Basic Video $1.90
music.basic AI Music Track $0.59
image.basic AI Generated Image $0.29

📖 Usage Examples

Basic Video Generation

from vap import VapClient

with VapClient(api_key="your-key") as client:
    result = client.execute(
        "streaming_campaign",
        text="Introducing our revolutionary AI product",
        style="corporate",
        voice="professional_male"
    )
    
    print(f"Video: {result.video_url}")
    print(f"Cost: ${result.cost}")

Async Usage

import asyncio
from vap import AsyncVapClient

async def generate_video():
    async with AsyncVapClient(api_key="your-key") as client:
        result = await client.execute(
            "video.basic",
            text="Hello async world!",
            image_prompt="futuristic city skyline"
        )
        return result.video_url

url = asyncio.run(generate_video())

Check Account Balance

from vap import VapClient

client = VapClient(api_key="your-key")
account = client.get_account()

print(f"Balance: ${account.balance}")
print(f"Tier: {account.tier}")

List Available Presets

from vap import VapClient

client = VapClient(api_key="your-key")
presets = client.list_presets()

for preset in presets:
    print(f"{preset.name}: ${preset.price} - {preset.description}")

Error Handling

from vap import VapClient, VapInsufficientFundsError, VapAuthError

client = VapClient(api_key="your-key")

try:
    result = client.execute("streaming_campaign", text="My video")
except VapAuthError:
    print("Invalid API key")
except VapInsufficientFundsError as e:
    print(f"Need ${e.required}, have ${e.available}")

🔗 Framework Integrations

LangChain Tool

from langchain.tools import Tool
from vap import VapClient

client = VapClient(api_key="your-key")

vap_tool = Tool(
    name="generate_video",
    description="Generate a video from text description",
    func=lambda text: client.execute("video.basic", text=text).video_url
)

CrewAI Integration

from crewai import Agent, Tool
from vap import VapClient

client = VapClient(api_key="your-key")

video_tool = Tool(
    name="Video Generator",
    description="Creates videos from text prompts",
    func=lambda prompt: client.execute("streaming_campaign", text=prompt).video_url
)

creative_agent = Agent(
    role="Video Producer",
    tools=[video_tool]
)

🏗️ API Reference

VapClient

VapClient(
    api_key: str,           # Your VAP API key
    base_url: str = "...",  # API base URL (optional)
    timeout: float = 300.0  # Request timeout in seconds
)

Methods

Method Description
execute(preset, **params) Execute a media generation preset
get_execution(id) Get execution status and result
get_account() Get account balance and info
list_presets() List available presets
estimate_cost(preset) Estimate cost before execution

VapResult

result.execution_id   # Unique execution ID
result.status         # pending, processing, completed, failed
result.cost           # Actual cost charged
result.video_url      # First video output URL
result.audio_url      # First audio output URL
result.image_url      # First image output URL
result.outputs        # List of all outputs
result.is_completed   # Check if completed

🔑 Getting an API Key

  1. Visit vap.studio
  2. Create an account
  3. Add funds to your balance
  4. Generate an API key

📚 Documentation

Full documentation available at docs.vap.studio

🤝 Support

📄 License

MIT License - see LICENSE for details.


VAP - Give your Agent a Studio 🎬

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

vap_sdk-0.1.0.tar.gz (10.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

vap_sdk-0.1.0-py3-none-any.whl (8.8 kB view details)

Uploaded Python 3

File details

Details for the file vap_sdk-0.1.0.tar.gz.

File metadata

  • Download URL: vap_sdk-0.1.0.tar.gz
  • Upload date:
  • Size: 10.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for vap_sdk-0.1.0.tar.gz
Algorithm Hash digest
SHA256 e681d24abc0b6290afed046f3b69e8b1f0d45f86ef2112fb0bf7ed001a4a6406
MD5 848ad5461344ebb2749698c59e0ee8c1
BLAKE2b-256 80ced102e06ab03d3c739fd9283ae18de38482dd2aa9427a003786eb7ca366f0

See more details on using hashes here.

File details

Details for the file vap_sdk-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: vap_sdk-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 8.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for vap_sdk-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 22f4caa61a69c56b804e109950dfb8c38f708df57601ce0b2545b69097132ec9
MD5 b1e97dc20c52b2eb2db18367bb05319c
BLAKE2b-256 47904704b598f6d2198a4998eb87596de945b20e54e6b2c99225e20d60d701f9

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page