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 +```