terminal
Open-Generative-AI SDK Workbench
@ogai/sdk v2.4.0 • TypeScript & Python Tool Router
● SDK RUNTIME READY
ACTIVE TOOL ROUTERS
WebSearchTool()
READY
CodeInterpreter()
READY
MemoryVectorStore()
READY
LLM PROVIDER BENCHMARKS
OpenAI GPT-4o:
120ms
Anthropic Claude 3.5:
145ms
NVIDIA GLM-5.2:
88ms
GENERATE API KEYS
Generate New Key
SDK REPL CONSOLE & EXECUTOR
import { OgaiClient } from "@ogai/sdk"; const ogai = new OgaiClient({ apiKey: "ogai_live_sk_..." }); const response = await ogai.agent.execute({ prompt: "Analyze current market liquidity and summarize key risk metrics", tools: ["web_search", "math_eval"], model: "nvidia-glm5.2" }); console.log("Result:", response.output);