charlesfrye commited on
Commit
4a2adcb
1 Parent(s): 30adf98

adds requirements and dummy gradio app

Browse files
Files changed (3) hide show
  1. .gitignore +6 -0
  2. app.py +7 -0
  3. requirements.txt +7 -0
.gitignore ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ documents/stored.pkl
2
+ *.ipynb
3
+
4
+ .env
5
+
6
+ __pycache__
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()
requirements.txt ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ openai==0.26.1
2
+ langchain==0.0.65
3
+ python-dotenv==0.21.0
4
+ faiss-cpu==1.7.3
5
+ gradio==3.16.2
6
+ srt
7
+ discord.py