Spaces:
Build error
Build error
T-K-O-H commited on
Commit ·
79e7ff8
1
Parent(s): 6cf181f
Fix
Browse files- AI_Stock_Agent +1 -0
- git_push.bat +5 -0
- setup_git.bat +17 -0
- setup_remote.bat +3 -0
AI_Stock_Agent
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
Subproject commit 218f0b86aec6c4c7c2dfdbe9baae7ae9b5c2e251
|
git_push.bat
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
@echo off
|
| 2 |
+
git remote add origin https://huggingface.co/spaces/Shipmaster1/AI_Stock_Agent
|
| 3 |
+
git add .
|
| 4 |
+
git commit -m "Update .gitignore and add all necessary files for Hugging Face Space"
|
| 5 |
+
git push origin main
|
setup_git.bat
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
@echo off
|
| 2 |
+
git add app.py
|
| 3 |
+
git add agent_graph.py
|
| 4 |
+
git add tools.py
|
| 5 |
+
git add README.md
|
| 6 |
+
git add Dockerfile
|
| 7 |
+
git add requirements.txt
|
| 8 |
+
git add chainlit.md
|
| 9 |
+
git add .gitignore
|
| 10 |
+
git add .chainlit/
|
| 11 |
+
git commit -m "Initial commit"
|
| 12 |
+
git branch -M main
|
| 13 |
+
git remote add origin https://huggingface.co/spaces/Shipmaster1/Agent_Langgraph
|
| 14 |
+
git remote add upstream git@github.com:T-K-O-H/Agent_Langgraph.git
|
| 15 |
+
git pull origin main --allow-unrelated-histories
|
| 16 |
+
git push -u origin main
|
| 17 |
+
git push -u upstream main
|
setup_remote.bat
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
@echo off
|
| 2 |
+
git remote add origin https://huggingface.co/spaces/Shipmaster1/AI_Stock_Agent
|
| 3 |
+
git remote -v
|