Observability and runtime governance for AI agent pipelines
Project description
Vela
See inside your AI pipelines. Know what's slow, what's failing, and what's costing you money.
Install
# Create and activate a virtual environment
python3 -m venv venv
source venv/bin/activate
# Install vela-sdk
pip3 install vela-sdk
On Python 3.11+, virtual environments are required due to system protection. On Windows, use venv\Scripts\activate instead.
Get your API key
https://dashboard-one-tau-97.vercel.app/keys
Instrument your pipeline
import vela
vela.init(api_key='your-key-here')
@vela.trace
def researcher(topic):
# your existing code — unchanged
...
@vela.trace
def writer(research):
# your existing code — unchanged
...
vela.new_session()
result = researcher('your topic')
output = writer(result)
vela.end_session()
See your traces
https://dashboard-one-tau-97.vercel.app?key=your-key-here
That's it. No other changes to your code.
Optional: label your sessions
vela.new_session(label='production run')
Optional: track model and cost
@vela.trace(name='researcher', model='gpt-4o')
def researcher(topic):
...
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file vela_sdk-0.1.1.tar.gz.
File metadata
- Download URL: vela_sdk-0.1.1.tar.gz
- Upload date:
- Size: 8.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
206ed9254f2791443a295658c0cce52472d4770639f2bb37a7a29e3bd77c775e
|
|
| MD5 |
ec1af30697f6dd4e92d75e4a4ffd7279
|
|
| BLAKE2b-256 |
618bcd276525a37f015e78bd92a8d4cdf7a7d406dce9eb6f01941dc18021e69e
|
File details
Details for the file vela_sdk-0.1.1-py3-none-any.whl.
File metadata
- Download URL: vela_sdk-0.1.1-py3-none-any.whl
- Upload date:
- Size: 7.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f125a2553a7b9c4adaaa1417742479b0dae115919a0dfeeac2fb8f5cd70fef90
|
|
| MD5 |
e4bcd396d9cef6371fc3b16d0e002f98
|
|
| BLAKE2b-256 |
e94d80d54d2b84ad969745f0400473b42847053ab28ccf6f4c71d3a37ee57456
|