AI / LangGraph LangChain Interview questions
What is LangChain Hub?
LangChain Hub is a public repository at smith.langchain.com/hub for sharing and versioning prompts. Teams use it to store prompts outside of application code, iterate on them without deployments, and pull specific versions into chains at runtime.
To use Hub prompts in code, install langchainhub and call hub.pull():
pip install langchainhub
from langchain import hub
# Pull a community RAG prompt (returns a ChatPromptTemplate)
rag_prompt = hub.pull("rlm/rag-prompt")
# Pin a specific commit to avoid drift
rag_prompt_v2 = hub.pull("rlm/rag-prompt:50442af1")
# Use it in a chain
chain = rag_prompt | llm | StrOutputParser()
You can also push your own prompts to the Hub from code, making them accessible to teammates or the broader community:
hub.push("your-username/my-prompt", my_prompt_template)
LangChain Hub is especially useful for teams that want to separate prompt engineering from application deployment — a prompt designer can update and version a prompt in the Hub, and the next invocation of the application picks up the latest (or pinned) version without a code deploy.
Invest now in Acorns!!! 🚀
Join Acorns and get your $5 bonus!
Acorns is a micro-investing app that automatically invests your "spare change" from daily purchases into diversified, expert-built portfolios of ETFs. It is designed for beginners, allowing you to start investing with as little as $5. The service automates saving and investing. Disclosure: I may receive a referral bonus.
Invest now!!! Get Free equity stock (US, UK only)!
Use Robinhood app to invest in stocks. It is safe and secure. Use the Referral link to claim your free stock when you sign up!.
The Robinhood app makes it easy to trade stocks, crypto and more.
Webull! Receive free stock by signing up using the link: Webull signup.
More Related questions...
