Hey people, I’m new to the AI world (been programming (python) for 4 years but never worked with AI stuff), I need to extract some specific info from documents, I’m reading about NLP and all this stuff but still figuring out which method(s) should I use to make this works, any recomendations of which methods to use?
Look into Retrieval Augmented Generation (RAG) or Grounded Generation. Two terms that should get you where you’re aiming, if by AI you’re talking about LLMs like GPT-4, Claude2, or Llama2.
There are some good libraries out there for this. I personally like llmware (https://github.com/llmware-ai/llmware ) but you could use something like Vectara (closed source) if you just want something that works pretty well and that you can call with an API right off the shelf.