Spaces:
Configuration error
Configuration error
Yurii Paniv
commited on
Commit
·
70feeb2
1
Parent(s):
19ae03c
Sync to HF
Browse files- .github/workflows/hf-sync.yml +19 -0
- README.md +11 -1
.github/workflows/hf-sync.yml
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
name: Sync to Hugging Face hub
|
2 |
+
on:
|
3 |
+
push:
|
4 |
+
branches: [main]
|
5 |
+
|
6 |
+
# to run this workflow manually from the Actions tab
|
7 |
+
workflow_dispatch:
|
8 |
+
|
9 |
+
jobs:
|
10 |
+
sync-to-hub:
|
11 |
+
runs-on: ubuntu-latest
|
12 |
+
steps:
|
13 |
+
- uses: actions/checkout@v2
|
14 |
+
with:
|
15 |
+
fetch-depth: 0
|
16 |
+
- name: Push to hub
|
17 |
+
env:
|
18 |
+
HF_TOKEN: ${{ secrets.HF_TOKEN }}
|
19 |
+
run: git push https://robinhad:$HF_TOKEN@huggingface.co/spaces/robinhad/ukrainian-ai main
|
README.md
CHANGED
@@ -1,4 +1,14 @@
|
|
1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
This is a pet project with aim to provide an end-to-end voice chatbot with ability to listen, speak and make a conversation in Ukrainian.
|
3 |
|
4 |
It's a project with an aim to demonstrate current state-of-the-art speech technologies for Ukrainian language.
|
|
|
1 |
+
---
|
2 |
+
title: "Ukrainian AI"
|
3 |
+
emoji: 🇺🇦
|
4 |
+
colorFrom: blue
|
5 |
+
colorTo: yellow
|
6 |
+
sdk: gradio
|
7 |
+
app_file: app.py
|
8 |
+
pinned: false
|
9 |
+
---
|
10 |
+
|
11 |
+
# Ukrainian-speaking conversational AI
|
12 |
This is a pet project with aim to provide an end-to-end voice chatbot with ability to listen, speak and make a conversation in Ukrainian.
|
13 |
|
14 |
It's a project with an aim to demonstrate current state-of-the-art speech technologies for Ukrainian language.
|