# Basic usage
suggestions <- bid_quick_suggest(
problem = "Users can't find the download button"
)
print(suggestions)
# With additional context
suggestions <- bid_quick_suggest(
problem = "Dashboard has too many charts and metrics",
context = "Financial analysts need quick insights but get overwhelmed",
limit = 5
)
# Filter to specific package
bslib_suggestions <- bid_quick_suggest(
problem = "Mobile interface is hard to use",
package = "bslib",
min_score = 0.8
)
# Navigation issues
nav_suggestions <- bid_quick_suggest(
problem = "Users get lost in multi-tab interface",
context = "Application has 10+ tabs with nested content"
)
# Information overload
overload_suggestions <- bid_quick_suggest(
problem = "Too many filters and options on the sidebar",
context = "Beginners find the interface overwhelming"
)
Run the code above in your browser using DataLab