TinyToT

Tree of Thoughts Inference Server — no weights, no GPU, no network required.

Try it

Response will appear here...

API Endpoints

EndpointMethodDescription
/api/generatePOSTOllama-compatible text generation
/api/chatPOSTOllama chat + history + tool support
/api/tagsGETList available models
/api/showPOSTModel details
/api/pullPOSTNo-op (compatibility)
/api/summarizePOSTExtractive document summarization
/api/agentPOSTPlan-execute-synthesise agent loop
/api/agent/toolsGETList registered tools
/api/agent/toolPOSTRun a single tool by name
/api/agent/learnPOSTWrite to Hermes Learning Journal
/api/quitPOST/GETGraceful shutdown
/v1/chat/completionsPOSTOpenAI-compatible (Hermes drop-in)
/v1/modelsGETOpenAI model list

Quick Start

pip install tinytot
tinytot
# → server running on http://localhost:11434

curl http://localhost:11434/api/generate \
  -d '{"model":"tinytot","prompt":"What is the square root of 144?","stream":false}'