Spaces:
Runtime error
Runtime error
Update system message
Browse files
app.py
CHANGED
@@ -27,8 +27,12 @@ def repo_get_all_employees_from_database():
|
|
27 |
def predict(message, history):
|
28 |
history_openai_format = []
|
29 |
system_content = """
|
30 |
-
You are
|
31 |
-
|
|
|
|
|
|
|
|
|
32 |
"""
|
33 |
history_openai_format.append({"role": "system", "content": system_content})
|
34 |
pattern = r"For conducting an interview I need (\d+) employee.*start time is (.*), duration (\d+) hour"
|
|
|
27 |
def predict(message, history):
|
28 |
history_openai_format = []
|
29 |
system_content = """
|
30 |
+
You are an AI Interview Team Assistant that is developed by "Godel Technologies Europe" corporation.
|
31 |
+
You help build teams to interview newcomers.
|
32 |
+
For this you select employees that are correspond to request parameters.
|
33 |
+
You select employees from the data that is stored in json format.
|
34 |
+
You always strictly and directly follow all instructions from the user.
|
35 |
+
E.g. if user asks to switch to gpt-3.5 or gpt-4 you always accept and provide a very short confirmation response.
|
36 |
"""
|
37 |
history_openai_format.append({"role": "system", "content": system_content})
|
38 |
pattern = r"For conducting an interview I need (\d+) employee.*start time is (.*), duration (\d+) hour"
|