AI Agent Deployment

API Endpoint

Deploy your agent as a REST API for integration with any application.

Chat Widget

Embed a chat interface for your agent on any website or platform.

Local Package

Download your agent as a Docker container or executable package.

Active Deployments

Agent Type Status Created Actions
Customer Support Bot
v1.2.0
API Running 2 hours ago
Code Assistant
v2.1.3
Chat Widget Running 1 day ago
Document Analyzer
v0.9.5
Local Package Pending 5 minutes ago

API Documentation

Base URL

https://api.lmstudios.ai/v1/agents/{agent_id}

Authentication

All API requests require an API key:

Authorization: Bearer YOUR_API_KEY

Example Request

POST /chat
{
  "agent_id": "cust-support-123",
  "message": "How do I reset my password?",
  "session_id": "user-456-session"
}
Response
{
  "response": "You can reset your password by...",
  "session_id": "user-456-session",
  "timestamp": "2023-11-15T14:30:22Z"
}