devmit commited on
Commit
ab2bd9d
1 Parent(s): a8be587
Files changed (4) hide show
  1. .gitignore +2 -0
  2. README.md +4 -1
  3. app.py +7 -0
  4. 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
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
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