langchain-core-workflow

Installation
SKILL.md

LangChain Core Workflow (Python)

Overview

An engineer wires a four-stage LCEL chain: classify the question, retrieve context, format the prompt, invoke the LLM. It looks clean:

chain = (
    RunnablePassthrough.assign(category=classifier)
    | RunnablePassthrough.assign(docs=retriever)
    | prompt
    | llm
    | StrOutputParser()
)

chain.invoke({"question": "What's our refund policy?"})

The call returns this:

Installs
1
GitHub Stars
2.8K
First Seen
13 days ago
langchain-core-workflow — jeremylongshore/tons-of-skills-marketplace