Skip to content

Commit 837330d

Browse files
Cloudflare turn integration (#264)
* Turn integration * Add code: * type hint * Fix typehint * add code * format * WIP * trickle ice * bump version * Better docs * Modify * code * Mute icon for whisper * Add code * llama 4 demo * code * OpenAI interruptions * fix docs
1 parent f70b27b commit 837330d

37 files changed

+2911
-777
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
path: .cache
3434
restore-keys: |
3535
mkdocs-material-
36-
- run: pip install mkdocs-material mkdocs-llmstxt
36+
- run: pip install mkdocs-material mkdocs-llmstxt==0.1.0
3737
- name: Build docs
3838
run: mkdocs build
3939

backend/fastrtc/__init__.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
from .credentials import (
2+
get_cloudflare_turn_credentials,
3+
get_cloudflare_turn_credentials_async,
24
get_hf_turn_credentials,
5+
get_hf_turn_credentials_async,
36
get_turn_credentials,
7+
get_turn_credentials_async,
48
get_twilio_turn_credentials,
59
)
610
from .pause_detection import (
@@ -70,6 +74,10 @@
7074
"Warning",
7175
"get_tts_model",
7276
"KokoroTTSOptions",
77+
"get_cloudflare_turn_credentials_async",
78+
"get_hf_turn_credentials_async",
79+
"get_turn_credentials_async",
80+
"get_cloudflare_turn_credentials",
7381
"wait_for_item",
7482
"UIArgs",
7583
"ModelOptions",

0 commit comments

Comments
 (0)