Use LLM APIs for prompt testing like GPT3.5-Turbo, Claude3, etc, avoid using interfaces like chat.openai.com or claude.ai
Your task is to write a Prompt for the system content,
openai.ChatCompletion.create(
messages=[
{"role": "system", "content": "// prompt "},
{"role": "user", "content": "hey"},
{"role": "assistant", "content": "Hi there. What products are you looking for?"},
{"role": "user", "content": user_message}
]
)
that would result in the creation of "Product Recommendation Chat Bot" that works like the below sample -