Update app.py
Browse files
app.py
CHANGED
@@ -100,16 +100,8 @@ def predict(model_name, inputs, top_p, temperature, openai_api_key, chat_counter
|
|
100 |
def reset_textbox():
|
101 |
return gr.update(value='')
|
102 |
|
103 |
-
title = """<h1 align="center">
|
104 |
-
description = """
|
105 |
-
```
|
106 |
-
User: <utterance>
|
107 |
-
Assistant: <utterance>
|
108 |
-
User: <utterance>
|
109 |
-
Assistant: <utterance>
|
110 |
-
...
|
111 |
-
```
|
112 |
-
In this app, you can explore the outputs of a gpt-3.5-turbo LLM.
|
113 |
"""
|
114 |
|
115 |
with gr.Blocks(css = """#col_container {width: 1000px; margin-left: auto; margin-right: auto;}
|
|
|
100 |
def reset_textbox():
|
101 |
return gr.update(value='')
|
102 |
|
103 |
+
title = """<h1 align="center">Private ChatGPT</h1>"""
|
104 |
+
description = """Chat with OpenAI models using their official API. OpenAI [promises](https://platform.openai.com/docs/concepts) not to train on input or output of API calls.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
105 |
"""
|
106 |
|
107 |
with gr.Blocks(css = """#col_container {width: 1000px; margin-left: auto; margin-right: auto;}
|