Spaces:
Sleeping
Sleeping
Commit
·
ba6d665
1
Parent(s):
232d9d3
Add requirements.
Browse files- app.py +1 -2
- requirements.txt +2 -0
app.py
CHANGED
@@ -1,7 +1,6 @@
|
|
1 |
import ollama
|
2 |
import gradio
|
3 |
|
4 |
-
|
5 |
history = []
|
6 |
|
7 |
|
@@ -40,4 +39,4 @@ with gradio.Blocks(theme='abidlabs/Lime', fill_height=True) as demo:
|
|
40 |
|
41 |
|
42 |
if __name__ == '__main__':
|
43 |
-
demo.launch()
|
|
|
1 |
import ollama
|
2 |
import gradio
|
3 |
|
|
|
4 |
history = []
|
5 |
|
6 |
|
|
|
39 |
|
40 |
|
41 |
if __name__ == '__main__':
|
42 |
+
demo.launch()
|
requirements.txt
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
ollama
|
2 |
+
gradio
|