LLM_Math / README.md
osanseviero's picture
osanseviero HF staff
Upload with huggingface_hub
78eb10c
|
raw
history blame
No virus
558 Bytes
---
tags:
- langchain
- prompt
---
# 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.
```python
from langchain.prompts import load_prompt
from langchain.chains import LLMMathChain
llm = ...
prompt = load_prompt('lc://prompts/llm_math/<file-name>')
chain = LLMMathChain(llm=llm, prompt=prompt)
```