Conversation
The chat welcome banner suggested open-ended queries like searching CTV inventory under a CPM cap, listing branding options, or planning a campaign by budget. The chat interface's only tools, request_quotes and book_deals, are both product-ID keyed and cannot serve any of those. Replace the examples with queries the chat can actually fulfill: requesting a quote for a product ID, booking within a budget, and asking about connected sellers.
Kishore-2572
approved these changes
Sep 15, 2026
Kishore-2572
left a comment
Contributor
There was a problem hiding this comment.
Verified: 3610 passed, 83 skipped, 0 failed — identical to
main's baseline, as expected for a
text-only banner change. Confirmed the chat agent's only tools arerequest_quotes/book_deals,
both keyed on product ID, so the replaced example queries are accurate to what the tool set can
actually serve. Correctly scoped as the deferred companion half of #126, now unblocked since #125
merged. Approving.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The defect
The interactive chat command's welcome banner (interfaces/cli/main.py) suggested example queries none of which the chat tools can serve: "Search for CTV inventory under $20 CPM", "What branding options are available?", and "Help me plan a campaign for $50,000". The chat agent's only tools are request_quotes and book_deals, both keyed on a product ID; there is no open-ended inventory search or browsing capability.
What changed
searchandbookCLI commands (OpenDirect product search, campaign-brief-driven booking flow), which are real, working commands unrelated to the chat tool set, so nothing else needed to change.Scope note
This completes the companion fix called out in #126 (fix/chat-prompt-dead-tool), which rewrote the chat's per-turn prompt to describe request_quotes and book_deals honestly but deferred the CLI banner fix because interfaces/cli/main.py was under a code freeze from an in-flight PR (#125, auth/key management). That PR has since merged to main, so this picks up the deferred half.
Test evidence