Skip to main content

ErisPulse OpenAI 通用接口封装模块

Project description

ErisPulse-OpenAI 模块文档

简介

ErisPulse-OpenAI 是一个 OpenAI 通用接口的封装模块,提供了便捷的异步接口来与 OpenAI API 交互。

使用示例

基本使用

from ErisPulse import sdk

# 初始化模块
openai = sdk.OpenAI

# 同步聊天
messages = [{"role": "user", "content": "你好"}]
response = await openai.chat(messages)
print(response)

# 流式聊天
async for chunk in openai.chat_stream(messages):
    print(chunk, end="", flush=True)

自定义配置

# 自定义模型和参数
response = await openai.chat(
    messages,
    model="gpt-4",
    temperature=0.5,
    max_tokens=500
)

流式处理回调

async def handle_stream(content):
    print(content, end="", flush=True)

response = await openai.chat(
    messages,
    stream=True,
    stream_handler=handle_stream
)

API 参考

chat(messages, model=None, stream=False, stream_handler=None, **kwargs)

  • messages: List[Dict[str, str]] - 对话消息列表
  • model: Optional[str] - 指定模型,默认为配置中的模型
  • stream: bool - 是否使用流式响应
  • stream_handler: Optional[Callable] - 流式响应的回调函数
  • **kwargs: 其他 OpenAI API 参数
  • 返回: str - AI 响应内容

chat_stream(messages, model=None, **kwargs)

  • messages: List[Dict[str, str]] - 对话消息列表
  • model: Optional[str] - 指定模型,默认为配置中的模型
  • **kwargs: 其他 OpenAI API 参数
  • 返回: AsyncGenerator[str, None] - 流式响应生成器

配置说明

需要在项目的 config.toml 中配置OpenAI相关参数

参考链接

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

erispulse_openai-2.1.0.tar.gz (3.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

erispulse_openai-2.1.0-py3-none-any.whl (5.1 kB view details)

Uploaded Python 3

File details

Details for the file erispulse_openai-2.1.0.tar.gz.

File metadata

  • Download URL: erispulse_openai-2.1.0.tar.gz
  • Upload date:
  • Size: 3.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for erispulse_openai-2.1.0.tar.gz
Algorithm Hash digest
SHA256 e3a6db6eb4aaa11a8aa3f1ec6fc7a51efffa83f7c4d71602d3ec27b0ef011eda
MD5 6d4f3589f1df5c0158b7e378953fab89
BLAKE2b-256 080de041faed930ec9c4cf563b2cc1b9b82aacf8bdeb14ce60511dc513facf86

See more details on using hashes here.

Provenance

The following attestation bundles were made for erispulse_openai-2.1.0.tar.gz:

Publisher: python-publish.yml on ErisPulse/ErisPulse-OpenAI

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file erispulse_openai-2.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for erispulse_openai-2.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 99bedf2ff47844f9de1e9eac0728ad71f5e0a6e1dd138626604260730f91a715
MD5 df0357afa5bddb73403ec4a1f51dfbcb
BLAKE2b-256 5116cd30240efd245bd452b78bf5b9960ec9cf7033e4ecbfca4768adcabc100d

See more details on using hashes here.

Provenance

The following attestation bundles were made for erispulse_openai-2.1.0-py3-none-any.whl:

Publisher: python-publish.yml on ErisPulse/ErisPulse-OpenAI

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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