mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-07-01 08:59:46 +02:00
9 lines
392 B
Python
9 lines
392 B
Python
|
|
def format_static_greeting_prompt(greeting_text: str) -> str:
|
||
|
|
return (
|
||
|
|
"The phone call has just connected. Greet the caller now: "
|
||
|
|
"say the following opening line out loud, exactly as written, "
|
||
|
|
"in a natural spoken voice, and then stop and wait for the "
|
||
|
|
"caller to respond. Do not add anything before or after it.\n\n"
|
||
|
|
f'"{greeting_text}"'
|
||
|
|
)
|