UNPKG

makima-ts

Version:

Typescript SDK for Makima.

21 lines (20 loc) 538 B
import { AgentAPI } from "./agent/api"; import { KnowledgeAPI } from "./knowledge/api"; import { ThreadAPI } from "./thread/api"; import { ToolAPI } from "./tool/api"; /** * Makima SDK for interacting with the Makima API. */ declare class Makima { baseUrl: string; agent: AgentAPI; thread: ThreadAPI; tool: ToolAPI; knowledgeBase: KnowledgeAPI; /** * Creates an instance of the Makima SDK. * @param baseUrl The base URL of the Makima API. */ constructor(baseUrl: string); } export { Makima };