Rohit Rajpoot commited on
Commit
342b7bf
Β·
1 Parent(s): 1453d4f

Deploy chatbot demo

Browse files
README.md CHANGED
@@ -1,3 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
1
  # RepoSage Chatbot Demo
2
 
3
  A minimal Streamlit-based chatbot stub for the RepoSage project, deployed on Hugging Face Spaces.
@@ -6,7 +17,7 @@ A minimal Streamlit-based chatbot stub for the RepoSage project, deployed on Hug
6
 
7
  - Echo-based chat stub (replaceable with real AI logic)
8
  - CLI commands: `hello`, `heatmap`, `chat`
9
- - Live demo hosted via Docker on HF Spaces
10
 
11
  ## Live Demo
12
 
@@ -14,3 +25,11 @@ Try it now:
14
  πŸ”— [https://huggingface.co/spaces/rohitrajpoot/reposage-chatbot](https://huggingface.co/spaces/rohitrajpoot/reposage-chatbot)
15
 
16
  ---
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ title: RepoSage Chatbot Demo
3
+ emoji: πŸ€–
4
+ colorFrom: blue
5
+ colorTo: green
6
+ sdk: streamlit
7
+ sdk_version: "1.46.0"
8
+ app_file: app.py
9
+ pinned: false
10
+ ---
11
+
12
  # RepoSage Chatbot Demo
13
 
14
  A minimal Streamlit-based chatbot stub for the RepoSage project, deployed on Hugging Face Spaces.
 
17
 
18
  - Echo-based chat stub (replaceable with real AI logic)
19
  - CLI commands: `hello`, `heatmap`, `chat`
20
+ - Live demo hosted via Docker on Hugging Face Spaces
21
 
22
  ## Live Demo
23
 
 
25
  πŸ”— [https://huggingface.co/spaces/rohitrajpoot/reposage-chatbot](https://huggingface.co/spaces/rohitrajpoot/reposage-chatbot)
26
 
27
  ---
28
+
29
+ ## Usage
30
+
31
+ ### Locally via Streamlit
32
+
33
+ ```bash
34
+ pip install -r requirements.txt
35
+ streamlit run app.py
assist/__pycache__/__init__.cpython-312.pyc CHANGED
Binary files a/assist/__pycache__/__init__.cpython-312.pyc and b/assist/__pycache__/__init__.cpython-312.pyc differ
 
assist/__pycache__/chat.cpython-312.pyc CHANGED
Binary files a/assist/__pycache__/chat.cpython-312.pyc and b/assist/__pycache__/chat.cpython-312.pyc differ
 
assist/__pycache__/heatmap.cpython-312.pyc CHANGED
Binary files a/assist/__pycache__/heatmap.cpython-312.pyc and b/assist/__pycache__/heatmap.cpython-312.pyc differ
 
assist/__pycache__/main.cpython-312.pyc CHANGED
Binary files a/assist/__pycache__/main.cpython-312.pyc and b/assist/__pycache__/main.cpython-312.pyc differ