Skip to content

Latest commit

 

History

History
57 lines (43 loc) · 1.13 KB

README.md

File metadata and controls

57 lines (43 loc) · 1.13 KB

Real-Time Voice Inference Web SDK

tbd.

Install

# Install dependencies & link packages
yarn
# Build voice-sdk
yarn workspace realtime-ai build
# Build voice-sdk-react
yarn workspace realtime-ai-react build

Hack on the framework and play with the sandbox

Watch for file changes:

yarn workspace realtime-ai run dev

Navigate to the sandbox directory and run the project

yarn workspace rtvi-sandbox run dev

Navigate to the URL in your browser

Bump and publish rtvi-client-js

# Bump version
yarn workspace realtime-ai version --patch/--minor/--major --message "Bump voice-sdk version"
# Build
yarn workspace realtime-ai build
# Verify package content
npm pack --dry-run --workspace=realtime-ai
# Publish package
npm publish --workspace=realtime-ai

Bump and publish rtiv-client-react

# Bump version
yarn workspace realtime-ai-react version --patch/--minor/--major --message "Bump voice-sdk version"
# Build
yarn workspace realtime-ai-react build
# Verify package content
npm pack --dry-run --workspace=realtime-ai-react
# Publish package
npm publish --workspace=realtime-ai-react