Skip to content

Commit

Permalink
update README and bump version (#197)
Browse files Browse the repository at this point in the history
  • Loading branch information
yinishi authored May 2, 2024
1 parent f7e8537 commit 3ea9354
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@humeai/voice",
"version": "0.1.3-beta.3",
"version": "0.1.3",
"description": "",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
Expand Down
2 changes: 1 addition & 1 deletion packages/embed-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@humeai/voice-embed-react",
"version": "0.1.3-beta.3",
"version": "0.1.3",
"description": "",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
Expand Down
2 changes: 1 addition & 1 deletion packages/embed/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@humeai/voice-embed",
"version": "0.1.3-beta.3",
"version": "0.1.3",
"description": "",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
Expand Down
4 changes: 2 additions & 2 deletions packages/react/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,7 @@ export const ExampleComponent = () => {
| `sendSessionSettings: (text: string) => void` | Send new session settings to the assistant. This overrides any session settings that were passed as props to the VoiceProvider. |
| `sendUserInput: (text: string) => void` | Send a user input message. |
| `sendAssistantInput: (text: string) => void` | Send a text string for the assistant to read out loud. |
| `sendToolResponse: (toolResponse: ToolResponse) => void` | Send a tool response message. |
| `sendToolError: (toolError: ToolError) => void` | Send a tool error message. |
| `sendToolMessage: (toolMessage: ToolResponse | ToolError) => void` | Send a tool response or tool error message to the EVI backend. |

### Properties

Expand All @@ -132,6 +131,7 @@ export const ExampleComponent = () => {
| `isMicrophoneError` | `boolean` | If true, a microphone error has occurred. |
| `isSocketError` | `boolean` | If true, there was an error connecting to the websocket. |
| `callDurationTimestamp` | `string` or `null` | The length of a call. This value persists after the conversation has ended. |
| `toolStatusStore` | `Record<string, { call?: ToolCall; resolved?: ToolResponse | ToolError }>` | A map of tool call IDs to their associated tool messages. |



Expand Down
2 changes: 1 addition & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@humeai/voice-react",
"version": "0.1.3-beta.3",
"version": "0.1.3",
"description": "",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
Expand Down

0 comments on commit 3ea9354

Please sign in to comment.