openai自定义API操作 API 返回值说明

custom-自定义API操作 

openai.custom

公共参数

名称 类型 必须 描述
key String 调用key(获取测试key)
secret String 调用密钥
api_name String API接口名称(包括在请求地址中)[item_search,item_get,item_search_shop等]
cache String [yes,no]默认yes,将调用缓存的数据,速度比较快
result_type String [json,jsonu,xml,serialize,var_export]返回数据格式,默认为json,jsonu输出的内容中文可以直接阅读
lang String [cn,en,ru]翻译语言,默认cn简体中文
version String API版本

请求参数

请求参数:method=&_o_args=
我司的openai专用API域名:https://api-ai.onebound.cn/

参数说明: 文本模式参数:&_o_args={"prompt": "中国队什么时候进世界杯","max_tokens":200} prompt 文本,max_token 词汇最大量
图片模式参数:&_o_args={"prompt":"地球","n":10} prompt 图片描述文本,n 返回图片数
api:openAI开放平台的接口名(如:v1/completions)
其它参数:参考官方平台接口文档,与官方的参数一致
MJ图片生成参数:method=images/submit&_o_args={"prompt":"向日葵"}(生成图片id), method=images/get&_o_args={"imgid":"1987378144113570"}(图片id生成图片)

名称 类型 必须 描述
method String 接口名,如:
v1/models(模型),
v1/completions( AI问答 ),
v1/chat/completions(对话),
v1/edits(编辑文本,优化文本信息),
v1/images/generations( 文本生图 ),
v1/images/edits(图片编辑),
v1/images/variations(图片修改),
v1/embeddings(学习模型),
v1/audio/transcriptions(声音转换、翻译),
v1/files(文件微调、修改),
images/submit(文本生成图片id),
images/get(图片id生成图片),
……………………
_o_args String json数组格式,如{"prompt": "中国队什么时候进世界杯","max_tokens":200}
[其他参数] String 其它参数:参考OpenAI开放平台接口文档,与官方的参数一致
https://platform.openai.com/

响应参数

Version: Date:

名称 类型 必须 示例值 描述

response

Mix 0 [] 响应内容,不同的接口返回内容不一样,具体参考 https://platform.openai.com/

openai自定义API操作 API 返回值说明_第1张图片 

你可能感兴趣的:(openAI,人工智能)