File size: 192 Bytes
46fb1fc
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
from openai import AsyncOpenAI
from app.core.config import HF_TOKEN

def get_llm():

    return AsyncOpenAI(
        base_url="https://router.huggingface.co/v1",
        api_key=HF_TOKEN
    )