Collapse caller generation to single path, remove feature flag

This commit is contained in:
2026-04-05 04:05:09 -06:00
parent 3f85ee9140
commit 76feeb22a0
4 changed files with 21 additions and 305 deletions
+2 -2
View File
@@ -14,7 +14,7 @@ from backend.main import (
BLACKLISTED_VOICES,
INWORLD_FEMALE_VOICES,
INWORLD_MALE_VOICES,
get_caller_prompt_slim,
get_caller_prompt,
)
from backend.services import caller_gen, regulars_v2
@@ -118,7 +118,7 @@ async def main():
"secret_want": caller.secret_want,
"specific_details": caller.specific_details,
}
system_prompt = get_caller_prompt_slim(cdict)
system_prompt = get_caller_prompt(cdict)
conversation = [{"role": "assistant", "content": caller.opening_line}]
for _ in range(4):