adowu commited on
Commit
6fe2453
1 Parent(s): cbf21d3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -221,6 +221,9 @@ def github_tool(
221
  return f"Błąd: {str(e)}"
222
 
223
 
224
- demo = gr.Interface(inputs=gr.Textbox(label="Nazwa repozytorium"), outputs="text")
 
 
 
225
 
226
  demo.launch()
 
221
  return f"Błąd: {str(e)}"
222
 
223
 
224
+ def my_function(input_text):
225
+ return f"Hello {input_text}"
226
+
227
+ demo = gr.Interface(fn=my_function, inputs=gr.Textbox(label="Nazwa repozytorium"), outputs="text")
228
 
229
  demo.launch()