We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c3d1db commit 043588aCopy full SHA for 043588a
examples/customer_service/main.py
@@ -40,7 +40,7 @@ class AirlineAgentContext(BaseModel):
40
)
41
async def faq_lookup_tool(question: str) -> str:
42
question_lower = question.lower()
43
- if any(keyword in question_lower for keyword in ["bag", "baggage", "luggage", "carry-on","hand luggage","hand carry"]):
+ if any(keyword in question_lower for keyword in ["bag", "baggage", "luggage", "carry-on", "hand luggage", "hand carry"]):
44
return (
45
"You are allowed to bring one bag on the plane. "
46
"It must be under 50 pounds and 22 inches x 14 inches x 9 inches."
0 commit comments