Skip to main content
Hexel Studio provides the infrastructure to build AI applications with persistent memory and searchable knowledge.

What is Hexel Studio?

  • Knowledge Stores - Searchable document collections for RAG
  • Memory Stores - Persistent memory for AI agents and users
  • Data Sources - Connectors to sync external data

Getting Started

Quick Example

from hx import Client

client = Client()

# Search knowledge
results = client.knowledge.search(
    store_id="ks-your-store-id",
    query="How do I reset my password?",
    top_k=5
)

# Store memory
client.memory.add(
    store_id="ms-your-store-id",
    user_id="user_123",
    messages=[{"role": "user", "content": "My name is Alex."}]
)

# Search memory
memories = client.memory.search(
    store_id="ms-your-store-id",
    query="What is my name?",
    user_id="user_123"
)

Key Concepts

ConceptDescription
OrganizationTop-level container for your company
WorkspaceProject container within an org
EnvironmentDev/staging/prod isolation
Knowledge StoreSearchable document collection
Memory StorePersistent user/agent memory