Skip to content

Commit

Permalink
change host name
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielchua committed Oct 1, 2024
1 parent 2cf7afe commit ccb0b90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def generate_podcast(
for line in llm_output.dialogue:
logger.info(f"Generating audio for {line.speaker}: {line.text}")
if line.speaker == "Host (Jane)":
speaker = f"**Jane**: {line.text}"
speaker = f"**Host**: {line.text}"
else:
speaker = f"**{llm_output.name_of_guest}**: {line.text}"
transcript += speaker + "\n\n"
Expand Down

0 comments on commit ccb0b90

Please sign in to comment.