Skip to main content
The Edgee TypeScript SDK provides a lightweight, type-safe interface to interact with the Edgee AI Gateway. It supports OpenAI-compatible chat completions, function calling, and streaming.

Installation

npm install edgee

Quick Start

import Edgee from 'edgee';

// Create client
const edgee = new Edgee("your-api-key");

// Send a simple request
const response = await edgee.send({
  model: 'gpt-4o',
  input: 'What is the capital of France?',
});

// Access the response
console.log(response.text);
// "The capital of France is Paris."

What’s Next?