GitHub Models申请通过,API自由啦(暂时)



申请链接

import os
from openai import OpenAI

token = os.environ["GITHUB_TOKEN"]
endpoint = "https://models.inference.ai.azure.com"
model_name = "gpt-4o"

client = OpenAI(
    base_url=endpoint,
    api_key=token,
)

response = client.chat.completions.create(
    messages=[
        {
            "role": "system",
            "content": "You are a helpful assistant.",
        },
        {
            "role": "user",
            "content": "What is the capital of France?",
        }
    ],
    model=model_name,
    temperature=1.,
    max_tokens=1000,
    top_p=1.
)

print(response.choices[0].message.content)

测试了一下速度很快啊

14 个赞

很难的吗 :face_with_peeking_eye:

1 个赞

谢邀,去申请了

我也通过了,不知道怎么玩

就调用api吧。。。

2 个赞

懒得看文档 :sweat_smile:

2 个赞

我是昨天申请的,今天也通过了,但是不知道有什么用。。。

放着当传家宝吧 :sweat_smile:

两个号都没动静 :sob: 是我纯白嫖优先级太低了么

这句话让多少人羡慕了 :sweat_smile:

:+1:这个有限制的没

听说要搞多点代码在仓库

等会去看看吧, 现在用大家的接口 也用不完,就没看了

有,看我图2

是标准格式,可以放到 nextchat 之类的前端里用

也是,不过速度上还是不一样

1 个赞

:smile:全是fork,主打一个白嫖

只剩下一个上下文太短的理由可以安慰还没通过的我了 tieba_009

哈哈哈哈哈 :laughing:

感谢解答,刚刚没仔细看图