mabile friendly

This commit is contained in:
lehel 2025-10-01 22:06:17 +02:00
parent d980b156d9
commit cc518cd76f
No known key found for this signature in database
GPG Key ID: 9C4F9D6111EE5CFA
3 changed files with 6 additions and 5 deletions

View File

@ -22,7 +22,7 @@ ollama-status:
# Run the Go server (assumes Ollama is running) # Run the Go server (assumes Ollama is running)
run: ollama-pull run: ollama-pull
OPENAI_API_KEY=ollama OPENAI_BASE_URL=http://localhost:11434/v1 OPENAI_MODEL=llama3 go run . OPENAI_API_KEY=ollama OPENAI_BASE_URL=http://localhost:11434/api/chat OPENAI_MODEL=qwen3:latest go run .
# Run tests # Run tests
.PHONY: test .PHONY: test

View File

@ -4,14 +4,15 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<title>Vet Clinic Chat Assistant</title> <title>Vet Clinic Chat Assistant</title>
<script src="https://cdn.tailwindcss.com"></script> <script src="https://cdn.tailwindcss.com"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head> </head>
<body class="bg-gray-50 min-h-screen flex items-center justify-center"> <body class="bg-gray-50 min-h-screen flex items-center justify-center">
<div id="chatbox" class="w-full max-w-md mx-auto bg-white rounded-xl shadow-lg p-6"> <div id="chatbox" class="w-full max-w-md md:max-w-lg lg:max-w-xl mx-auto bg-white rounded-xl shadow-lg p-4 sm:p-6">
<h2 class="text-2xl font-bold mb-4 text-center text-green-700">Vet Clinic Chat Assistant</h2> <h2 class="text-2xl font-bold mb-4 text-center text-green-700">Vet Clinic Chat Assistant</h2>
<div id="messages" class="border border-gray-300 min-h-[120px] p-3 mb-4 bg-gray-100 rounded-lg overflow-y-auto" style="max-height: 300px;"></div> <div id="messages" class="border border-gray-300 min-h-[120px] p-3 mb-4 bg-gray-100 rounded-lg overflow-y-auto" style="max-height: 300px;"></div>
<div class="flex gap-2"> <div class="flex flex-col sm:flex-row gap-2">
<input id="input" type="text" placeholder="Type your message..." autofocus class="flex-1 px-3 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-green-400" /> <input id="input" type="text" placeholder="Type your message..." autofocus class="flex-1 px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-green-400 text-base" />
<button id="send" class="px-4 py-2 bg-green-600 text-white rounded-lg hover:bg-green-700 transition">Send</button> <button id="send" class="px-4 py-3 bg-green-600 text-white rounded-lg hover:bg-green-700 transition text-base">Send</button>
</div> </div>
</div> </div>
<script> <script>

Binary file not shown.