Satyam-Singh commited on
Commit
ff0ea3a
·
verified ·
1 Parent(s): e0d303f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -163,7 +163,7 @@ top_p_component = gr.Slider(
163
  "the next token (using temperature). "
164
  ))
165
 
166
- Parameters = [
167
  temperature_component,
168
  max_output_tokens_component,
169
  stop_sequences_component,
@@ -193,7 +193,7 @@ gr.ChatInterface(
193
  ),
194
  title="LLAVA: Large Language Virtual Assistant",
195
  description="Official Demo Of ```LLAVA``` based on ```Large Language Virtual Assistant ```.",
196
- Parameters=Parameters,
197
  examples=examples,
198
  concurrency_limit=20,
199
  ).launch(show_api=True)
 
163
  "the next token (using temperature). "
164
  ))
165
 
166
+ bot_inputs = [
167
  temperature_component,
168
  max_output_tokens_component,
169
  stop_sequences_component,
 
193
  ),
194
  title="LLAVA: Large Language Virtual Assistant",
195
  description="Official Demo Of ```LLAVA``` based on ```Large Language Virtual Assistant ```.",
196
+ Additional_Inputs=bot_inputs,
197
  examples=examples,
198
  concurrency_limit=20,
199
  ).launch(show_api=True)