File size: 543 Bytes
b7d3231
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32

---
tags:
- langchain
- prompt
---

# Description of LLM Bash Prompt

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, prompt=prompt)
```