Start using Circlemind to store and retrieve memories within minutes.

Python SDK

Step 1: Install the Python SDK

pip install circlemind

Step 2: Authentication

Circlemind requires an API key. If you don’t have an API key, visit app.circlemind.co to register and obtain one.

Once you have an API key, export it as an environment variable in your terminal.

export CIRCLEMIND_API_KEY="your_api_key_here"

Step 3: Usage

from circlemind import Circlemind

# Initialize the client
client = Circlemind()

# Add a memory
client.add("Sophie enjoys hiking in the Italian Alps.")

# Query memories
res = client.query("Where does Sophie like to hike?")
print(res.response)

Rest APIs

Step 1: Authentication

Circlemind requires an API key. If you don’t have an API key, visit app.circlemind.co to register and obtain one. Refer to the documentation for an introduction and to the full API reference for a complete list of available entry points.

Circlemind is ready to handle memory and reasoning requests.