XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet
公开
关注 0 Fork 0 Star 1
返回提交历史

XFEstudio/gpt4free

refactor(docs/async_client.md): use async_generate for image generation

b2b41884
kqlio67 <kqlio67@users.noreply.github.com>
提交于

代码差异

1 个文件 +1 -1
Modified docs/async_client.md +1 -1
@@ -187,7 +187,7 @@ async def main():
187 187 model="gpt-3.5-turbo",
188 188 messages=[{"role": "user", "content": "Say this is a test"}],
189 189 )
190 task2 = client.images.generate(
190 task2 = client.images.async_generate(
191 191 model="dall-e-3",
192 192 prompt="a white siamese cat",
193 193 )