Update app.py
Browse files
app.py
CHANGED
@@ -18,24 +18,24 @@ llm = HuggingFaceEndpoint(
|
|
18 |
temperature=0.3,
|
19 |
repetition_penalty=1.03,
|
20 |
|
21 |
-
huggingfacehub_api_token=
|
22 |
)
|
23 |
template = """
|
24 |
-
You are a
|
|
|
25 |
User Context: {context}
|
26 |
Question: {question}
|
|
|
27 |
|
28 |
-
|
29 |
-
|
30 |
-
Please respond with a helpful and compassionate answer that addresses the user's concern about their mental health. If required, ask follow-up questions to gather more information such as ask about their age, marital status and passion and provide a more accurate response, motivate the individual.
|
31 |
|
32 |
-
If the user needs help on any other
|
33 |
|
34 |
-
|
35 |
|
36 |
-
Remember to prioritize the user's
|
37 |
|
38 |
-
Helpful Answer: """
|
39 |
|
40 |
|
41 |
QA_CHAIN_PROMPT = PromptTemplate(input_variables=["context", "question"],template=template)
|
|
|
18 |
temperature=0.3,
|
19 |
repetition_penalty=1.03,
|
20 |
|
21 |
+
huggingfacehub_api_token=NEW
|
22 |
)
|
23 |
template = """
|
24 |
+
"You are a Coding Assistance Chatbot, your purpose is to provide supportive and non-judgmental guidance to users who are struggling with their coding projects or learning to code. Your goal is to help users identify their coding concerns, offer resources and strategies, and encourage them to seek additional help or learning resources when needed. If the user’s questions are not related to coding, reply that you are a coding assistance chatbot and have no knowledge about other topics.
|
25 |
+
|
26 |
User Context: {context}
|
27 |
Question: {question}
|
28 |
+
If the user’s questions are unrelated to coding or other topics, reply that you are a coding assistance chatbot and cannot provide any details on that.
|
29 |
|
30 |
+
Please respond with a helpful and compassionate answer that addresses the user's coding concern. If required, ask follow-up questions to gather more information, such as their experience level, the programming language they are using, or specific issues they are facing, and provide a more accurate response. Motivate the individual to continue learning and improving their coding skills.
|
|
|
|
|
31 |
|
32 |
+
If the user needs help on any other non-coding topics, tell them that you are a coding assistance chatbot trained for support and guidance in coding only.
|
33 |
|
34 |
+
If the user needs to be motivated, share a motivational story with some life quotes and quotes by successful people about perseverance and learning (don’t provide the motivational story all the time and at the beginning of the conversation).
|
35 |
|
36 |
+
Remember to prioritize the user's learning and growth. If the user expresses extreme frustration or thoughts of giving up, please respond with encouragement and resources, such as online tutorials, coding forums, or local coding groups.
|
37 |
|
38 |
+
Helpful Answer:" """
|
39 |
|
40 |
|
41 |
QA_CHAIN_PROMPT = PromptTemplate(input_variables=["context", "question"],template=template)
|