LL5612 在 AtomGit AI网站的模型url怎么填? 中发帖
[image]
[image]
昨天社区里大佬发的glm5模型白嫖方式,但是我找不到那个原帖了,大家谁用过这个吗,下面是官方提示的调用示例,url填写方式一般不都是“域名/v1”吗,他这个后面是“api/v5”,调用时应该怎么写?试了好多都行不通
官方调用示例:
curl -L ‘https://api.atomgit.com/api/v5/chat/completions’
-H ‘Content-Type: application/json’
-H ‘Accept: application/json’
-d ‘{
“temperature”: 0,
“top_k”: 0,
“top_p”: 0,
“frequency_penalty”: 0,
“messages”: [
“string”
],
“model”: “string”,
“maxTok...