In evaluation I section Andrew displays some example of how the model returns outputs that are not explicitly in the JSON format irrespective of mentioning so.
But when I try to run the same thing in the notebook for some reason it is returning prefect JSON objects.
customer_msg_4 = f"""
tell me about the CineView TV, the 8K one, Gamesphere console, the X one.
I'm on a budget, what computers do you have?"""
products_by_category_4 = find_category_and_product_v1(customer_msg_4,
products_and_category)
print(products_by_category_4)
This is the example that Andrew tries in the course where he gets the output like :
But when I do, I get something like :
I mean ofc kudos to OpenAI but we still need to learn how to fix it right? right ?