Skip to content

Commit 1b7dc3a

Browse files
committed
Fix input prompt formatting in customer_service_client.py for clarity
1 parent 094f2d1 commit 1b7dc3a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

samples-v2/openai_agents/customer_service/customer_service_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def main():
3434
time.sleep(1)
3535

3636
# Prompt the user for input interactively
37-
user_input = input(status['customStatus'] + ' ')
37+
user_input = input(status['customStatus'] + ': ')
3838

3939
# Send the user input to the orchestration as an external event
4040
event_url = orchestration['sendEventPostUri'].replace('{eventName}', 'UserInput')

0 commit comments

Comments
 (0)