SkillAgentSearch skills...

Value

⚡ "Value" - https://value.valmi.io . Valmi Value is Outcome-based billing and payments infrastructure for AI agents. Meter usage, configure flexible pricing, and track costs & profitability - so you can focus on building great AI products.

Install / Use

/learn @valmi-io/Value
About this skill

Quality Score

0/100

Category

Operations

Supported Platforms

Universal

README

<p align="center"> <a href="https://www.valmi.io"><img src="images/logo.png" alt="Value Platform Logo" width="200"></a> </p> <p align="center"> <a href="https://www.valmi.io"><img src="https://img.shields.io/badge/☁_Cloud-ec4800?style=for-the-badge" alt="Cloud"></a> <a href="https://www.valmi.io/docs/introduction"><img src="https://img.shields.io/badge/📚_Docs-6366f1?style=for-the-badge" alt="Docs"></a> <a href="https://www.valmi.io/blog/"><img src="https://img.shields.io/badge/📝_Blog-ec4899?style=for-the-badge" alt="Blog"></a> <a href="https://www.valmi.io"><img src="https://img.shields.io/badge/📝_Website-ec4900?style=for-the-badge" alt="Website"></a> <a href="https://github.com/valmi-io/value"><img src="https://img.shields.io/github/stars/valmi-io/value?style=for-the-badge" alt="GitHub stars"></a> <a href="https://hub.docker.com/repositories/valmiinfra"><img src="https://img.shields.io/badge/🐳_Docker-0ea5e9?style=for-the-badge" alt="Docker Hub"></a>

Consider giving us a Github star! Your support helps us add new, exciting features.

</p> <div align="center"> </div>

Value Platform

Outcome-based billing and payments infrastructure for AI agents. Meter usage, configure flexible pricing, and track profitability, so you can focus on building great AI products.

Overview

Value Platform handles metering, pricing, billing, and revenue tracking for AI agents:

  • AI-Native Metering - Track tokens, LLM calls, API usage, and outcomes with minimal code
  • Flexible Pricing - Fixed-Fee, Usage-based, tiered, per-action, per-outcome, or any combination
  • Cost Attribution - Automatically allocate costs across LLM providers, APIs, and compute
  • Revenue Insights - Real-time profitability tracking per agent and per customer

Start Tracking Your AI Agents

Choose your deployment option, and start metering in minutes:


☁️ Option 1: Use Value Cloud

The fastest way to get started - no infrastructure to manage.

Step 1: Sign up at 👉 value.valmi.io

Step 2: Install the SDK and start tracking:

pip install value-python
from value import initialize_sync

client = initialize_sync(agent_secret="your_agent_secret")

with client.action_context(user_id="user_123", anonymous_id="anon_456") as ctx:
    ctx.send(
        action_name="document_processing",
        **{"value.action.description": "Processing invoice", "document_type": "invoice"},
    )

That's it! Your agent data flows to Value Cloud automatically.


🏠 Option 2: Self-Hosted Deployment

Run Value Platform on your own infrastructure for complete control.

Step 1: Start the services

# Prerequisites: Docker & Docker Compose, Make

# Configure environment
cp value-engine/.env.example value-engine/.env
cp value-control-plane-backend/.env.example value-control-plane-backend/.env

# Start all services
make value-up

Step 2: Install the SDK and point to your local instance:

pip install value-python
# Set environment variables
export VALUE_BACKEND_URL=http://localhost:8200
export VALUE_OTEL_ENDPOINT=http://localhost:4317
from value import initialize_sync

client = initialize_sync(agent_secret="your_agent_secret")

with client.action_context(user_id="user_123", anonymous_id="anon_456") as ctx:
    ctx.send(action_name="document_processing", **{"document_type": "invoice"})

Step 3: Access your dashboard

| Service | URL | | ----------------- | -------------------------- | | Value UI | http://localhost:3000 | | Control Plane API | http://localhost:8200/docs | | Engine API | http://localhost:8000/docs | | Celery Flower | http://localhost:5555 |

# Stop services
make value-down

# Clean all data volumes
make value-clean-volumes

📖 See sdks/ for detailed SDK documentation.

Architecture

┌─────────────────┐                              ┌─────────────────┐
│   Value SDK     │─────────────────────────────▶│  Value Engine   │
│  (Python/Node)  │                              │  (Processing)   │
└─────────────────┘                              └────────┬────────┘
                                                          │
                                                          ▼
┌─────────────────┐     ┌──────────────────┐     ┌─────────────────┐
│    Value UI     │◀───▶│  Control Plane   │◀───▶│   Data Store    │
│   (Dashboard)   │     │      (API)       │     │                 │
└─────────────────┘     └──────────────────┘     └─────────────────┘

Screenshots

Dashboard

Dashboard

Agents Live Data

Agents Live Data

P&L Analysis

P&L Analysis

Pricing Simulation

Pricing Simulation

Services

| Service | Description | Port | | ----------------- | ------------------------------------------------ | ---- | | Value UI | Web dashboard for monitoring and management | 3000 | | Control Plane | REST API for configuration and data management | 8200 | | Value Engine | Data processing pipelines and task orchestration | 8000 |

Examples

| Example | Description | | ------------------------------------------------------------------------ | ---------------------- | | basic_sync.py | Synchronous SDK usage | | basic_async.py | Async SDK usage | | gemini_instrumentation.py | Auto-instrument Gemini | | pipeline_simulation.py | Full AI pipeline demo |

See examples/ for more integration examples.

License

This repository contains components under different licenses:

  • MIT: sdks/, examples/, seed-dummy-data/
  • ELv2: value-control-plane-backend/, value-engine/, value-ui/

See LICENSE for details.

View on GitHub
GitHub Stars169
CategoryOperations
Updated25d ago
Forks15

Languages

Python

Security Score

85/100

Audited on Mar 4, 2026

No findings