fleet-memory/hindsight-clients/python
Nicolò Boschi 446fd841a8 Release v0.0.9
- Update version to 0.0.9 in all components
- Python packages: hindsight-api, hindsight-dev, hindsight-dev/benchmarks
- Python client: hindsight-clients/python
- TypeScript client: hindsight-clients/typescript
- Rust CLI: hindsight-cli
- Control Plane: hindsight-control-plane
- Helm chart
2025-12-03 13:31:58 +01:00
..
.openapi-generator control plane and api issues 2025-12-02 18:28:57 +01:00
hindsight_client rename to new names 2025-11-27 16:22:16 +01:00
hindsight_client_api control plane and api issues 2025-12-02 18:28:57 +01:00
tests rename to hindsight (#2) 2025-11-25 19:28:26 +01:00
.openapi-generator-ignore rename to hindsight (#2) 2025-11-25 19:28:26 +01:00
openapi-generator-config.yaml rename to hindsight (#2) 2025-11-25 19:28:26 +01:00
pyproject.toml Release v0.0.9 2025-12-03 13:31:58 +01:00
README.md fix release 2025-12-03 13:31:49 +01:00

Hindsight Python Client

Python client library for the Hindsight API.

Installation

pip install hindsight-client

Usage

from hindsight_client import Hindsight

client = Hindsight(base_url="http://localhost:8888")

# Retain information
client.retain(
    bank_id="my-bank",
    content="Alice works at Google in Mountain View."
)

# Recall memories
results = client.recall(
    bank_id="my-bank",
    query="Where does Alice work?"
)

# Reflect and get an opinion
response = client.reflect(
    bank_id="my-bank",
    query="What do you think about Alice's career?"
)

Documentation

For full documentation, visit hindsight.dev.