Skip to content

Commit f4ee232

Browse files
committed
Update transcription demo
1 parent 39bf087 commit f4ee232

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/transcription/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@ GEMINI_API_KEY=<your-api-token> \
3131
uv run fastapi dev
3232
```
3333

34-
Now, you can create peer tokens by going to <http://localhost:3000>.
34+
Now, you can create peer tokens by going to <http://localhost:8000>.
3535
You can then use the [minimal-react](https://github.com/fishjam-cloud/web-client-sdk/tree/main/examples/react-client)
3636
demo app to connect as these peers and see your transcriptions live in the console!

examples/transcription/transcription/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from google.genai.types import AudioTranscriptionConfig, LiveConnectConfig, Modality
44

5-
FISHJAM_ID = os.environ["FISHJAM_ID"]
5+
FISHJAM_ID = os.getenv("FISHJAM_ID", "")
66
FISHJAM_TOKEN = os.environ["FISHJAM_MANAGEMENT_TOKEN"]
77
FISHJAM_URL = os.getenv("FISHJAM_URL")
88
TRANSCRIPTION_MODEL = "gemini-live-2.5-flash-preview"

0 commit comments

Comments
 (0)