Difference between revisions of "Dreamily API"
Chaosconst (talk | contribs) |
Chaosconst (talk | contribs) |
||
Line 1: | Line 1: | ||
− | 大家好,在这里介绍彩云小梦 API | + | 大家好,在这里介绍彩云小梦 API 的调用。目前还非常初级,处于尝鲜版本。 |
+ | |||
+ | * 发送邮件到 api@caiyunapp.com 申请 token,请写明: | ||
+ | ** 你的单位/学校和姓名 | ||
+ | ** 申请 API 的用途 | ||
+ | ** App 或 网站的链接 | ||
+ | |||
+ | * 按照下面的说明进行调用 | ||
− | |||
− | |||
=python版本= | =python版本= | ||
colab链接:https://colab.research.google.com/drive/1Ha0IEOm-VoPu6DbtbUkuYE5HycdfQ9Ax?usp=sharing | colab链接:https://colab.research.google.com/drive/1Ha0IEOm-VoPu6DbtbUkuYE5HycdfQ9Ax?usp=sharing | ||
Line 14: | Line 19: | ||
url = "http://if.caiyunai.com/v1/dream/" | url = "http://if.caiyunai.com/v1/dream/" | ||
− | #WARNING, this should be replaced by your | + | #WARNING, this should be replaced by your token |
− | + | token = 你得到的token | |
Line 36: | Line 41: | ||
− | response = requests.request("POST", url+ | + | response = requests.request("POST", url+token+"/novel_save", data=json.dumps(payload)) |
nid = json.loads(response.text)['data']['nid'] | nid = json.loads(response.text)['data']['nid'] | ||
Line 60: | Line 65: | ||
} | } | ||
− | response = requests.request("POST", url+ | + | response = requests.request("POST", url+token+"/novel_ai", data=json.dumps(payload)) |
try: | try: | ||
Line 81: | Line 86: | ||
} | } | ||
− | response = requests.request("POST", url+ | + | response = requests.request("POST", url+token+"/novel_dream_loop", data=json.dumps(payload)) |
if json.loads(response.text)['data']['count']==0: | if json.loads(response.text)['data']['count']==0: | ||
Line 90: | Line 95: | ||
write("星球大战","地球联合舰队") | write("星球大战","地球联合舰队") | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
</syntaxhighlight> | </syntaxhighlight> |
Revision as of 08:25, 4 April 2021
大家好,在这里介绍彩云小梦 API 的调用。目前还非常初级,处于尝鲜版本。
- 发送邮件到 api@caiyunapp.com 申请 token,请写明:
- 你的单位/学校和姓名
- 申请 API 的用途
- App 或 网站的链接
- 按照下面的说明进行调用
python版本
colab链接:https://colab.research.google.com/drive/1Ha0IEOm-VoPu6DbtbUkuYE5HycdfQ9Ax?usp=sharing
def write(title, content):
global nid
import requests
import json
url = "http://if.caiyunai.com/v1/dream/"
#WARNING, this should be replaced by your token
token = 你得到的token
#创建文章,如果已经创建过就使用之前的文章id
try:
payload = {
"content" : content,
"title" : title,
"nid": nid,
}
except:
payload = {
"content" : content,
"title" : title,
}
response = requests.request("POST", url+token+"/novel_save", data=json.dumps(payload))
nid = json.loads(response.text)['data']['nid']
#选择模型
#小梦0号:60094a2a9661080dc490f75a
#小梦1号:601ac4c9bd931db756e22da6
#纯爱:601f92f60c9aaf5f28a6f908
#言情:601f936f0c9aaf5f28a6f90a
#玄幻:60211134902769d45689bf75
#我们在本文例子里,选“小梦0号“
mid="60094a2a9661080dc490f75a"
#发起续写
payload = {
"content" : content,
"title" : title,
"mid": mid,
"nid": nid
}
response = requests.request("POST", url+token+"/novel_ai", data=json.dumps(payload))
try:
xid=json.loads(response.text)['data']['xid']
except:
print(response.text)
return;
#等待结果
import time
while True:
time.sleep(1)
#获取结果
payload = {
"xid": xid,
"nid": nid
}
response = requests.request("POST", url+token+"/novel_dream_loop", data=json.dumps(payload))
if json.loads(response.text)['data']['count']==0:
res = json.loads(response.text)['data']['rows']
break
return res
write("星球大战","地球联合舰队")