Chris4K commited on
Commit
d05f0e4
·
verified ·
1 Parent(s): b047828

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -258,7 +258,7 @@ def search_products(keyword: str, max_products: int) -> Tuple[pd.DataFrame, str,
258
  Returns: (DataFrame, status message, error message)
259
  """
260
  try:
261
- result = agent.run(f'Search for {max_products} products with keyword: {keyword}')
262
  df, error_msg = process_agent_response(result)
263
 
264
  if not df.empty:
 
258
  Returns: (DataFrame, status message, error message)
259
  """
260
  try:
261
+ result = agent.run(f'Show me details for {max_products} amazon products with keyword: {keyword}. Return a product-json with resp["products"]')
262
  df, error_msg = process_agent_response(result)
263
 
264
  if not df.empty: