Comprehensive guides, API references, and examples to help you create powerful tools and integrations for Nina.
// Coming soon: Full TypeScript SDK
import { NinaTool, ToolSchema } from '@nina-ai/toolkit';
export const myFirstTool: NinaTool = {
  name: 'hello_world',
  description: 'A simple greeting tool',
  schema: ToolSchema.object({
    name: ToolSchema.string('Person to greet')
  }),
  
  execute: async ({ name }) => {
    return `Hello, ${name}! Welcome to Nina.`;
  }
};
// Comprehensive guides and examples coming soon...Get notified when the full developer documentation and SDK are ready. Plus exclusive access to beta tooling.