Spaces:
Sleeping
Sleeping
all
Browse files- .gitignore +2 -0
- README.md +4 -1
- app.py +7 -0
- requirements.txt +7 -0
.gitignore
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
.venv
|
2 |
+
.env
|
README.md
CHANGED
@@ -10,4 +10,7 @@ pinned: false
|
|
10 |
license: mit
|
11 |
---
|
12 |
|
13 |
-
|
|
|
|
|
|
|
|
10 |
license: mit
|
11 |
---
|
12 |
|
13 |
+
# MindStride
|
14 |
+
"MindStride" could imply the idea of taking intentional steps or strides toward better mental health, personal growth, or self-improvement. The term "Mind" refers to the mental aspect, encompassing thoughts, emotions, and mindfulness. "Stride" typically denotes a purposeful, confident step or movement forward. Therefore, "MindStride" might signify a deliberate journey or progress in enhancing mental well-being, personal development, or self-discovery.
|
15 |
+
|
16 |
+
|
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 |
+
langchain
|
2 |
+
openai==0.28
|
3 |
+
pdfminer.six
|
4 |
+
tiktoken
|
5 |
+
pinecone-client
|
6 |
+
python-dotenv
|
7 |
+
gradio
|