mirror of
https://github.com/aiclientproxy/proxycast.git
synced 2026-09-22 05:04:33 +08:00
- Tauri 2.0 + React 18 + TypeScript + Tailwind CSS - Provider management with Kiro credential loading - Auto-detect credential file changes (5s interval) - Dashboard with API testing panel - Settings page for server configuration - Logs viewer with real-time updates - OpenAI compatible API endpoints (/v1/chat/completions, /v1/models) - Anthropic compatible API endpoints (/v1/messages) - Default port: 3001, API key: proxycast-key
14 lines
358 B
HTML
14 lines
358 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>ProxyCast</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|