File size: 401 Bytes
258f5bc
 
11f9e89
258f5bc
 
 
 
e8155a8
258f5bc
 
 
 
 
 
 
 
 
e8155a8
258f5bc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import os
from openai import OpenAI

client = OpenAI(
    base_url="https://huggingface.co/static-proxy/router.huggingface.co/v1",
    api_key=os.environ["HF_TOKEN"],
)

completion = client.chat.completions.create(
    model="EssentialAI/rnj-1-instruct:together",
    messages=[
        {
            "role": "user",
            "content": "What is the capital of France?"
        }
    ],
)

print(completion.choices[0].message)