Skip to content

Commit

Permalink
prerelease
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidGOrtega committed Apr 1, 2024
1 parent f57136c commit 62919d0
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,9 @@ To do so, follow these steps:
"height": 500
},
"avatar": "https://example.com/avatar.jpg",
"nickname": "John Doe" // used as Basic Auth user
"nickname": "John Doe" // used as Basic Auth user,
"qTts": true, // enable transcription
"qSummarization": true //enable summarization
}
```

Expand Down Expand Up @@ -331,7 +333,7 @@ We offer a commercial version that incorporates embedded AI models and provides
| Events | :green_circle: | :green_circle: |
| Integrations | :red_circle: | :green_circle: |
| AI Speech2Text | :green_circle: | :green_circle: |
| AI Summarization | :red_circle: | :green_circle: |
| AI Summarization | :green_circle: | :green_circle: |
| AI Sentiment Analysis | :red_circle: | :green_circle: |
| AI KPI insights | :red_circle: | :green_circle: |
| Programmable conversational agent | `ChatGPT` | `ChatGPT` `embedded` |
Expand Down
1 change: 0 additions & 1 deletion packages/008/src/008QWorkerTTS.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ self.addEventListener('message', async ({ data }) => {
const { id, audio, wav } = data;
console.log(`[008Q] Queuing job ${id}`);

console.log('[008Q]', audio, wav);
QUEUE.add(async () => {
console.log('[008Q] Transcribing...');

Expand Down
4 changes: 3 additions & 1 deletion packages/008/web/cfgDemo008.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,7 @@
{ "value": "offline", "text": "Offline", "color": "#A9A9A9" }
],
"avatar": "https://avatars.githubusercontent.com/u/59776461",
"nickname": "Demo"
"nickname": "Demo",
"qTts": true,
"qSummarization": true
}
2 changes: 0 additions & 2 deletions packages/008Q/src/Q.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,7 @@ export const transcript = async ({
const inputs = new Uint8Array(wav);

const tokenizer = await fetchBytes({ url: data });
console.log("tokejnizer", tokenizer);
const model = await fetchBytes({ url: bin, onProgress: onInitProgress });
console.log("model", model);

const consolewarn = console.warn;
console.warn = () => {};
Expand Down

0 comments on commit 62919d0

Please sign in to comment.