Start using Circlemind to store and retrieve memories within minutes.

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, you can request one by emailing us at support@circlemind.co

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 (Python SDK)

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)

Step 4: Usage (REST APIs)

The REST APIs are supported but not generally available. If you would like to use the REST APIs in your project, you can submit a request to the team at support@circlemind.co

Circlemind is ready to handle memory and reasoning requests.