I'm using GPT-4o for my RAG model. I run into a problem with the model answering to questions of no clear context.
Example:
Any restaurant around here? => There is no location provided in this question nor in the conversation history, thus vague information about location => cannot answer
Can I visit the doctor now? => There is no specific time provided, thus vague information about time => cannot answer
I'm using this system prompt but it doesn't work:
IF a question contains spatial references ("around here", "near me", "in my area") or temporal references ("now", "in 2 hours", "soon") AND there is no specific time or location in the conversation history, THEN ask for clarifications
Help me improve that system prompt to resolve my issue