donbosco commited on
Commit
4ccbf3b
·
1 Parent(s): 19ed501

Tests hinzugefügt.

Browse files
Files changed (4) hide show
  1. .python-version +1 -0
  2. app.py +7 -0
  3. pyproject.toml +7 -0
  4. requirements.txt +2 -0
.python-version ADDED
@@ -0,0 +1 @@
 
 
1
+ 3.10.12
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()
pyproject.toml ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ [project]
2
+ name = "mcp-sentiment"
3
+ version = "0.1.0"
4
+ description = "Add your description here"
5
+ readme = "README.md"
6
+ requires-python = ">=3.10.12"
7
+ dependencies = []
requirements.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ gradio[mcp]
2
+ textblob