API Playground
Test Bee's OpenAI-compatible API endpoints directly from your browser.
http://127.0.0.1:8000
Response
Click Send to execute the request.API Endpoints
POST
/v1/chat/completionsOpenAI-compatible chat completions with domain switching
POST
/v1/domain/switchSwitch active LoRA adapter domain
POST
/v1/documents/uploadIngest text documents for RAG retrieval
POST
/v1/documents/retrieveDebug: retrieve top-k chunks for a query
GET
/v1/documentsList all ingested documents
POST
/v1/feedbackSubmit thumbs up/down and corrections
GET
/v1/feedback/statsAggregate feedback statistics
GET
/v1/interactionsExport recent interaction logs
GET
/healthServer health, model info, domain list
WS
/v1/chatReal-time streaming chat via WebSocket
GET
/v1/evolution/statusAutonomous evolution engine status
POST
/v1/evolution/cycleTrigger one invent → eval → integrate cycle
POST
/v1/evolution/runRun N continuous self-evolution cycles
Quick Start
curl -X POST http://127.0.0.1:8000/v1/chat/completions \
-H "Content-Type: application/json" \
-d '{
"model": "bee",
"messages": [
{"role": "user",
"content": "Hello"}
],
"domain": "general"
}'