File size: 226 Bytes
b2e9bf4
 
 
 
 
 
1
2
3
4
5
6
7
from services.chat_client_NER import ChatClient

def get_brand_from_query(query:str):
    chat = ChatClient().create(conversation=[])
    response = chat.send_message(content=f"{query}", stream=False)
    return response.text