mavinsao commited on
Commit
8b0ce8e
·
verified ·
1 Parent(s): d281311

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -13
app.py CHANGED
@@ -23,9 +23,11 @@ prompt_template = """
23
  You are an AI course recommendation system. Your task is to recommend courses based on the user's description of their interests and goals, with a strong emphasis on matching the learning outcomes and syllabus content. Consider the summarized chat history to provide more relevant and personalized recommendations.
24
  Summarized Chat History:
25
  {chat_history}
26
- User's Current Query: {question}
 
27
  Based on the user's current query and chat history summary, here are some relevant courses from our database:
28
  {context}
 
29
  Please provide a personalized course recommendation. Your response should include:
30
  1. A detailed explanation of how the recommended courses match the user's interests and previous queries, focusing primarily on the "What You Will Learn" section and the syllabus content.
31
  2. A summary of each recommended course, highlighting:
@@ -36,6 +38,7 @@ Please provide a personalized course recommendation. Your response should includ
36
  3. Mention the course ratings if available.
37
  4. Any additional advice or suggestions for the user's learning journey, based on the syllabus progression and their conversation history.
38
  5. Provide the course URLs for easy access.
 
39
  Prioritize courses that have the most relevant learning outcomes and syllabus content matching the user's description and previous interactions. If multiple courses are similarly relevant, you may suggest a learning path combining complementary courses.
40
  Remember to be encouraging and supportive in your recommendation, and relate your suggestions to any preferences or constraints the user has mentioned in previous messages.
41
  Recommendation:
@@ -43,7 +46,7 @@ Recommendation:
43
 
44
  PROMPT = PromptTemplate(
45
  template=prompt_template,
46
- input_variables=["chat_history", "question", "context"]
47
  )
48
 
49
  # Initialize the language model
@@ -73,14 +76,6 @@ for message in st.session_state.messages:
73
  with st.chat_message(message["role"]):
74
  st.markdown(message["content"])
75
 
76
- # Streamed response generator
77
- def response_generator(response):
78
- accumulated_response = ""
79
- for word in response.split():
80
- accumulated_response += word + " "
81
- yield accumulated_response.strip() # Yield accumulated response
82
- time.sleep(0.05) # Adjust this delay to control typing speed
83
-
84
  # Accept user input
85
  if prompt := st.chat_input("What are you looking to learn?"):
86
  # Add user message to chat history
@@ -91,11 +86,11 @@ if prompt := st.chat_input("What are you looking to learn?"):
91
 
92
  # Assistant response generation with streaming effect
93
  with st.chat_message("assistant"):
94
- response = qa_chain({"question": prompt})
95
- response_text = response["answer"]
96
 
97
  # Stream the response word by word
98
- for accumulated_response in response_generator(response_text):
99
  st.markdown(accumulated_response, unsafe_allow_html=True)
100
 
101
  # Add assistant response to chat history
 
23
  You are an AI course recommendation system. Your task is to recommend courses based on the user's description of their interests and goals, with a strong emphasis on matching the learning outcomes and syllabus content. Consider the summarized chat history to provide more relevant and personalized recommendations.
24
  Summarized Chat History:
25
  {chat_history}
26
+
27
+ User's Current Query: {query}
28
  Based on the user's current query and chat history summary, here are some relevant courses from our database:
29
  {context}
30
+
31
  Please provide a personalized course recommendation. Your response should include:
32
  1. A detailed explanation of how the recommended courses match the user's interests and previous queries, focusing primarily on the "What You Will Learn" section and the syllabus content.
33
  2. A summary of each recommended course, highlighting:
 
38
  3. Mention the course ratings if available.
39
  4. Any additional advice or suggestions for the user's learning journey, based on the syllabus progression and their conversation history.
40
  5. Provide the course URLs for easy access.
41
+
42
  Prioritize courses that have the most relevant learning outcomes and syllabus content matching the user's description and previous interactions. If multiple courses are similarly relevant, you may suggest a learning path combining complementary courses.
43
  Remember to be encouraging and supportive in your recommendation, and relate your suggestions to any preferences or constraints the user has mentioned in previous messages.
44
  Recommendation:
 
46
 
47
  PROMPT = PromptTemplate(
48
  template=prompt_template,
49
+ input_variables=["chat_history", "query", "context"]
50
  )
51
 
52
  # Initialize the language model
 
76
  with st.chat_message(message["role"]):
77
  st.markdown(message["content"])
78
 
 
 
 
 
 
 
 
 
79
  # Accept user input
80
  if prompt := st.chat_input("What are you looking to learn?"):
81
  # Add user message to chat history
 
86
 
87
  # Assistant response generation with streaming effect
88
  with st.chat_message("assistant"):
89
+ response = qa_chain({"query": prompt})
90
+ response_text = response["response"]
91
 
92
  # Stream the response word by word
93
+ for accumulated_response in response_text:
94
  st.markdown(accumulated_response, unsafe_allow_html=True)
95
 
96
  # Add assistant response to chat history