mirror of
https://github.com/labring/FastGPT.git
synced 2026-04-26 02:07:28 +08:00
4b24472106
* docs(i18n): translate batch 1 * docs(i18n): translate batch 2 * docs(i18n): translate batch 3 (20 files) - openapi/: app, share - faq/: all 8 files - use-cases/: index, external-integration (5 files), app-cases (4 files) Translated using North American style with natural, concise language. Preserved MDX syntax, code blocks, images, and component imports. * docs(i18n): translate protocol docs * docs(i18n): translate introduction docs (part 1) * docs(i18n): translate use-cases docs * docs(i18n): translate introduction docs (part 2 - batch 1) * docs(i18n): translate final 9 files * fix(i18n): fix YAML and MDX syntax errors in translated files - Add quotes to description with colon in submit_application_template.en.mdx - Remove duplicate Chinese content in translate-subtitle-using-gpt.en.mdx - Fix unclosed details tag issue * docs(i18n): translate all meta.json navigation files * fix(i18n): translate Chinese separators in meta.en.json files * translate * translate * i18n --------- Co-authored-by: archer <archer@archerdeMac-mini.local> Co-authored-by: archer <545436317@qq.com>
43 lines
1023 B
Plaintext
43 lines
1023 B
Plaintext
---
|
||
title: HTTP Proxy
|
||
description: Use an HTTP Proxy for Routing
|
||
---
|
||
|
||
If you have a proxy tool (like [Clash](https://github.com/Dreamacro/clash) or [sing-box](https://github.com/SagerNet/sing-box)), you can use an HTTP proxy to access OpenAI. Just add these two environment variables:
|
||
|
||
```bash
|
||
AXIOS_PROXY_HOST=
|
||
AXIOS_PROXY_PORT=
|
||
```
|
||
|
||
Using Clash as an example, it's recommended to route only `api.openai.com` through the proxy and direct-connect everything else. Example configuration:
|
||
|
||
```yaml
|
||
mixed-port: 7890
|
||
allow-lan: false
|
||
bind-address: '*'
|
||
mode: rule
|
||
log-level: warning
|
||
dns:
|
||
enable: true
|
||
ipv6: false
|
||
nameserver:
|
||
- 8.8.8.8
|
||
- 8.8.4.4
|
||
cache-size: 400
|
||
proxies:
|
||
-
|
||
proxy-groups:
|
||
- { name: '♻️ Auto Select', type: url-test, proxies: [HK-V01×1.5], url: 'https://api.openai.com', interval: 3600}
|
||
rules:
|
||
- 'DOMAIN-SUFFIX,api.openai.com,♻️ Auto Select'
|
||
- 'MATCH,DIRECT'
|
||
```
|
||
|
||
Then add these two environment variables to FastGPT:
|
||
|
||
```bash
|
||
AXIOS_PROXY_HOST=127.0.0.1
|
||
AXIOS_PROXY_PORT=7890
|
||
```
|