from mka1 import SDK
with SDK(
bearer_auth="<YOUR_BEARER_TOKEN_HERE>",
) as sdk:
res = sdk.llm.memory_stores.create(name="Bug Reports", description="Persistent bug reports seen by the triage agent.", instructions="Store every confirmed bug report here using one markdown file per product area.", visibility="workspace")
# Handle response
print(res){
"id": "mem_aa87e2b1112a455b8deabed784372198",
"object": "memory_store",
"name": "Bug Reports",
"description": "Persistent bug reports seen by the triage agent.",
"instructions": "Store every confirmed bug report here using one markdown file per product area.",
"visibility": "workspace",
"metadata": {},
"created_at": 1770000000,
"updated_at": 1770000000,
"deleted_at": null
}Creates a memory store for persistent agent notes. Stores are private by default and can be shared across the workspace.
from mka1 import SDK
with SDK(
bearer_auth="<YOUR_BEARER_TOKEN_HERE>",
) as sdk:
res = sdk.llm.memory_stores.create(name="Bug Reports", description="Persistent bug reports seen by the triage agent.", instructions="Store every confirmed bug report here using one markdown file per product area.", visibility="workspace")
# Handle response
print(res){
"id": "mem_aa87e2b1112a455b8deabed784372198",
"object": "memory_store",
"name": "Bug Reports",
"description": "Persistent bug reports seen by the triage agent.",
"instructions": "Store every confirmed bug report here using one markdown file per product area.",
"visibility": "workspace",
"metadata": {},
"created_at": 1770000000,
"updated_at": 1770000000,
"deleted_at": null
}Documentation Index
Fetch the complete documentation index at: https://docs.mka1.com/llms.txt
Use this file to discover all available pages before exploring further.
Gateway auth: send Authorization: Bearer <mka1-api-key>. For multi-user server-side integrations, you can also send X-On-Behalf-Of: <external-user-id>.
Optional external end-user identifier forwarded by the API gateway.
OK
private, workspace Show child attributes
Was this page helpful?