Skip to content

Commit

Permalink
No more underscore
Browse files Browse the repository at this point in the history
  • Loading branch information
HHousen committed Aug 11, 2023
1 parent e3f25c6 commit c052ea3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion vocode/streaming/action/base_action.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def create_action_input(
action_config=self.action_config,
conversation_id=conversation_id,
params=self.parameters_type(**params),
_user_message_tracker=user_message_tracker,
user_message_tracker=user_message_tracker,
)

def _user_message_param_info(self):
Expand Down
4 changes: 2 additions & 2 deletions vocode/streaming/action/phone_call_action.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def create_phone_call_action_input(
conversation_id=conversation_id,
params=self.parameters_type(**params),
vonage_uuid=vonage_uuid,
_user_message_tracker=user_message_tracker,
user_message_tracker=user_message_tracker,
)

def get_vonage_uuid(self, action_input: ActionInput[ParametersType]) -> str:
Expand All @@ -49,7 +49,7 @@ def create_phone_call_action_input(
conversation_id=conversation_id,
params=self.parameters_type(**params),
twilio_sid=twilio_sid,
_user_message_tracker=user_message_tracker,
user_message_tracker=user_message_tracker,
)

def get_twilio_sid(self, action_input: ActionInput[ParametersType]) -> str:
Expand Down
2 changes: 1 addition & 1 deletion vocode/streaming/models/actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class ActionInput(BaseModel, Generic[ParametersType]):
action_config: ActionConfig
conversation_id: str
params: ParametersType
_user_message_tracker: Optional[asyncio.Event] = None
user_message_tracker: Optional[asyncio.Event] = None

class Config:
arbitrary_types_allowed = True
Expand Down

0 comments on commit c052ea3

Please sign in to comment.