langchain
xlam-function-calling-60k_langchainReformatted dataset from "Salesforce/xlam-function-calling-60k" (from Hugging Face) for the purposes of fine tuning LLMs for tool calling for the LangChain and LangGraph frameworks
license: mit
langchain-docsLLM_Math
Description of LLM Math
Prompt designed to optionally output iPython syntax to be run in order to better answer math questions.
Inputs
This is a description of the inputs that the prompt expects.
question: User question to be answered.
Usage
Below is a code snippet for how to use the prompt.
from langchain.prompts import load_prompt
from langchain.chains import LLMMathChain
llm = ...
prompt = load_prompt('lc://prompts/llm_math/<file-name>')
chain =… See the full description on the dataset page: https://huggingface.co/datasets/LangChainHub-Prompts/LLM_Math.question-answering-state-of-the-unionquestion-answering-paul-grahamLLM_Bash
Description of LLM Bash
Prompt designed to convert natural language to bash command.
Inputs
This is a description of the inputs that the prompt expects.
question: User question to be answered by writing a bash command.
Usage
Below is a code snippet for how to use the prompt.
from langchain.prompts import load_prompt
from langchain.chains import LLMBashChain
llm = ...
prompt = load_prompt('lc://prompts/llm_bash/<file-name>')
chain = LLMBashChain(llm=llm… See the full description on the dataset page: https://huggingface.co/datasets/LangChainHub-Prompts/LLM_Bash.
