Update results.py
Browse files- results.py +4 -3
results.py
CHANGED
@@ -7,7 +7,7 @@ def results_agent(query, context):
|
|
7 |
system_prompt = """
|
8 |
You are an academic advisor helping students (user role) find classes for the next semester, based only on rag responses that are provided to you as context.
|
9 |
Relay information in a succinct way that fully answers their questions.
|
10 |
-
|
11 |
You should only recommend classes when they are provided in RAG responses, otherwise, respond appropriately.
|
12 |
"""
|
13 |
|
@@ -15,8 +15,9 @@ def results_agent(query, context):
|
|
15 |
model="gpt-4",
|
16 |
messages=[
|
17 |
{"role": "system", "content": system_prompt},
|
18 |
-
{"role": "
|
19 |
-
{"role": "
|
|
|
20 |
]
|
21 |
)
|
22 |
|
|
|
7 |
system_prompt = """
|
8 |
You are an academic advisor helping students (user role) find classes for the next semester, based only on rag responses that are provided to you as context.
|
9 |
Relay information in a succinct way that fully answers their questions.
|
10 |
+
Based on the context provided, respond to the user's query in a natural way as if you are a person/
|
11 |
You should only recommend classes when they are provided in RAG responses, otherwise, respond appropriately.
|
12 |
"""
|
13 |
|
|
|
15 |
model="gpt-4",
|
16 |
messages=[
|
17 |
{"role": "system", "content": system_prompt},
|
18 |
+
{"role": "assistant", "content": "Additional Context" + context},
|
19 |
+
{"role": "user", "content": "User's query:" + query},
|
20 |
+
|
21 |
]
|
22 |
)
|
23 |
|