| 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 | |
| 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 | |