From 1c23dd4c9860c8134ce11541e87eb47655c38c56 Mon Sep 17 00:00:00 2001 From: cryptam <102138190+CryptAm@users.noreply.github.com> Date: Wed, 24 Jun 2026 18:57:02 +0300 Subject: [PATCH] Fix: Correct OpenRouter SDK import --- client-sdks/typescript/overview.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client-sdks/typescript/overview.mdx b/client-sdks/typescript/overview.mdx index b48cbe0..d2f9608 100644 --- a/client-sdks/typescript/overview.mdx +++ b/client-sdks/typescript/overview.mdx @@ -34,7 +34,7 @@ The OpenRouter TypeScript SDK is a type-safe toolkit for building AI application Integrating AI models into applications involves handling different provider APIs, managing model-specific requirements, and avoiding common implementation mistakes. The OpenRouter SDK standardizes these integrations and protects you from footguns. ```typescript lines -import OpenRouter from '@openrouter/sdk'; +import { OpenRouter } from '@openrouter/sdk'; const client = new OpenRouter({ apiKey: process.env.OPENROUTER_API_KEY @@ -125,4 +125,4 @@ const response = await client.chat.send({ }); console.log(response.choices[0].message.content); -``` \ No newline at end of file +```