Spaces:
Sleeping
Sleeping
Tanuj
commited on
Commit
·
46353ef
1
Parent(s):
0ec6e4b
last update
Browse files- README.md +4 -2
- src/yt_gradio/app.py +2 -2
README.md
CHANGED
@@ -20,11 +20,13 @@ license: mit
|
|
20 |
|
21 |
Authors: [MrTanTan](https://huggingface.co/MrTanTan) && [swkasula](https://huggingface.co/MrTanTan)
|
22 |
|
|
|
|
|
|
|
23 |
|
24 |
|
25 |
-
|
26 |
|
27 |
-
# This app is also deployed using modal [here](https://tangentleman--youtwo-gradio-gradio-app.modal.run/).
|
28 |
|
29 |
# Add environment variables to your .env file
|
30 |
```bash
|
|
|
20 |
|
21 |
Authors: [MrTanTan](https://huggingface.co/MrTanTan) && [swkasula](https://huggingface.co/MrTanTan)
|
22 |
|
23 |
+
Here is the main project: [YouTwo](https://github.com/TanGentleman/YouTwo)
|
24 |
+
- Our website: https://you-two-delta.vercel.app/
|
25 |
+
- This app is also deployed using modal [here](https://tangentleman--youtwo-gradio-gradio-app.modal.run/).
|
26 |
|
27 |
|
28 |
+
This app uses [Gradio](https://gradio.app), [`huggingface_hub`](https://huggingface.co/docs/huggingface_hub/v0.22.2/en/index), and the [Hugging Face Inference API](https://huggingface.co/docs/api-inference/index).
|
29 |
|
|
|
30 |
|
31 |
# Add environment variables to your .env file
|
32 |
```bash
|
src/yt_gradio/app.py
CHANGED
@@ -88,8 +88,8 @@ def handle_file_input(file_path: str | None, uploaded_file: gr.File | None):
|
|
88 |
# ---------------------------
|
89 |
|
90 |
def get_gradio_blocks():
|
91 |
-
with gr.Blocks(title="
|
92 |
-
gr.Markdown("## 🧠
|
93 |
|
94 |
with gr.Tab("🗣️ Natural Language Mode"):
|
95 |
gr.Markdown("Input natural language requests for system actions.")
|
|
|
88 |
# ---------------------------
|
89 |
|
90 |
def get_gradio_blocks():
|
91 |
+
with gr.Blocks(title="YouTwo Memory Agent Interface") as demo:
|
92 |
+
gr.Markdown("## 🧠 YouTwo Memory Agent Interface\nBuilt with Gradio + MCP Support for LLM Tool Integration")
|
93 |
|
94 |
with gr.Tab("🗣️ Natural Language Mode"):
|
95 |
gr.Markdown("Input natural language requests for system actions.")
|