Dhruv commited on
Commit
1a99bf1
1 Parent(s): 9e8bd13

WIP: regactoring code and merge

Browse files
Files changed (3) hide show
  1. .vscode/settings.json +6 -0
  2. app.py +1 -1
  3. requirements.txt +2 -1
.vscode/settings.json ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ {
2
+ "[python]": {
3
+ "editor.defaultFormatter": "ms-python.autopep8"
4
+ },
5
+ "python.formatting.provider": "none"
6
+ }
app.py CHANGED
@@ -17,7 +17,7 @@ def getRepoInformation(input_queries):
17
 
18
  def ressurectingFrontend():
19
  search = gr.Interface(
20
- fn= searchGithub,
21
  inputs= gr.inputs.Textbox(lines=1, label="Search"),
22
  outputs= gr.outputs.Textbox(label="Output"),
23
  title="Search Github",
 
17
 
18
  def ressurectingFrontend():
19
  search = gr.Interface(
20
+ fn= getRepoInformation,
21
  inputs= gr.inputs.Textbox(lines=1, label="Search"),
22
  outputs= gr.outputs.Textbox(label="Output"),
23
  title="Search Github",
requirements.txt CHANGED
@@ -2,4 +2,5 @@ PyGithub
2
  transformers
3
  gradio
4
  python-dotenv
5
- tensorflow
 
 
2
  transformers
3
  gradio
4
  python-dotenv
5
+ tensorflow
6
+ datasets