--- sidebar_position: 0 --- # Quick Start Get up and running with Hindsight in 60 seconds. import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; import CodeSnippet from '@site/src/components/CodeSnippet'; import {ClientsGrid, IntegrationsGrid} from '@site/src/components/SupportedGrids'; {/* Import raw source files */} import quickstartPy from '!!raw-loader!@site/examples/api/quickstart.py'; import quickstartMjs from '!!raw-loader!@site/examples/api/quickstart.mjs'; import quickstartSh from '!!raw-loader!@site/examples/api/quickstart.sh'; ## Clients ## Start the API Server ```bash pip install hindsight-api export OPENAI_API_KEY=sk-xxx export HINDSIGHT_API_LLM_API_KEY=$OPENAI_API_KEY hindsight-api ``` API available at [http://localhost:8888](http://localhost:8888/docs) ```bash export OPENAI_API_KEY=sk-xxx docker run --rm -it --pull always -p 8888:8888 -p 9999:9999 \ -e HINDSIGHT_API_LLM_API_KEY=$OPENAI_API_KEY \ -v $HOME/.hindsight-docker:/home/hindsight/.pg0 \ ghcr.io/vectorize-io/hindsight:latest ``` - **API**: http://localhost:8888 - **Control Plane** (Web UI): http://localhost:9999 :::tip LLM Provider Hindsight requires an LLM with structured output support. Recommended: **Groq** with `gpt-oss-20b` for fast, cost-effective inference. See [LLM Providers](/developer/models#llm) for more details. ::: --- ## Use the Client ```bash pip install hindsight-client ``` ```bash npm install @vectorize-io/hindsight-client ``` ```bash curl -fsSL https://hindsight.vectorize.io/get-cli | bash ``` --- ## What's Happening | Operation | What it does | |-----------|--------------| | **Retain** | Content is processed, facts are extracted, entities are identified and linked in a knowledge graph | | **Recall** | Four search strategies (semantic, keyword, graph, temporal) run in parallel to find relevant memories | | **Reflect** | Retrieved memories are used to generate a disposition-aware response | --- ## Integrations ## Next Steps - [**Retain**](./retain) — Advanced options for storing memories - [**Recall**](./recall) — Search and retrieval strategies - [**Reflect**](./reflect) — Disposition-aware reasoning - [**Memory Banks**](./memory-banks) — Configure disposition and mission - [**Server Deployment**](/developer/installation) — Docker Compose, Helm, and production setup