Skip to content

Commit

Permalink
LLM voice assistant for Web (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
ksyeo1010 authored Jun 4, 2024
1 parent 53019f9 commit 36b07b4
Show file tree
Hide file tree
Showing 25 changed files with 4,857 additions and 1 deletion.
35 changes: 35 additions & 0 deletions .github/workflows/web-codestyle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Web Codestyle

on:
workflow_dispatch:
push:
branches: [ main ]
paths:
- '**/web/*.js'
- '**/web/*.ts'
- '.github/workflows/web-codestyle.yml'
pull_request:
branches: [ main, 'v[0-9]+.[0-9]+' ]
paths:
- '**/web/*.js'
- '**/web/*.ts'
- '.github/workflows/web-codestyle.yml'

jobs:
check-web-codestyle:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Set up Node.js LTS
uses: actions/setup-node@v3
with:
node-version: lts/*

- name: Pre-build dependencies
run: npm install yarn

- name: Run Binding Linter
run: yarn && yarn lint
working-directory: recipes/llm-voice-assistant/web
1 change: 1 addition & 0 deletions recipes/llm-voice-assistant/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ Hands-free voice assistant powered by a large language model (LLM), all voice re
## Implementations

- [Python](python)
- [Web](web)
4 changes: 4 additions & 0 deletions recipes/llm-voice-assistant/web/.babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"presets": ["@babel/preset-env"],
"plugins": ["@babel/plugin-transform-runtime"]
}
6 changes: 6 additions & 0 deletions recipes/llm-voice-assistant/web/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
node_modules
dist
lib
rollup.config.js
.eslintrc.js
types
Loading

0 comments on commit 36b07b4

Please sign in to comment.