coahGPT was an april fools joke. the whole thing. i built an entire AI chat app with accounts and email verification and a CLI and an openai-compatible API and a whole persona system that talks like me. it ran on a my server with a 3060 for like 2 days. now its open source so you can run it yourself if you want a chat app that says "ngl" and "ts is fire" in every response.
anyway heres how to actually run it yourself.
# clone it
git clone https://github.com/coah80/coahgpt.git
cd coahgpt
# pull the model (default is qwen3:8b, change in internal/ollama/client.go if u want)
ollama pull qwen3:8b
# build the frontend
cd web
npm install
npm run build
cd ..
# build and run the server
go build -o coahgpt-server ./cmd/coahgpt-server
./coahgpt-server
server starts on http://localhost:8095. open it in a browser and start chatting.
| variable | default | description |
|---|---|---|
PORT |
8095 |
server port |
OLLAMA_URL |
http://localhost:11434 |
ollama API url (if running on another machine) |
edit internal/ollama/client.go and change the Model constant:
const Model = "qwen3:8b" // change this to whatever u want
then rebuild. any model ollama supports works.
internal/persona/prompt.go that makes it talk like a zoomer. modify or delete it idc/v1/chat/completions endpoint is openai-compatible so you can point other tools at itcmd/coahgpt-server/ server entrypoint
internal/
api/ http handlers, middleware, rate limiting
chat/ in-memory session store
ollama/ ollama client
persona/ system prompt
search/ web search (duckduckgo scraping)
web/ sveltekit frontend (catppuccin mocha theme)
[Web Search])[Deep Research], fetches more results)/v1/chat/completions