Question Details

No question body available.

Tags

openai-api large-language-model vector-database rag pinecone

Answers (2)

November 29, 2025 Score: 0 Rep: 1,229 Quality: Low Completeness: 10%

I think this is just a constraint with the current models, but would be happy to be proven otherwise. As far as LLMs go, they cannot be creative, they will, as for now atleast, always only transform already known content. Maybe you can try extracting certain topics and concepts and then try to let the model combine them to create more demanding and creative problems?

December 16, 2025 Score: 0 Rep: 1,110 Quality: Low Completeness: 10%

single pass RAG performs poorly for these kind of tasks...
to address this issue we have to go for multi-agent... need to introduce generate-and-verify loop.

use rag only for retrieving high-level patterns, then use these in generation step... now give this new problem to an LLM (solver) which only task is to solve the problem.

this self-verification will help you generate better problems.