-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using Microsoft Guidance and/or Langchain #6
Comments
Hi there. I previously did some explorations to let
Some of my takeaways from these explorations:
About Langchain, my experience is that Langchain's strength is its integrations with other LLM libraries / services like PromptLayer (prompt A/B test and monitoring service) and FAISS (document embedding library). For a simple service like resume parsing, it may not be immensely helpful. However, I am not a Langchain power user. I only used it once in my side project, so more investigations may be needed to be sure. |
BTW guaranteed JSON from Guidance sounds super useful. I will look into that 👍 |
Have you explored using Guidance? It can guarantee the JSON structure. I'm thinking we could use
curie
model or a cheaper model even, if we use Guidance to generate the exact JSON.There's also another project called Langchain which makes it easier to do a few things when it comes to integrating with an LLM. So far I discovered that you don't need to parse the PDF into text yourself, and you can specify
-1
as themax_tokens
value which automatically determines the exact max tokens needed. All these are baked into Langchain.(At this moment, there's no clarity on whether the two can be used together. Probably not yet.)
The text was updated successfully, but these errors were encountered: