npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@odin-ai/sdk

v1.0.0

Published

TypeScript SDK for Odin AI - Chat, Workflows, Smart Tables, and Voice

Readme

Odin AI SDK

A TypeScript SDK for interacting with the Odin AI platform, including Chat, Smart Tables, Voice, and Workflows.

Installation

npm install @odin-ai/sdk

Available SDKs

| SDK | Description | |-----|-------------| | ChatSDK | Chat conversations with AI agents | | SmartTablesSDK | Structured data tables with AI enrichment | | VoiceSDK | Voice conversations with AI | | WorkflowSDK | Execute and monitor workflows with real-time updates |

Authentication

All SDKs support two authentication methods:

1. Access Token Authentication (Web App)

For web applications that already have user sessions:

import { ChatSDK } from '@odin-ai/sdk';

const chatSDK = new ChatSDK({
  baseUrl: 'https://api.example.com/',
  projectId: 'your-project-id',
  accessToken: 'your-access-token', // From user session
});

2. API Key Authentication (External SDK)

For external applications and server-to-server communication:

import { ChatSDK } from '@odin-ai/sdk';

const chatSDK = new ChatSDK({
  baseUrl: 'https://api.example.com/',
  projectId: 'your-project-id',
  apiKey: 'your-api-key',
  apiSecret: 'your-api-secret',
});

Usage Examples

Creating a Chat

const chat = await chatSDK.createChat('My Chat', ['document-key-1']);
console.log('Created chat:', chat.chat_id);

Sending a Message

const response = await chatSDK.sendMessage('Hello!', {
  chatId: 'chat-id',
  agentType: 'chat_agent',
});
console.log('Response:', response);

Streaming Messages

await chatSDK.sendMessageStream('Tell me about...', {
  chatId: 'chat-id',
  onChunk: (chunk) => console.log('Chunk:', chunk),
  onComplete: (message) => console.log('Complete:', message),
  onError: (error) => console.error('Error:', error),
});

Listing Chats

const chats = await chatSDK.listChats();
console.log('Chats:', chats.chats);

Deleting a Chat

await chatSDK.deleteChat('chat-id');
console.log('Chat deleted');

Error Handling

The SDK throws errors for failed requests. Always wrap SDK calls in try-catch blocks:

try {
  const chat = await chatSDK.createChat('My Chat');
  // Handle success
} catch (error) {
  console.error('Failed to create chat:', error.message);
  // Handle error
}

TypeScript Support

The SDK is written in TypeScript and includes full type definitions for all methods and responses.

Features

  • Authentication: X-API-KEY and X-API-SECRET headers
  • Chat Management: Create, list, get, delete, rename chats
  • Message Sending: Both simple and streaming responses
  • File Support: Image and document uploads
  • Pagination: Cursor-based pagination for chat listing
  • TypeScript: Full type safety and IntelliSense support
  • Error Handling: Comprehensive error handling
  • Real-time: Streaming message responses
  • Feedback: User feedback on AI responses

API Reference

Configuration

interface ChatSDKConfig {
  apiKey: string;        // X-API-KEY header
  apiSecret: string;     // X-API-SECRET header  
  baseUrl: string;       // API base URL
  projectId: string;     // Project ID for all operations
}

Chat Management

createChat(name?, documentKeys?)

Creates a new chat in the project.

const chat = await chatSDK.createChat('My Chat', ['doc1', 'doc2']);

listChats(cursor?, limit?)

Lists chats with pagination support.

const { chats, has_more, next_cursor } = await chatSDK.listChats();

getChatHistory(chatId)

Gets a specific chat with its message history.

const chatHistory = await chatSDK.getChatHistory('chat-id');

deleteChat(chatId)

Deletes a chat and all its messages.

await chatSDK.deleteChat('chat-id');

updateChatName(chatId, newName)

Updates the name of an existing chat.

await chatSDK.updateChatName('chat-id', 'New Chat Name');

Message Operations

sendMessage(message, options?)

Sends a message and returns the response.

const response = await chatSDK.sendMessage('Hello!', {
  chatId: 'chat-id',
  agentType: 'chat_agent',
  documentKeys: ['doc1'],
});

sendMessageStream(message, options?)

Sends a message with streaming response support.

await chatSDK.sendMessageStream('Tell me about AI', {
  chatId: 'chat-id',
  onChunk: (chunk) => {
    // Handle streaming text chunks
    console.log('Chunk:', chunk);
  },
  onMessageObject: (obj) => {
    // Handle structured message objects
    console.log('Message object:', obj);
  },
  onComplete: (message) => {
    // Handle completion
    console.log('Complete:', message);
  },
  onError: (error) => {
    // Handle errors
    console.error('Error:', error);
  },
});

Feedback

sendFeedback(messageId, chatId, feedback)

Sends user feedback (thumbs up/down) for a message.

await chatSDK.sendFeedback('message-id', 'chat-id', true); // thumbs up
await chatSDK.sendFeedback('message-id', 'chat-id', false); // thumbs down

Advanced Usage

File Uploads

const fileInput = document.getElementById('file') as HTMLInputElement;
const files = Array.from(fileInput.files || []);

await chatSDK.sendMessageStream('Analyze this image', {
  chatId: 'chat-id',
  images: files,
  onChunk: (chunk) => console.log(chunk),
});

Custom Agents

await chatSDK.sendMessage('Help me write code', {
  chatId: 'chat-id',
  agentType: 'chat_agent',
  agentId: 'custom-agent-id',
  modelName: 'gpt-4o',
});

Knowledge Base Integration

await chatSDK.sendMessage('What does our documentation say about X?', {
  chatId: 'chat-id',
  documentKeys: ['doc1', 'doc2', 'doc3'],
  useKnowledgebase: true,
});

Metadata

await chatSDK.sendMessage('Hello', {
  chatId: 'chat-id',
  metadata: {
    userId: 'user-123',
    sessionId: 'session-456',
    customField: 'value',
  },
});

Examples

See the /examples directory for complete working examples:

  • basic-chat.ts - Simple chat implementation
  • streaming-chat.ts - Real-time streaming chat
  • file-upload.ts - Chat with file uploads
  • react-integration.tsx - React component integration
  • workflow-basic.ts - Basic workflow listing and execution
  • workflow-streaming.ts - Real-time streaming workflow execution
  • workflow-react-embed.tsx - React component for embedding workflows

WorkflowSDK

Execute and monitor workflows from external applications with real-time streaming updates.

Quick Start

import { WorkflowSDK } from '@odin-ai/sdk';

const sdk = new WorkflowSDK({
  baseUrl: 'https://ecs-api.getodin.ai/',
  projectId: 'your-project-id',
  accessToken: 'your-access-token', // From Firebase, Supabase, or your auth
});

// List workflows
const { tools: workflows } = await sdk.listWorkflows();

// Execute with streaming updates
const session = await sdk.executeWorkflowStream('workflow-id', {
  inputs: { name: 'John' },
  onNodeStarted: (event) => console.log(`Starting ${event.node_id}`),
  onNodeCompleted: (event) => console.log(`Completed ${event.node_id}`),
  onExecutionCompleted: (event) => console.log('Done!', event.result),
});

Key Features

  • List & retrieve workflows - Get available workflows in your project
  • Execute workflows - Run workflows with custom input values
  • Real-time streaming - SSE-based updates for node-by-node progress
  • Execution history - Track past executions and results
  • File upload support - Execute workflows with file inputs
  • Full TypeScript support - Complete type definitions

See WorkflowSDK Documentation for full API reference.


Workflow Embed

Embed workflow visualization directly in your web application with a lightweight bundle (335 KB / 106 KB gzipped).

Installation

Include the embed script and CSS:

<link rel="stylesheet" href="https://cdn.getodin.ai/embed/odin-workflow.css">
<script src="https://cdn.getodin.ai/embed/odin-workflow.js"></script>

Or build from source:

cd ai-content-creator
npx vite build --config vite.embed.config.ts
# Output: dist/embed/odin-workflow.js, dist/embed/odin-workflow.css

Usage

Method 1: JavaScript API

OdinWorkflow.mount(document.getElementById('workflow-container'), {
  apiUrl: 'https://ecs-api.getodin.ai/',
  projectId: 'your-project-id',
  workflowId: 'your-workflow-id',
  accessToken: 'your-access-token',
  theme: 'odin', // 'odin' | 'aai' | 'leah' | 'emerald' | 'sunset'
  onExecutionStart: (executionId) => console.log('Started:', executionId),
  onExecutionComplete: (result) => console.log('Complete:', result),
  onError: (error) => console.error('Error:', error),
});

Method 2: Web Component

<odin-workflow
  api-url="https://ecs-api.getodin.ai/"
  project-id="your-project-id"
  workflow-id="your-workflow-id"
  access-token="your-access-token"
  theme="odin"
></odin-workflow>

<script>
  document.querySelector('odin-workflow').addEventListener('execution-complete', (e) => {
    console.log('Workflow completed:', e.detail.result);
  });
</script>

Authentication Examples

With Firebase Auth

import { initializeApp } from 'firebase/app';
import { getAuth, signInWithEmailAndPassword } from 'firebase/auth';

const app = initializeApp({ apiKey: '...', authDomain: '...' });
const auth = getAuth(app);

const userCredential = await signInWithEmailAndPassword(auth, email, password);
const accessToken = await userCredential.user.getIdToken();

OdinWorkflow.mount(container, {
  apiUrl: 'https://ecs-api.getodin.ai/',
  projectId: 'your-project-id',
  workflowId: 'your-workflow-id',
  accessToken: accessToken,
});

With Supabase Auth

import { createClient } from '@supabase/supabase-js';

const supabase = createClient('https://your-project.supabase.co', 'your-anon-key');

const { data: { session } } = await supabase.auth.signInWithPassword({
  email: '[email protected]',
  password: 'password',
});

OdinWorkflow.mount(container, {
  apiUrl: 'https://ecs-api.getodin.ai/',
  projectId: 'your-project-id',
  workflowId: 'your-workflow-id',
  accessToken: session.access_token,
});

Available Themes

| Theme | Primary Color | |-------|---------------| | odin | Blue (#4485FF) | | aai | Orange (#FF5A10) | | leah | Purple (#A855F7) | | emerald | Green (#10B981) | | sunset | Amber (#F59E0B) |

Props Reference

| Prop | Type | Required | Description | |------|------|----------|-------------| | apiUrl | string | ✅ | API base URL | | projectId | string | ✅ | Your project ID | | workflowId | string | ✅ | Workflow to display | | accessToken | string | ✅ | Auth token | | theme | string | ❌ | Theme name (default: 'odin') | | height | string/number | ❌ | Container height | | width | string/number | ❌ | Container width | | darkMode | boolean | ❌ | Enable dark mode | | hideHeader | boolean | ❌ | Hide workflow header | | hideInputs | boolean | ❌ | Hide input fields | | showControls | boolean | ❌ | Show zoom controls | | initialInputs | object | ❌ | Pre-fill input values | | onExecutionStart | function | ❌ | Callback when execution starts | | onExecutionComplete | function | ❌ | Callback when execution completes | | onError | function | ❌ | Callback on error |

See examples/workflow-embed-supabase.html for a complete Supabase example.


Contributing

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add some amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

License

This project is licensed under the MIT License - see the LICENSE file for details.