Usage and Cost Management
Pydantic2 provides comprehensive usage tracking and cost management capabilities through two main components:
Overview
- Model Pricing
- Model price management
- Budget control
- Cost calculation
-
Price updates
- Request lifecycle
- Usage monitoring
- Performance tracking
- Usage analysis
Quick Links
Basic Example
from pydantic2 import PydanticAIClient
# Initialize client with usage tracking
client = PydanticAIClient(
model_name="openai/gpt-4",
client_id="my_app",
user_id="user123",
max_budget=10.0 # Optional budget limit
)
# Make API calls...
response = client.generate(...)
# Get usage statistics
stats = client.get_usage_stats()
print(f"Total cost: ${stats['total_cost']:.4f}")
Detailed Documentation
See Model Pricing and Request Tracking for detailed information about each component.