Rijgersberg commited on
Commit
7d26b62
·
verified ·
1 Parent(s): 24d20df

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -10
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">GPT-4 via API</h1>"""
104
- description = """Language models can be conditioned to act like dialogue agents through a conversational prompt that typically takes the form:
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;}