Spaces:
Sleeping
Sleeping
Tuchuanhuhuhu
commited on
Commit
·
14740c0
1
Parent(s):
13a39e1
改进Readme
Browse files
README.md
CHANGED
|
@@ -176,6 +176,29 @@ pip install urllib3==1.25.11
|
|
| 176 |
```
|
| 177 |
pip install gradio --upgrade --force_reinstall
|
| 178 |
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 179 |
### 网页提示错误
|
| 180 |
|
| 181 |
```
|
|
|
|
| 176 |
```
|
| 177 |
pip install gradio --upgrade --force_reinstall
|
| 178 |
```
|
| 179 |
+
|
| 180 |
+
### SSL Error
|
| 181 |
+
|
| 182 |
+
```
|
| 183 |
+
requests.exceptions.SSLError: HTTPSConnectionPool(host='api.openai.com', port=443): Max retries exceeded with url: /v1/chat/completions (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:1129)')))
|
| 184 |
+
```
|
| 185 |
+
|
| 186 |
+
请将`openai.com`加入你使用的代理App的代理规则。注意不要将`127.0.0.1`加入代理,否则会有下一个错误。例如,在Clash配置文件中,加入:
|
| 187 |
+
|
| 188 |
+
```
|
| 189 |
+
rules:
|
| 190 |
+
- DOMAIN-SUFFIX,openai.com,你的代理规则
|
| 191 |
+
- DOMAIN,127.0.0.1,DIRECT
|
| 192 |
+
```
|
| 193 |
+
|
| 194 |
+
Surge:
|
| 195 |
+
|
| 196 |
+
```
|
| 197 |
+
[Rule]
|
| 198 |
+
DOMAIN,127.0.0.1,DIRECT
|
| 199 |
+
DOMAIN-SUFFIX,openai.com,你的代理规则
|
| 200 |
+
```
|
| 201 |
+
|
| 202 |
### 网页提示错误
|
| 203 |
|
| 204 |
```
|