Spaces:
Runtime error
Runtime error
File size: 412 Bytes
8599fd1 d7e622f 8599fd1 d9760b4 bea701a d7e622f 8599fd1 d9760b4 8599fd1 d9760b4 8599fd1 d9760b4 | 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://router.huggingface.co/v1",
api_key=os.environ["hf_secret"],
)
completion = client.chat.completions.create(
model="dphn/dolphin-2.9.1-llama-3-8b:featherless-ai",
messages=[
{
"role": "user",
"content": "What is the capital of algeria?"
}
],
)
print(completion.choices[0].message) |