为什么openai知道我说国内流量?

查看 102|回复 7
作者:手握键盘   
收到了这个邮件
[ol]Our data shows that your organization has API traffic from a region that OpenAI does not currently support. You can find the supported countries and territories here. We will be taking additional measures to block API traffic from regions that are not on our supported countries and territories list starting on July 9. To continue using OpenAI’s services, you will need to access the service in a supported region.[/ol]复制代码
这是我的转发程序
[ol]
def proxy_to_openai(path):
    openai_base = "https://api.openai.com"
    auth_header = {"Authorization": f"Bearer {api_key}"}
    headers = {"Content-Type": "application/json"}
    headers.update(auth_header)
    response = requests.request(
        request.method,
        openai_base + "/" + path,
        headers=headers,
        params=request.args or None,
        data=request.data or None,
        stream=True,
    )
    response.headers.pop("Content-Encoding", None)
    response.headers.pop("Transfer-Encoding", None)
    return app.response_class(response=response, status=response.status_code, headers=dict(response.headers))[/ol]复制代码
程序放在圣何塞的机器上, 但还是收到了警告邮件.
有大佬知道为什么吗?

收到了, 大佬, 这是

thaizxj   
因为你用中文问问题阿
手握键盘
OP
  

thaizxj 发表于 2024-6-25 14:21
因为你用中文问问题阿

不会吧??? 那还玩毛啊。。
Marss   

thaizxj 发表于 2024-6-25 14:21
因为你用中文问问题阿

我天天用ZH-CN问,以后不能了吗?
dragonfsky   
是不是炸胡的 中转了难不成还封?
thaizxj   

Marss 发表于 2024-6-25 14:25
我天天用ZH-CN问,以后不能了吗?

美国的IP  都是用中文     一看就是CN的人在使用阿
手握键盘
OP
  

dragonfsky 发表于 2024-6-25 14:25
是不是炸胡的 中转了难不成还封?

是啊 我是没想出来原因。。
Sam_Edward   
这么说,我以后要用英文问问题了....(无语,看着费劲)
您需要登录后才可以回帖 登录 | 立即注册

返回顶部