Skip to content

Commit

Permalink
style(AgentService): add newline before function definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
ishandhanani committed Dec 1, 2024
1 parent 3066ed7 commit 5c306ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions services/AgentService/monologue_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,7 @@ async def monologue_create_final_conversation(

return Conversation.model_validate(conversation_json)


def unescape_unicode_string(s: str) -> str:
"""Convert escaped Unicode sequences to actual Unicode characters"""
# This handles both raw strings (with extra backslashes) and regular strings
Expand Down
1 change: 1 addition & 0 deletions services/AgentService/podcast_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -442,6 +442,7 @@ async def podcast_create_final_conversation(

return Conversation.model_validate(conversation_json)


def unescape_unicode_string(s: str) -> str:
"""Convert escaped Unicode sequences to actual Unicode characters"""
# This handles both raw strings (with extra backslashes) and regular strings
Expand Down

0 comments on commit 5c306ab

Please sign in to comment.