LLM Install Instructions

Downloadable instructions for AI assistants, code agents, and LLMs.

Updated 27 December 2024
llmaiinstallationcursorcopilotclaude

LLM Install Instructions

Use these instructions when installing Onairos via AI assistants (Cursor, GitHub Copilot, Claude, ChatGPT) or code agents.

📄 Download llm.txt

Copy this file to your AI assistant or paste it into your chat:

⬇️ Download llm.txt

Or view it directly: /llm.txt

What's in the file?

The llm.txt file contains complete installation instructions for:

  • Web (React/Next.js/Vue) — npm install and SDK setup
  • Mobile (React Native) — Package installation and provider setup
  • Mobile (Flutter) — pubspec.yaml and Dart initialization
  • Human API — LLM enhancement endpoints
  • API Endpoints — Quick reference table

How to Use

With Cursor / Claude / ChatGPT

  1. Download the llm.txt file above
  2. Paste the contents into your AI chat
  3. Ask the AI to help you integrate Onairos

With GitHub Copilot

  1. Add the llm.txt file to your project root
  2. Copilot will use it as context for code suggestions

As a Context File

You can also reference it directly in prompts:

Please read https://docs.onairos.uk/llm.txt and help me integrate Onairos into my React app.

Quick Start (Manual)

If you prefer manual installation, here's the essentials:

Web Installation

npm install onairos
import Onairos from 'onairos';

const onairos = new Onairos({
  apiKey: 'YOUR_API_KEY',
});

onairos.open({
  requestedData: { type: 'Personality' },
  onSuccess: (data) => console.log(data),
});

Mobile (React Native)

npm install onairos-react-native

Mobile (Flutter)

dependencies:
  onairos: ^1.0.0

For detailed guides, see: