* Update Modal App: Updated Modal App to include: 1. Latest Modal API usage 2. Ability to launch different Pipecat pipelines, much like the simple chatbot example 3. Ability to choose which pipeline is launched via the /connect endpoint 4. Added a pipeline option for connecting to a self-hosted LLM on Modal 5. Improved READMEs 6. Added a web client for interacting with the Modal deployment tmp * Update README
30 lines
518 B
Markdown
30 lines
518 B
Markdown
# JavaScript Implementation
|
|
|
|
Basic implementation using the [Pipecat JavaScript SDK](https://docs.pipecat.ai/client/js/introduction).
|
|
|
|
## Setup
|
|
|
|
1. Deploy the Modal server. See the main [README](../../README).
|
|
|
|
2. Navigate to the `client/javascript` directory:
|
|
|
|
```bash
|
|
cd client/javascript
|
|
```
|
|
|
|
3. Modify the baseUrl in src/app.js to point to your deployed Modal endpoint
|
|
|
|
4. Install dependencies:
|
|
|
|
```bash
|
|
npm install
|
|
```
|
|
|
|
5. Run the client app:
|
|
|
|
```
|
|
npm run dev
|
|
```
|
|
|
|
6. Visit http://localhost:5173 in your browser.
|