当前位置:   article > 正文

免费ChatGPT转接地址免费ChatGPT直连地址以及使用方法

chatgpt转接

依赖环境

Python3.8+以上环境

安装依赖包 pip install openai

使用方法-Python

#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Time    : 2024-05-08 8:56
# @Author  : Jack
# @File    : chat_direct

"""
chat_direct
"""
import openai
from openai import OpenAI

openai.api_key = '***********************'
client = OpenAI(
    api_key=openai.api_key,
    base_url='https://*******/v1'
)


def chatGpt(text, stream=False):
    completion = client.chat.completions.create(
        model="gpt-3.5-turbo",
        messages=[
            {"role": "system", "content": "You are a helpful assistant."},
            {"role": "user", "content": text}
        ],
        stream=stream
    )
    if stream:
        for chunk in completion:
            print(chunk.choices[0].delta.content)
    else:
        print(completion.choices[0].message.content)


if __name__ == '__main__':
    chatGpt("你好啊,你是谁,自我介绍一下? ")
    chatGpt("不要回答,不要回答!", stream=True)

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39

上述代码

base_url='https://*******/v1' 换成直连地址。
openai.api_key = 换成你的aip_key

base_url 直连地址获取方法

关注公众号 N学无止界 回复 ChatGPT转接地址 即可.

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/寸_铁/article/detail/742867
推荐阅读
相关标签
  

闽ICP备14008679号