Skip to content

Commit

Permalink
Fix error: voice_id need a string (#478)
Browse files Browse the repository at this point in the history
  • Loading branch information
Zcaelestis authored Oct 4, 2023
1 parent a6770a5 commit 3681bbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion realtime_ai_character/character_catalog/catalog_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def load_characters_from_community(self, overwrite):
name=character_name,
llm_system_prompt=yaml_content["system"],
llm_user_prompt=yaml_content["user"],
voice_id=yaml_content["voice_id"],
voice_id=str(yaml_content["voice_id"]),
source='community',
location='repo',
author_name=yaml_content["author_name"],
Expand Down

0 comments on commit 3681bbc

Please sign in to comment.