bdstar commited on
Commit
21d9be3
·
1 Parent(s): ef1a528

Text-Concatenation space init commit

Browse files
Files changed (4) hide show
  1. .gitignore +1 -0
  2. .gradio/flagged/dataset1.csv +2 -0
  3. app.py +7 -0
  4. requirements.txt +2 -0
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ venv
.gradio/flagged/dataset1.csv ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ name,output,timestamp
2
+ Mamun,Hello Mamun!!,2025-10-13 08:25:50.104849
app.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ def greet(name):
4
+ return "Hello " + name + "!!"
5
+
6
+ demo = gr.Interface(fn=greet, inputs="text", outputs="text")
7
+ demo.launch()
requirements.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ # This is only needed for local deployment
2
+ gradio