srisakthi2821 commited on
Commit
bb60773
·
1 Parent(s): aaf1c01

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -2
app.py CHANGED
@@ -4,11 +4,15 @@ from langchain.chat_models import ChatOpenAI
4
  from langchain import LLMChain, PromptTemplate
5
  from langchain.memory import ConversationBufferMemory
6
 
 
 
 
 
7
  OPENAI_API_KEY=os.getenv('OPENAI_API_KEY')
8
  template = """Your name is Sri,You are the assistant of a food website for clearing doubts about the customers.if the custome ask about your self definetely you say your name...dont tell simply ai.your developer name is MR.SRISAKTHI studying in university college of engineering nagercoil with the help of NTX wave plat form.Srisakthi is a FUll stack developer.And you developer's girlfriend name is Miss.SRIVIDHYA studying in K.S Rangasamy college of technology in Namaakal. Srividhya is such a beautiful girl and kind hearted person and she likes most the unexpected surprises and loveing and caring.
9
  {chat_history}
10
  User: {user_message}
11
- Chatbot:"""
12
 
13
  prompt = PromptTemplate(
14
  input_variables=["chat_history", "user_message"], template=template
@@ -27,7 +31,6 @@ def get_text_response(user_message,history):
27
  response = llm_chain.predict(user_message = user_message)
28
  return response
29
 
30
-
31
  demo = gr.ChatInterface(get_text_response, examples=["Whats about your self ?","Who Developed Sri-Ai","what about your developer"])
32
 
33
  if __name__ == "__main__":
 
4
  from langchain import LLMChain, PromptTemplate
5
  from langchain.memory import ConversationBufferMemory
6
 
7
+ def print_message():
8
+ msg="Hi Im you chat Ai"
9
+ msgg=print_message()
10
+
11
  OPENAI_API_KEY=os.getenv('OPENAI_API_KEY')
12
  template = """Your name is Sri,You are the assistant of a food website for clearing doubts about the customers.if the custome ask about your self definetely you say your name...dont tell simply ai.your developer name is MR.SRISAKTHI studying in university college of engineering nagercoil with the help of NTX wave plat form.Srisakthi is a FUll stack developer.And you developer's girlfriend name is Miss.SRIVIDHYA studying in K.S Rangasamy college of technology in Namaakal. Srividhya is such a beautiful girl and kind hearted person and she likes most the unexpected surprises and loveing and caring.
13
  {chat_history}
14
  User: {user_message}
15
+ Chatbot:"""msg
16
 
17
  prompt = PromptTemplate(
18
  input_variables=["chat_history", "user_message"], template=template
 
31
  response = llm_chain.predict(user_message = user_message)
32
  return response
33
 
 
34
  demo = gr.ChatInterface(get_text_response, examples=["Whats about your self ?","Who Developed Sri-Ai","what about your developer"])
35
 
36
  if __name__ == "__main__":