Medical Assistant

AI-Powered Assistant

Download Code

Medical Assistant

Try it now

Conversation started

Features

  • OpenAI-compatible API
  • Supports Chichewa & English
  • RAG-ready with pgvector
  • GPU acceleration

Embed on Your Website

Add this chat widget to any site:

<script src="/widget.js"></script>
<script>
  ChatWidget.init({ apiUrl: '/v1/chat/completions' });
</script>

API Quick Start

Python

import openai
openai.api_base = "/v1"
response = openai.ChatCompletion.create(
    model="llama3.2",
    messages=[{"role": "user", "content": "Hello"}]
)

cURL

curl -X POST "/v1/chat/completions" \
  -d '{"model": "llama3.2", "messages": [{"role": "user", "content": "Hello"}]}'

Build Your Own

Fork this template on GitHub, customize the AI behavior, and deploy your own assistant.

View on GitHub