LLMs
LLM Integration
Endpoint Overview
# Base URL: https://api.openmind.com/
POST /api/core/{provider}/chat/completions # Single agent
DELETE /api/core/agent/memory # Multi agent memory wipeLLM Modes
Mode
Description
Performance
Single LLM Integration
response, err := client.ChatCompletions(ctx, &ChatRequest{
Model: config.Model,
Messages: messages,
ResponseFormat: outputModel,
Timeout: config.Timeout,
})
parsedResponse := outputModel.Validate(response.Choices[0].Message.Content)
return parsedResponseDual LLM support
Parallel LLM
Local LLMs
Ollama Integration
Agent Architecture
Main API Endpoint
Supported Models
Examples
A Smart Dog
Last updated
Was this helpful?