fleet-memory/hindsight-clients/python/hindsight_client_api/models/budget.py
Nicolò Boschi 7c78ae2371 Release v0.4.12
- Update version to 0.4.12 in all components
- Regenerate OpenAPI spec and client SDKs
- Python packages: hindsight-api, hindsight-dev, hindsight-all, hindsight-litellm, hindsight-embed
- Python client: hindsight-clients/python
- TypeScript client: hindsight-clients/typescript
- Rust CLI: hindsight-cli
- Control Plane: hindsight-control-plane
- OpenClaw integration: hindsight-integrations/openclaw
- AI SDK integration: hindsight-integrations/ai-sdk
- Helm chart
- Sync documentation to version-0.4
2026-02-18 14:13:33 +01:00

38 lines
703 B
Python

# coding: utf-8
"""
Hindsight HTTP API
HTTP API for Hindsight
The version of the OpenAPI document: 0.4.12
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
from __future__ import annotations
import json
from enum import Enum
from typing_extensions import Self
class Budget(str, Enum):
"""
Budget levels for recall/reflect operations.
"""
"""
allowed enum values
"""
LOW = 'low'
MID = 'mid'
HIGH = 'high'
@classmethod
def from_json(cls, json_str: str) -> Self:
"""Create an instance of Budget from a JSON string"""
return cls(json.loads(json_str))