Documentation

Learn how to use EdgeMind in your projects

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);