Documentation
Learn how to use EdgeMind in your projects
Getting Started
Quick start guide for using EdgeMind
API Reference
Complete API documentation
SDK Integration
Integrate EdgeMind into your app
Model Specifications
Technical details about each model
Quick Start
// Chat with EdgeMind
const response = await fetch('/api/chat', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
messages: [{ role: 'user', content: 'Hello!' }]
})
});
const { content } = await response.json();
console.log(content);