1 Star 0 Fork 0

Ziiz / gpt4free

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
you_test.py 572 Bytes
一键复制 编辑 原始数据 按行查看 历史
t.me/xtekky 提交于 2023-04-25 18:40 . discontinue ora.sh api
import you
# simple request with links and details
response = you.Completion.create(
prompt = "hello world",
detailed = True,
includelinks = True)
print(response)
# {
# "response": "...",
# "links": [...],
# "extra": {...},
# "slots": {...}
# }
# }
#chatbot
chat = []
while True:
prompt = input("You: ")
response = you.Completion.create(
prompt = prompt,
chat = chat)
print("Bot:", response["response"])
chat.append({"question": prompt, "answer": response["response"]})
1
https://gitee.com/GGwang/gpt4free.git
git@gitee.com:GGwang/gpt4free.git
GGwang
gpt4free
gpt4free
main

搜索帮助