Spaces:
Running
Running
File size: 3,907 Bytes
c7b1153 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>API Proxy Service</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
min-height: 100vh;
padding: 2rem;
}
.container {
max-width: 1200px;
margin: 0 auto;
background: white;
border-radius: 15px;
box-shadow: 0 10px 20px rgba(0,0,0,0.1);
padding: 2rem;
}
h1 {
color: #2c3e50;
text-align: center;
margin-bottom: 2rem;
font-size: 2.5rem;
}
.description {
text-align: center;
color: #666;
margin-bottom: 2rem;
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 2rem;
background: white;
}
th, td {
padding: 1rem;
text-align: left;
border-bottom: 1px solid #eee;
font-size: 0.9rem;
}
th {
background: #f8f9fa;
color: #2c3e50;
font-weight: 600;
}
tr:hover {
background-color: #f8f9fa;
transition: all 0.3s ease;
}
.proxy-url {
color: #3498db;
}
.target-url {
color: #2ecc71;
}
@media (max-width: 768px) {
.container {
padding: 1rem;
}
th, td {
padding: 0.5rem;
font-size: 0.8rem;
}
}
</style>
</head>
<body>
<div class="container">
<h1>API 代理服务</h1>
<p class="description">为各大AI模型提供稳定可靠的代理服务</p>
<table>
<thead>
<tr>
<th>代理地址</th>
<th>目标地址</th>
</tr>
</thead>
<tbody>
<tr>
<td class="proxy-url">https://zhepama-nginx-proxy.hf.space/gemini/v1/{path}</td>
<td class="target-url">https://generativelanguage.googleapis.com/v1/{path}</td>
</tr>
<tr>
<td class="proxy-url">https://zhepama-nginx-proxy.hf.space/gemini/v1beta/{path}</td>
<td class="target-url">https://generativelanguage.googleapis.com/v1beta/{path}</td>
</tr>
<tr>
<td class="proxy-url">https://zhepama-nginx-proxy.hf.space/groq/openai/v1/{path}</td>
<td class="target-url">https://api.groq.com/openai/v1/{path}</td>
</tr>
<tr>
<td class="proxy-url">https://zhepama-nginx-proxy.hf.space/cohere/v1/{path}</td>
<td class="target-url">https://api.cohere.ai/v1/{path}</td>
</tr>
<tr>
<td class="proxy-url">https://zhepama-nginx-proxy.hf.space/xai/v1/{path}</td>
<td class="target-url">https://api.x.ai/v1/{path}</td>
</tr>
<tr>
<td class="proxy-url">https://zhepama-nginx-proxy.hf.space/mistral/v1/{path}</td>
<td class="target-url">https://api.mistral.ai/v1/{path}</td>
</tr>
<tr>
<td class="proxy-url">https://zhepama-nginx-proxy.hf.space/github/v1/{path}</td>
<td class="target-url">https://models.inference.ai.azure.com/{path}</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>
|