Say I'm trying to create a chatbot for real estate projects using a single model, eg davinci. I have a set of prompts and completions for projects A and B each. However, some prompt and completion pairs are not labelled throughout the text, meaning that the model wouldn't know which project does this prompt-completion pair belong to.
Under this context, a roundabout method that I have thought of, is to add keywords at the end of the prompts, eg: I will add (Project A) or (Project B) at the end of each prompt. By doing this, I hope that the model is aware that the prompt-completion pair is tied to a particular project. Is this common practice for training NLP models?