mahmoud-AI / app.py
mahmoud22565's picture
Update app.py
258f5bc verified
raw
history blame contribute delete
401 Bytes
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)