Update app.py
Browse files
app.py
CHANGED
@@ -182,7 +182,7 @@ Now, generate the {matrix_type}:
|
|
182 |
response = openai.ChatCompletion.create(
|
183 |
model="gpt-4-turbo",
|
184 |
messages=[
|
185 |
-
{"role": "system", "content": "You are a precise matrix generator that outputs only the requested matrix without any additional text."},
|
186 |
{"role": "user", "content": prompt}
|
187 |
]
|
188 |
)
|
@@ -252,7 +252,7 @@ Now, provide the updated {matrix_type}:
|
|
252 |
"""
|
253 |
|
254 |
response = openai.ChatCompletion.create(
|
255 |
-
model="gpt-
|
256 |
messages=[
|
257 |
{"role": "system", "content": "You are a precise matrix updater that outputs only the requested matrix without any additional text. You will make assumptions as a project manager to produce the matrix based on the limited informaton provided"},
|
258 |
{"role": "user", "content": prompt}
|
|
|
182 |
response = openai.ChatCompletion.create(
|
183 |
model="gpt-4-turbo",
|
184 |
messages=[
|
185 |
+
{"role": "system", "content": "You are a precise matrix generator that outputs only the requested matrix without any additional text. Based on the files uploaded, as the project manager you perform the analysis and make appropriate assumptions to populate the matrix"},
|
186 |
{"role": "user", "content": prompt}
|
187 |
]
|
188 |
)
|
|
|
252 |
"""
|
253 |
|
254 |
response = openai.ChatCompletion.create(
|
255 |
+
model="gpt-4-turbo",
|
256 |
messages=[
|
257 |
{"role": "system", "content": "You are a precise matrix updater that outputs only the requested matrix without any additional text. You will make assumptions as a project manager to produce the matrix based on the limited informaton provided"},
|
258 |
{"role": "user", "content": prompt}
|