Skip to content

Latest commit

 

History

History
44 lines (35 loc) · 1.23 KB

File metadata and controls

44 lines (35 loc) · 1.23 KB

AGENTS.md -- SIMOSphere AI

Instructions for AI coding agents working with the SIMOSphere AI platform.

API Access

SDK

  • npm: npm install @simosphere/sdk
  • Import: import { SIMOSphereClient } from '@simosphere/sdk'

MCP Server

Quick Start

import { SIMOSphereClient } from '@simosphere/sdk';

const client = new SIMOSphereClient({ apiKey: process.env.SIMOSPHERE_API_KEY! });
const response = await client.chat({
  messages: [{ role: 'user', content: 'Summarize this document' }],
});
console.log(response.choices[0].message.content);

CLI

npm install -g @simosphere/cli
export SIMOSPHERE_API_KEY="sk-..."

simosphere health              # Gateway health check
simosphere models              # List available models
simosphere chat "Hello"        # Chat completion
simosphere ask "What is X?"    # NLWeb query

Resources