Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -59,7 +59,7 @@ def main():
|
|
59 |
st.write(output)
|
60 |
return
|
61 |
|
62 |
-
st.write(f'
|
63 |
|
64 |
model_engine = "gpt-3.5-turbo"
|
65 |
max_tokens = 50
|
@@ -75,7 +75,7 @@ def main():
|
|
75 |
|
76 |
output = response['choices'][0]['message']['content']
|
77 |
|
78 |
-
st.write(f'
|
79 |
|
80 |
|
81 |
if __name__ == "__main__":
|
|
|
59 |
st.write(output)
|
60 |
return
|
61 |
|
62 |
+
st.write(f'**{model_name}**: {output}')
|
63 |
|
64 |
model_engine = "gpt-3.5-turbo"
|
65 |
max_tokens = 50
|
|
|
75 |
|
76 |
output = response['choices'][0]['message']['content']
|
77 |
|
78 |
+
st.write(f'**{model_engine}**: {output}')
|
79 |
|
80 |
|
81 |
if __name__ == "__main__":
|