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

Quick Start

Get up and running in minutes

Installation
npm
Install the RunAs AI SDK with your preferred package manager
npm install @runas/ai-sdk
yarn add @runas/ai-sdk
First 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.