Reshinth Adithyan commited on
Commit
1f164ae
·
1 Parent(s): 3e24ee0

Plan README.md

Browse files
Files changed (2) hide show
  1. README.md +7 -0
  2. app.py +7 -0
README.md CHANGED
@@ -10,3 +10,10 @@ pinned: false
10
  ---
11
 
12
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces#reference
 
 
 
 
 
 
 
 
10
  ---
11
 
12
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces#reference
13
+
14
+
15
+ ### Tasks that can be done
16
+ - Code Generation (Natural Language Query | Code Completion)
17
+ - Code Summarization (Summarize in Natural Language)
18
+ - Code Search (from NL)
19
+ - Similarity Check (Duplicate Detection)
app.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ def greet(name):
4
+ return "Hello " + name + "!!"
5
+
6
+ iface = gr.Interface(fn=greet, inputs="text", outputs="text")
7
+ iface.launch()