Installation
Quick Start
What’s Next?
- Configuration - Learn how to configure and instantiate the SDK
- Send Method - Complete guide to the
send()method - Stream Method - Learn how to stream responses
- Tools - Detailed guide to function calling
Integrate the TypeScript SDK in your application.
npm install edgee
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."
send() methodWas this page helpful?