admin 管理员组文章数量: 886992
网络问题:openai-chatGPT的API调用异常处理
官方手册:https://platform.openai/docs/api-reference
visgpt
gitlab代码
https://github/microsoft/visual-chatgpt
visual_chatgpt.py运行前添加密匙
os.environ['OPENAI_API_KEY']=""
更改参数为cpu
parser.add_argument('--load', type=str, default="ImageCaptioning_cpu,Text2Image_cpu")
非常非常慢7min,而且根据控制台查看图片,发现已经生成,而UI上没有生成
chatGPT
import openai
# Apply the API key
openai.api_key = "xxx"
# Define the text prompt
prompt = "to be or not to be "
# Generate completions using the API
completions = openai.Completion.create(
engine="text-davinci-002",
prompt=prompt,
max_tokens=100,
n=1,
stop=None,
temperature=0.5,
)
# Extract the message from the API response
message = completions.choices[0].text
print(message)
结果
DALLE2
import requests
import openai
from PIL import Image
openai.api_key = "xxx"
response=openai.Image.create(
prompt="the little prince and the fox in the story, they sit together",
n=1,
size="1024x1024"
)
image_url = response['data'][0]['url']
r = requests.get(image_url)
with open('test.png', 'wb') as f:
f.write(r.content)
img = Image.open('test.png')
img.show()
结果:氛围有了,但是细节不够
本文标签: 测试 visgpt OpenAI ChatGpt
版权声明:本文标题:openai visgpt,chatgpt,DALLE2 使用测试 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.freenas.com.cn/jishu/1733274786h1569717.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论