-
Notifications
You must be signed in to change notification settings - Fork 30
filler phrase while starting tool call #232
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
rootflo-hardik
merged 6 commits into
develop
from
CU-86d243yj6-voice-agent-filler-phrases
Mar 2, 2026
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
7881485
filler phrase while starting tool call
rootflo-hardik 92a32dd
skip tts phrase when lang switches
rootflo-hardik 90630d7
removed periods from filler phrases
rootflo-hardik 8a5ca52
Merge branch 'develop' into CU-86d243yj6-voice-agent-filler-phrases
rootflo-hardik 30be05e
added env var ENABLE_FILLER_PHRASES_BEFORE_TOOL_CALL
rootflo-hardik 566a1ae
made step to 0.01 for voice provider config
rootflo-hardik File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
33 changes: 33 additions & 0 deletions
33
wavefront/server/apps/call_processing/call_processing/constants/filler_phrases.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,33 @@ | ||
| FILLER_PHRASES = { | ||
| 'en': [ | ||
| 'Please wait a moment', | ||
| 'Just a second', | ||
| 'Give me a moment', | ||
| 'One moment please', | ||
| ], | ||
| 'hi': ['कृपया एक पल प्रतीक्षा करें', 'बस एक सेकंड', 'मुझे एक पल दें', 'एक पल रुकिए'], | ||
| 'ta': [ | ||
| 'தயவுசெய்து ஒரு நிமிடம் காத்திருக்கவும்', | ||
| 'ஒரு நொடி', | ||
| 'எனக்கு ஒரு நிமிடம் கொடுங்கள்', | ||
| 'ஒரு நிமிடம்', | ||
| ], | ||
| 'te': [ | ||
| 'దయచేసి ఒక్క క్షణం వేచి ఉండండి', | ||
| 'ఒక్క నిమిషం', | ||
| 'నాకు ఒక్క క్షణం ఇవ్వండి', | ||
| 'ఒక్క క్షణం దయచేసి', | ||
| ], | ||
| 'ml': [ | ||
| 'ദയവായി ഒരു നിമിഷം കാത്തിരിക്കൂ', | ||
| 'ഒരു സെക്കൻഡ്', | ||
| 'എനിക്ക് ഒരു നിമിഷം തരൂ', | ||
| 'ഒരു നിമിഷം ദയവായി', | ||
| ], | ||
| 'kn': [ | ||
| 'ದಯವಿಟ್ಟು ಒಂದು ಕ್ಷಣ ಕಾಯಿರಿ', | ||
| 'ಒಂದು ಕ್ಷಣ', | ||
| 'ನನಗೆ ಒಂದು ಕ್ಷಣ ನೀಡಿ', | ||
| 'ಒಂದು ಕ್ಷಣ ದಯವಿಟ್ಟು', | ||
| ], | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Resolve unused callback parameters to keep lint clean.
Line 525 introduces
serviceandfunction_callsbut does not use them (RuffARG001).Suggested fix
📝 Committable suggestion
🧰 Tools
🪛 Ruff (0.15.2)
[warning] 525-525: Unused function argument:
service(ARG001)
[warning] 525-525: Unused function argument:
function_calls(ARG001)
🤖 Prompt for AI Agents