Hi. I've been running into a problem, and I'm not sure how to resolve it. Hoping one of you knows the answer 🙂
I've been running the following (to analyse an annual report of a company):
llm_predictor = LLMPredictor(llm=OpenAI(temperature=0, model_name="gpt-3.5-turbo", max_tokens=512))
service_context = ServiceContext.from_defaults(llm_predictor=llm_predictor)
index = GPTSimpleVectorIndex.from_documents(documents, service_context = service_context)
response = index.query("What does the report mention about stakeholder engagement? Does it provide specific examples?",
similarity_top_k = 3)
When I use 'gpt-3.5.turbo' I get this type of response:
The existing answer is still relevant and provides a comprehensive list of specific examples of stakeholder engagement [...]
Why does it talk about an existing answer? What is happening here?
When I use 'text-davinci-003", I receive a response that is more to my liking - and it doesn't talk about an "existing answer"