Skip to content

Cloud runtime helpers

@tekmemo/cloud-client can create runtime objects used by CLI, MCP, and AI SDK helpers.

ts
import { createCloudTekMemoRuntime, createTekMemoCloudClient } from "@tekmemo/cloud-client";

const client = createTekMemoCloudClient({
  baseUrl: process.env.TEKMEMO_CLOUD_URL!,
  apiKey: process.env.TEKMEMO_API_KEY!,
});

const runtime = createCloudTekMemoRuntime({
  client,
  projectId: "proj_123",
});

await runtime.recall({ query: "billing" });

Hybrid runtimes combine local and cloud runtimes with read/write policies.

Released under the MIT License.