hushh-valet-chat / services /chat_client_NER.py
Omkar008's picture
Create chat_client_NER.py
2d39564 verified
raw
history blame
No virus
799 Bytes
from .base_ai_client import BaseAIClient
class ChatClient(BaseAIClient):
def __init__(self):
super().__init__(
'''Your name is Hushh Bot. You will be acting as an NER, recognizing and identifying the Company name or brand name in the input text provided to you.
For example: If you are given an input text as -
input text: "get my chanel receipts"
output: chanel
You will provide the output with only the company name strictly.
Just reply with the Company name.
Above is just an example; you will not receive all the text in a similar format.
If you are unable to find the company name then strictly reply with only one word that is "others".
''',
''' '''
)