Skip to content
Michael.X edited this page Mar 10, 2023 · 6 revisions

简介

ChatGPT 是OpenAI推出的人工智能聊天服务。
为了满足大家体验最新的人工智能,XX-Net实现了一站式解决方案:

  • 不需要获得国外的手机号码
  • 不需要另外找翻墙工具
  • 不需要国外的信用卡来绑定账户
  • 只需要一个XX-Net帐号,即可使用ChatGPT

直接使用:

打开 客户端ChatGPT页面, 输入提问,即可获得ChatGPT的回答。
Screenshot(1)

如何更好的提问,请参考推荐用法

调用OpenAI API

XX-Net 本地客户端提供访问ChatGPT API功能,使用方法非常简单,只需要把openai的网址换成本地8085端口:
shell 方式:

curl -v  http://localhost:8085/openai/v1/chat/completions \
  -H 'Content-Type: application/json' \
  -d '{
  "model": "gpt-3.5-turbo",
  "messages": [{"role": "user", "content": "Hello!"}]
}'

Python方式:

import openai

openai.api_key = "abc"
openai.api_base = "http://localhost:8085/openai/v1"

response = openai.ChatCompletion.create(
            model="gpt-3.5-turbo",
            messages=[
                {"role": "system", "content": "You are a helpful assistant."},
                {"role": "user", "content": "Who won the world series in 2020?"},
                {"role": "assistant", "content": "The Los Angeles Dodgers won the World Series in 2020."},
                {"role": "user", "content": "Where was it played?"}
            ]
        )

for solution in response.choices:
    print(solution.message.content)

API文档:

规则:

  • 每个付费用户赠送一百万token
  • 购买更多token 的付费功能正在开发中
  • 目前客户端界面上的ChatGPT功能比较简单,每一个提问都是独立的,因此建议每次提问带上所有背景信息。 界面上的功能会持续改进,欢迎大家在Issue区留言提需求。
  • openai API代理目前只支持Chat Completion,更多功能大家可以提需求,根据大家需要排优先级逐个支持。

参考资料:

Clone this wiki locally