Skip to main content

Python chatgpt api

Project description

chatgpt

Forks Stars Contributors Docs Pypi License: Apache2.0

DOCS

chatgpt库的封装调用, 支持流式和非流式。

特性

  • 支持流式和非流式
  • 支持底层调用chatgpt的封装(很easy启动)
  • 支持上层Http服务的封装调用(支持sse方式)

调用

安装

pip install py-chatgpt-plus

底层调用

  • 非流式
from py_chatgpt_plus.core.chat_gpt_3 import ChatGptV3

cg = ChatGptV3(
    api_key="*****",
    system_prompt="请帮我把以下的工作内容填充为工作周报,用markdown格式以分点叙述的方式输出:",
)
answer = cg.chat_once("主要开展了三件事情, 第一是完成功能1的开发,第二是完成了xx的需求评审,第三是接待了xx客户")
print(answer)
cg.save_conversations("./conversations.json")
  • 流式
from py_chatgpt_plus.core.chat_gpt_3 import ChatGptV3

cg = ChatGptV3(
    api_key="****"  # 请填写自己生成的api_key
)

streams = cg.chat_stream(prompt="**")  # 返回的流式结果
for stream in streams:
    print(stream)

上层调用

上层支持以sse的接口形式将结果返回给调用方,采用该方式可模拟chatgpt官方网页显示效果。

服务启动方式:

1. cd python/py_chatgpt_plus      
2. 修改conf/service.yaml配置文件(重点配置api_key和proxy)      
3. 执行run.sh即可启动   

接口文档

浏览器打开:

http://${ip}:${port}/api/v1/doc

即可在线访问(注意替换ip和port为真实启动的)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

py-chatgpt-plus-0.2.0.tar.gz (13.2 kB view hashes)

Uploaded Source

Built Distribution

py_chatgpt_plus-0.2.0-py3-none-any.whl (25.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page