-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathusage.py
50 lines (47 loc) · 1.14 KB
/
usage.py
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
#!/usr/bin/env python
USAGE = """<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Usage</title>
<style>
body {
font-family: Courier New, monospace;
margin: 0;
padding: 0;
background-color: #000;
color: #fff;
font-size: 1.1em;
line-height: 1.6;
}
.container {
max-width: 800px;
margin: 50px auto;
padding: 20px;
background-color: #000;
border: 1px solid #999;
border-radius: 5px;
}
h1, p {
margin: 0;
padding: 0;
}
a {
color: #007bff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<p> success </p>
<h1>Usage</h1>
<p>Visit <a href="https://github.com/ultrasev/llmproxy-vercel" target="_blank">Github doc</a> for more information.</p>
</div>
</body>
</html>
"""