Medical Assistant

AI-Powered Assistant

Download Code

Medical Assistant

Try it now

Enter your API key above to start

Features

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

Build Your Own

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

View on GitHub

API Quick Start

Python

import httpx

response = httpx.post(
    "https://ai-api.42helv.com/v1/chat/completions",
    headers={"X-API-Key": "YOUR_API_KEY"},
    json={
        "model": "phi3:latest",
        "messages": [{"role": "user", "content": "Hello"}]
    }
)
print(response.json())

cURL

curl -X POST "https://ai-api.42helv.com/v1/chat/completions"   -H "X-API-Key: YOUR_API_KEY"   -H "Content-Type: application/json"   -d '{"model": "phi3:latest", "messages": [{"role": "user", "content": "Hello"}]}'