gpt-4-all(联网、绘图等)
POST
/v1/chat/completionsgpt-all是逆向官方plus账号的模型,集联网、识图、绘画、Code interperter于一体。我们后台超100个plus账户以提供高并发服务。
如需分析图片,可传入图片的base64
绘画、联网、Code interperter等,正常描述需求即可
请求参数
要使用的模型的 ID。有关哪些模型适用于聊天 API 的详细信息,请参阅模型端点兼容性表。
如需分析图片,可传入图片的base64+prompt,绘画、联网、Code interperter等,正常描述需求即可
使用什么采样温度,介于 0 和 2 之间。较高的值(如 0.8)将使输出更加随机,而较低的值(如 0.2)将使输出更加集中和确定。 我们通常建议改变这个或top_p
但不是两者。
一种替代温度采样的方法,称为核采样,其中模型考虑具有 top_p 概率质量的标记的结果。所以 0.1 意味着只考虑构成前 10% 概率质量的标记。 我们通常建议改变这个或temperature
但不是两者。
为每个输入消息生成多少个聊天完成选项。
API 将停止生成更多令牌的最多 4 个序列。
聊天完成时生成的最大令牌数。 输入标记和生成标记的总长度受模型上下文长度的限制。
-2.0 和 2.0 之间的数字。正值会根据到目前为止是否出现在文本中来惩罚新标记,从而增加模型谈论新主题的可能性。 查看有关频率和存在惩罚的更多信息。
-2.0 和 2.0 之间的数字。正值会根据新标记在文本中的现有频率对其进行惩罚,从而降低模型逐字重复同一行的可能性。 查看有关频率和存在惩罚的更多信息。
修改指定标记出现在完成中的可能性。 接受一个 json 对象,该对象将标记(由标记器中的标记 ID 指定)映射到从 -100 到 100 的关联偏差值。从数学上讲,偏差会在采样之前添加到模型生成的 logits 中。确切的效果因模型而异,但 -1 和 1 之间的值应该会减少或增加选择的可能性;像 -100 或 100 这样的值应该导致相关令牌的禁止或独占选择。
代表您的最终用户的唯一标识符,可以帮助 OpenAI 监控和检测滥用行为。了解更多。
{
"model": "gpt-4-all",
"messages": [
{
"role": "user",
"content": "画一幅2025年中国大阅兵的场景,充满未来科技,例如空天母舰等等"
}
]
}
示例代码
返回响应
{
"choices": [
{
"finish_reason": "stop",
"index": 0,
"message": {
"content": "\n```\n{\"prompt\":\"A futuristic scene of the 2025 Chinese military parade, showcasing advanced technology and innovations. The focus is on a grand display of military might, featuring a prominent air-space carrier, a cutting-edge vessel symbolizing the convergence of aerospace and naval capabilities. Surrounding this centerpiece are various futuristic military units, including drones, advanced armored vehicles, and soldiers equipped with state-of-the-art gear. The background shows a vast parade ground with throngs of spectators, large screens displaying the event, and a city skyline that blends modern architecture with traditional Chinese elements. The atmosphere is one of awe and national pride, illuminated by a clear sky and the vibrant colors of the Chinese flag.\",\"size\":\"1792x1024\"}\n```\n\n![image](https://toapi.aiown.top/images/image_20240116140830.png)\n[下载链接](https://toapi.aiown.top/images/image_20240116140830.png)\nHere is the generated image depicting a futuristic scene of the 2025 Chinese military parade, featuring advanced technology and innovations.",
"role": "assistant"
}
}
],
"created": 1705414112,
"id": "chatcmpl-e175f2ad0cc04842b17925744d79d649",
"model": "gpt-4-all",
"object": "chat.completion",
"system_fingerprint": null,
"usage": {
"completion_tokens": 214,
"prompt_tokens": 35,
"total_tokens": 249
}
}