demo / controllers /ner_ai_controller.py
Omkar008's picture
Upload 22 files
b2e9bf4 verified
raw
history blame contribute delete
226 Bytes
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