Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SIMOSphere AI API Examples

Code examples for the SIMOSphere AI platform -- European AI orchestration with GDPR compliance.

npm License: MIT

English | Deutsch


English

Overview

Production-ready code examples for the SIMOSphere AI platform. Each example demonstrates a specific integration pattern using the official @simosphere/sdk.

Built by SIMO GmbH. EU-hosted, GDPR-compliant inference.

Quick Start

npm install @simosphere/sdk
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 quarterly report' }],
});
console.log(response.choices[0].message.content);

Examples

Example Description
Chat Completions OpenAI-compatible chat API
Streaming Server-sent events streaming
Function Calling Tool use with typed schemas
Multi-Model Routing Route to Mistral, OpenAI, or Anthropic
PII Redaction Automatic PII removal before model calls

Resources


Deutsch

Ueberblick

Produktionsreife Codebeispiele fuer die SIMOSphere AI-Plattform. Jedes Beispiel veranschaulicht ein konkretes Integrationsmuster mit dem offiziellen @simosphere/sdk.

Entwickelt von SIMO GmbH. EU-Hosting, DSGVO-konform.

Schnelleinstieg

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

const client = new SIMOSphereClient({
  apiKey: process.env.SIMOSPHERE_API_KEY!,
});

const response = await client.chat({
  messages: [{ role: 'user', content: 'Fasse diesen Quartalsbericht zusammen' }],
});
console.log(response.choices[0].message.content);

Beispiele

Beispiel Beschreibung
Chat Completions OpenAI-kompatible Chat-API
Streaming Server-Sent-Events-Streaming
Function Calling Tool-Nutzung mit typisierten Schemas
Multi-Model Routing Routing zu Mistral, OpenAI oder Anthropic
PII Redaction Automatische PII-Entfernung vor Modellaufrufen

Ressourcen


License / Lizenz

MIT -- Engineered at SIMO GmbH · Aschaffenburg, Germany

About

SIMOSphere AI API examples — chat completions, embeddings, function calling. TypeScript, Python, cURL.

Topics

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Used by

Contributors