o
    Jjgd                     @   s"   d dl mZ dZedgedZdS )    )PromptTemplatea  Translate a math problem into a expression that can be executed using Python's numexpr library. Use the output of running this code to answer the question.

Question: ${{Question with math problem.}}
```text
${{single line mathematical expression that solves the problem}}
```
...numexpr.evaluate(text)...
```output
${{Output of running the code}}
```
Answer: ${{Answer}}

Begin.

Question: What is 37593 * 67?
```text
37593 * 67
```
...numexpr.evaluate("37593 * 67")...
```output
2518731
```
Answer: 2518731

Question: 37593^(1/5)
```text
37593**(1/5)
```
...numexpr.evaluate("37593**(1/5)")...
```output
8.222831614237718
```
Answer: 8.222831614237718

Question: {question}
question)input_variablestemplateN)langchain_core.prompts.promptr   _PROMPT_TEMPLATEPROMPT r	   r	   X/var/www/html/zoom/venv/lib/python3.10/site-packages/langchain/chains/llm_math/prompt.py<module>   s   %
