CoolFace
Apppublic

ankitpatil3003/Basic-AI-Chatbot-using-Langgraph

sourceHugging Faceapache-2.0updated 2y agoView on Hugging Face
1likes
main.yaml24 linesDownload Raw Back to workflows
1name: Sync to Hugging Face Space2on:3  push:4    branches: [main]5 6  # to run this workflow manually from the Actions tab 7  workflow_dispatch:8 9jobs:10  sync-to-hub:11    runs-on: ubuntu-latest12    steps:13      - uses: actions/checkout@v314        with:15          fetch-depth: 016          lfs: false17          18      - name: Ignore large files19        run : git filter-branch --index-filter 'git rm -rf --cached --ignore-unmatch "Rag_Documents/layout-parser-paper.pdf"' HEAD20 21      - name: Push to hub22        env:23          HF_TOKEN: ${{ secrets.HF_TOKEN }}24        run: git push --force https://ankitpatil3003:$HF_TOKEN@huggingface.co/spaces/ankitpatil3003/Basic-AI-Chatbot-using-Langgraph main