Skip to content

Commit 043588a

Browse files
Update examples/customer_service/main.py
Co-authored-by: Kazuhiro Sera <[email protected]>
1 parent 9c3d1db commit 043588a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/customer_service/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class AirlineAgentContext(BaseModel):
4040
)
4141
async def faq_lookup_tool(question: str) -> str:
4242
question_lower = question.lower()
43-
if any(keyword in question_lower for keyword in ["bag", "baggage", "luggage", "carry-on","hand luggage","hand carry"]):
43+
if any(keyword in question_lower for keyword in ["bag", "baggage", "luggage", "carry-on", "hand luggage", "hand carry"]):
4444
return (
4545
"You are allowed to bring one bag on the plane. "
4646
"It must be under 50 pounds and 22 inches x 14 inches x 9 inches."

0 commit comments

Comments
 (0)