Spaces:
Sleeping
Sleeping
Commit
·
3f62887
1
Parent(s):
6eed43e
feat: added ci-cd to deploy in huggingface spaces
Browse files- .github/FUNDING.yml +0 -1
- .github/sync_hf_space.yaml +29 -0
- README.md +16 -0
.github/FUNDING.yml
CHANGED
@@ -1,2 +1 @@
|
|
1 |
ko_fi: alvaroalon2
|
2 |
-
|
|
|
1 |
ko_fi: alvaroalon2
|
|
.github/sync_hf_space.yaml
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
name: Sync to Hugging Face hub
|
2 |
+
on:
|
3 |
+
push:
|
4 |
+
branches: [main]
|
5 |
+
pull_request:
|
6 |
+
branches: [main]
|
7 |
+
|
8 |
+
workflow_dispatch:
|
9 |
+
|
10 |
+
jobs:
|
11 |
+
sync-to-hub:
|
12 |
+
runs-on: ubuntu-latest
|
13 |
+
steps:
|
14 |
+
- uses: actions/checkout@v3
|
15 |
+
with:
|
16 |
+
fetch-depth: 0
|
17 |
+
lfs: true
|
18 |
+
|
19 |
+
- name: Check large files
|
20 |
+
uses: ActionsDesk/[email protected]
|
21 |
+
with:
|
22 |
+
filesizelimit: 10485760 # this is 10MB so we can sync to HF Spaces
|
23 |
+
|
24 |
+
- name: Push to hub
|
25 |
+
env:
|
26 |
+
HF_TOKEN: ${{ secrets.HF_TOKEN }}
|
27 |
+
HF_USERNAME: "alvaroalon2"
|
28 |
+
SPACE_NAME: "LinguAIcoach"
|
29 |
+
run: git push https://$HF_USERNAME:[email protected]/spaces/$HF_USERNAME/$SPACE_NAME main
|
README.md
CHANGED
@@ -1,3 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
# LinguAIcoach
|
2 |
|
3 |
<img src="./docs/images/header.png" alt="LingAIcoach" width="1000" style="display: block; margin: 0 auto"/>
|
|
|
1 |
+
<!--
|
2 |
+
---
|
3 |
+
title: LinguAIcoach
|
4 |
+
emoji: 💬
|
5 |
+
colorFrom: blue
|
6 |
+
colorTo: red
|
7 |
+
sdk: streamlit
|
8 |
+
sdk_version: 1.31.1
|
9 |
+
python_version: 3.12
|
10 |
+
app_file: src/main.py
|
11 |
+
pinned: true
|
12 |
+
tags: [academic, english, learning, gpt, multimodal, whisper, gpt4-vision, dall-e, chatbot]
|
13 |
+
license: cc-by-nd-4.0
|
14 |
+
---
|
15 |
+
-->
|
16 |
+
|
17 |
# LinguAIcoach
|
18 |
|
19 |
<img src="./docs/images/header.png" alt="LingAIcoach" width="1000" style="display: block; margin: 0 auto"/>
|