eaglelandsonce commited on
Commit
7f61f1c
·
1 Parent(s): 5d61ee6

Delete error.html

Browse files
Files changed (1) hide show
  1. error.html +0 -33
error.html DELETED
@@ -1,33 +0,0 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="UTF-8">
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>Error Message</title>
7
- <style>
8
- body {
9
- font-family: Arial, sans-serif;
10
- margin: 40px;
11
- background-color: #f9f9f9;
12
- }
13
- .error-container {
14
- background-color: #fff;
15
- padding: 20px;
16
- border-radius: 5px;
17
- box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
18
- }
19
- h2 {
20
- color: red;
21
- }
22
- </style>
23
- </head>
24
- <body>
25
- <div class="error-container">
26
- <h2>Error:</h2>
27
- <p><strong>Message:</strong> You didn't provide an API key. You need to provide your API key in an Authorization header using Bearer auth (i.e. Authorization: Bearer YOUR_KEY), or as the password field (with blank username) if you're accessing the API from your browser and are prompted for a username and password. You can obtain an API key from <a href="https://platform.openai.com/account/api-keys">https://platform.openai.com/account/api-keys</a>.</p>
28
- <p><strong>Type:</strong> invalid_request_error</p>
29
- <p><strong>Param:</strong> null</p>
30
- <p><strong>Code:</strong> null</p>
31
- </div>
32
- </body>
33
- </html>