Documentation

Everything you need to get started with INTENOVA platforms. From quick starts to API references.

Quick Start

Get Running in Minutes

Nova X™ - Python SDK

# Install the SDK
pip install orchestra-ai

# Initialize and run your first agent
from orchestra import Agent, Task

agent = Agent("my-agent")
result = agent.execute(Task("Send email to team"))
print(result.status) # "completed"
Coming Soon

Nova X™ - TypeScript SDK

// Install the SDK
npm install @intenova/orchestra-ai

// Initialize and run your first agent
import { Agent, Task } from '@intenova/orchestra-ai';

const agent = new Agent('my-agent');
const result = await agent.execute(new Task('Send email to team'));
console.log(result.status); // "completed"
Coming Soon
Resources

Learn More

Tutorials

Step-by-step guides for common use cases and patterns.

Examples

Ready-to-use code examples for various scenarios.

FAQ

Answers to frequently asked questions.

Need Help?

Our support team is ready to help you get started and answer any questions.