File size: 1,918 Bytes
4ab2d90
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>DeepInfra Wrapper - Developer Reference</title>
    <style>

        body {

            background-color: #1a1a1a;

            color: #e0e0e0;

            font-family: 'Arial', sans-serif;

            margin: 0;

            padding: 0;

        }

        .container {

            width: 80%;

            margin: 0 auto;

            padding: 20px;

        }

        header {

            text-align: center;

            padding: 50px 0;

        }

        header h1 {

            color: #00ff00;

        }

        .status {

            text-align: center;

            padding: 10px;

            margin-bottom: 20px;

            background-color: #006400;

            border-radius: 5px;

        }

        .routes {

            margin-top: 20px;

        }

        .routes h2 {

            color: #00ff00;

        }

        .routes ul {

            list-style: none;

            padding: 0;

        }

        .routes ul li {

            background-color: #333333;

            padding: 10px;

            margin: 5px 0;

            border-radius: 5px;

        }

        .routes ul li a {

            color: #00ff00;

            text-decoration: none;

        }

        .routes ul li a:hover {

            text-decoration: underline;

        }

    </style>
</head>
<body>
    <div class="container">
        <header>
            <h1>DeepInfra Wrapper</h1>
            <div class="status">Status: Active</div>
        </header>
        <div class="routes">
            <h2>Available Routes</h2>
            <ul>
                <li><a href="/chat/completions">/chat/completions</a></li>
                <li><a href="/models">/models</a></li>
            </ul>
        </div>
    </div>
</body>
</html>