<!DOCTYPE html>
<html>
<head>
    <title>Ollama API Gateway</title>
    <style>
        body { font-family: Arial, sans-serif; max-width: 800px; margin: 40px auto; padding: 20px; }
        h1 { color: #333; }
        .endpoint { background: #f5f5f5; padding: 15px; border-radius: 5px; margin: 10px 0; }
        code { background: #eee; padding: 2px 5px; border-radius: 3px; }
    </style>
</head>
<body>
    <h1>🤖 Ollama API Gateway</h1>
    <p>本地大模型API网关已就绪。使用以下端点：</p>
    
    <div class="endpoint">
        <h3>📝 生成文本</h3>
        <p><code>POST /api/generate</code></p>
        <pre>{
  "model": "qwen2.5:0.5b",
  "prompt": "你的问题",
  "stream": false
}</pre>
    </div>

    <div class="endpoint">
        <h3>💬 聊天模式</h3>
        <p><code>POST /api/chat</code></p>
    </div>

    <div class="endpoint">
        <h3>📋 模型列表</h3>
        <p><code>GET /api/tags</code></p>
    </div>

    <div class="endpoint">
        <h3>📊 版本信息</h3>
        <p><code>GET /api/version</code></p>
    </div>

    <p>📚 <a href="https://github.com/ollama/ollama/blob/main/docs/api.md" target="_blank">完整API文档</a></p>
</body>
</html>