update CHANGELOG and create websocker-server instructions

This commit is contained in:
Aleix Conchillo Flaqué
2024-05-30 15:02:12 -07:00
parent d2117c6f32
commit 219af71227
6 changed files with 35 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
# Websocket Server
This is an example that shows how to use `WebsocketServerTransport` to communicate with a web client.
## Get started
```python
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
```
## Run the server
```bash
python server.py
```
## Run the HTTP server
This will host the static web client:
```bash
python -m http.server
```
Then, visit `http://localhost:8000` in your browser to start a session.

View File

@@ -0,0 +1,2 @@
python-dotenv
pipecat-ai[openai,silero,websocket,whisper]