-
Notifications
You must be signed in to change notification settings - Fork 5
chore: update ChatGPT shipment test case #340
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -147,11 +147,11 @@ | |
| "expected_output_url": null | ||
| }, | ||
| { | ||
| "description": "List actively tracked shipments without nested containers.", | ||
| "user_prompt": "Show the first 10 shipments where shipping-line tracking has not stopped. Do not include nested containers.", | ||
| "description": "List the 10 most recently updated shipments without nested containers.", | ||
| "user_prompt": "Show my 10 most recently updated shipments. Don’t include nested containers.", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
When an older shipment has been updated after newer shipments, this test cannot return the requested account-wide top 10: the AGENTS.md reference: AGENTS.md:L27-L27 Useful? React with 👍 / 👎. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
| "file_attachment_urls": null, | ||
| "tools_triggered": "list_shipments", | ||
| "expected_output": "Returns up to 10 shipments matching tracking_stopped=false without nested container relationships, with pagination details.", | ||
| "expected_output": "Returns up to 10 of the most recently updated shipments with a page size of 10, include_containers=false, no carrier, status, or port filters, and no nested containers. Mentions pagination if present.", | ||
| "expected_output_url": null | ||
| }, | ||
| { | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When ChatGPT evaluates this case,
list_shipmentscannot fulfill “most recently updated” because the endpoint exposes no update-time sort and orders results by creation date. A conforming invocation therefore returns the most recently created shipments, causing this case to validate an inaccurate response or fail a correct implementation.Prompt To Fix With AI