Chris STC commited on
Commit
136f10e
1 Parent(s): 5846235

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -18,8 +18,8 @@ iface = gr.Interface(
18
  gr.inputs.Textbox(default="This is a chat with AI.", lines=2, label="AI Instruction")],
19
  outputs=gr.outputs.Textbox(label="AI Response"),
20
  layout="vertical",
21
- title="GPT-2 Chat",
22
- description="This is a chat interface with OpenAI's GPT-2 model. You can adjust the temperature and the max length of the response. The temperature controls the randomness of the model's output. Higher values (closer to 1) will make the output more random, while lower values will make it more deterministic. The max length controls the length of the model's response.",
23
  )
24
 
25
  iface.launch()
 
18
  gr.inputs.Textbox(default="This is a chat with AI.", lines=2, label="AI Instruction")],
19
  outputs=gr.outputs.Textbox(label="AI Response"),
20
  layout="vertical",
21
+ title="Chat with GPT-2",
22
+ description="You can chat with the old GPT-2! Temperature and token limits are adjustable.",
23
  )
24
 
25
  iface.launch()