hushh-valet-chat / controllers /ner_ai_controller.py
Omkar008's picture
Update controllers/ner_ai_controller.py
5f98537 verified
raw
history blame contribute delete
No virus
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