Welcome to RunAsh Docs
Documentation
Master the power of RunAsh AI. Explore guides, API references, and tools designed to speed up your workflow.
Explore Documentation
Everything you need to build with RunAsh AI
Updated
Guides
Step-by-step tutorials and best practices.
AI
AI Chat
Instant help with AI-powered support.
Interactive
API Reference
Complete docs with interactive examples.
Searchable
Knowledge Base
Repository of solutions and troubleshooting.
Multi-platform
SDK Library
Official SDKs for all major platforms.
Recipes
Cookbook
Ready-to-use code recipes and patterns.
New
Learn
Interactive paths for all skill levels.
Live
Changelog
Stay updated with the latest improvements.
Quick Start
Get up and running in minutes
Installation
npm
Install the RunAs AI SDK with your preferred package manager
npm install @runas/ai-sdkyarn add @runas/ai-sdkFirst API Call
JavaScript
Make your first API call with the RunAs AI SDK
import { RunAsAI } from '@runas/ai-sdk'
const client = new RunAsAI({
apiKey: 'your-api-key'
})
const response = await client.generate({
prompt: 'Hello, world!',
model: 'gpt-4'
})
console.log(response.text)Was this page helpful?
Your feedback helps us improve RunAsh docs.