@garrix82/reactgenie-lib 1.3.0 → 1.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -1
- package/package.json +7 -2
- package/.env.example +0 -22
- package/.github/workflows/publish.yml +0 -20
- package/dist/adapters/__tests__/expo-router-adapter.test.d.ts +0 -1
- package/dist/hooks/__tests__/useSpeechRecognition.test.d.ts +0 -1
- package/dist/logger.remote.test.d.ts +0 -0
- package/dist/speech-recognition/__tests__/speech-recognition-groq-transport.test.d.ts +0 -1
- package/dist/speech-recognition/__tests__/speech-recognition-native.test.d.ts +0 -1
- package/dist/speech-recognition/__tests__/speech-recognition-openai-native.test.d.ts +0 -1
- package/dist/speech-recognition/__tests__/speech-recognition-openai.test.d.ts +0 -1
- package/dist/speech-recognition/__tests__/speech-recognition-unified-import.test.d.ts +0 -0
- package/dist/speech-recognition/__tests__/speech-recognition-unified.test.d.ts +0 -1
- package/garrix82-reactgenie-lib-1.3.0.tgz +0 -0
package/README.md
CHANGED
|
@@ -618,4 +618,9 @@ These are oriented toward local prompt-generation and parser experiments around
|
|
|
618
618
|
|
|
619
619
|
## License
|
|
620
620
|
|
|
621
|
-
Apache-2.0
|
|
621
|
+
Apache-2.0
|
|
622
|
+
|
|
623
|
+
This package is a thesis-project fork maintained by [Omkar Mirgal](https://github.com/OmkarMirgal).
|
|
624
|
+
Based on the original ReactGenie project by StanfordHCI.
|
|
625
|
+
Original upstream attribution includes [Jackie Yang](https://github.com/valkjsaaa).
|
|
626
|
+
See the LICENSE file for the full license text.
|
package/package.json
CHANGED
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@garrix82/reactgenie-lib",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.2",
|
|
4
4
|
"description": "A Toolkit for Multimodal Applications",
|
|
5
5
|
"author": "Omkar Mirgal <github.com/OmkarMirgal>",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
|
-
"keywords": [
|
|
7
|
+
"keywords": [
|
|
8
|
+
"Multimodal",
|
|
9
|
+
"Voice-interface",
|
|
10
|
+
"React Native",
|
|
11
|
+
"Toolkit"
|
|
12
|
+
],
|
|
8
13
|
"main": "dist/index.js",
|
|
9
14
|
"scripts": {
|
|
10
15
|
"test": "jest",
|
package/.env.example
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
# Root .env.example — copy to .env for local development
|
|
2
|
-
|
|
3
|
-
# Logging configuration
|
|
4
|
-
# Set log level: error, warn, info, debug, silent
|
|
5
|
-
# REACT_APP_LOG_LEVEL=info
|
|
6
|
-
# EXPO_PUBLIC_LOG_LEVEL=info
|
|
7
|
-
# LOG_LEVEL=info
|
|
8
|
-
|
|
9
|
-
# Enable winston logging when installed (optional)
|
|
10
|
-
# REACT_APP_ENABLE_WINSTON=true
|
|
11
|
-
|
|
12
|
-
# Enable writing winston logs to file (Node only). Writes to project root by default.
|
|
13
|
-
# REACT_APP_ENABLE_WINSTON_FILE=true
|
|
14
|
-
# REACT_APP_LOG_FILE_DIR=.
|
|
15
|
-
|
|
16
|
-
# Groq speech keys and other config are present in example/.env.example
|
|
17
|
-
|
|
18
|
-
# Local MLX Whisper configuration (optional)
|
|
19
|
-
# REACT_APP_USE_LOCAL_WHISPER=true
|
|
20
|
-
# REACT_APP_LOCAL_WHISPER_URL=http://127.0.0.1:8000
|
|
21
|
-
# REACT_APP_LOCAL_WHISPER_MODE=oneshot # or sse / realtime
|
|
22
|
-
# REACT_APP_LOCAL_WHISPER_MODEL=large-v3-turbo
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
name: Publish to NPM if new version
|
|
2
|
-
|
|
3
|
-
on:
|
|
4
|
-
push:
|
|
5
|
-
branches: [master]
|
|
6
|
-
|
|
7
|
-
jobs:
|
|
8
|
-
publish:
|
|
9
|
-
runs-on: ubuntu-latest
|
|
10
|
-
steps:
|
|
11
|
-
- uses: actions/checkout@v3
|
|
12
|
-
- uses: actions/setup-node@v3
|
|
13
|
-
with:
|
|
14
|
-
node-version: "20.9.0"
|
|
15
|
-
- run: npm ci
|
|
16
|
-
# - run: npm test
|
|
17
|
-
- uses: JS-DevTools/npm-publish@v2
|
|
18
|
-
with:
|
|
19
|
-
token: ${{ secrets.NPM_TOKEN }}
|
|
20
|
-
tag: latest
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
File without changes
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
File without changes
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
Binary file
|