added hello-world test prompt

harrison/add-usage-readmes
davidtsong 1 year ago
parent d85d9c1bf3
commit 1eacc74221

@ -0,0 +1,27 @@
# Hello World
> A simple prompt as an example
## Configuration
- input_variables: []
- There are no inputs
- output_parser: null
- There is no output parsing needed
- template: 'Say hello world.'
- Just a simple hello.
template_format: f-string
- We use standard f-string formatting here.
## Usage
Ex:
```python3
from langchain.prompts import load_from_hub
from langchain.llms import OpenAI
from langchain.prompts.loading import load_prompt
llm = OpenAI(temperature=0.9)
# prompt = load_from_hub("hello-world/prompt.yaml")
output = llm(prompt.format())
print(output)
```

@ -0,0 +1,4 @@
input_variables: []
output_parser: null
template: 'Say hello world.'
template_format: f-string
Loading…
Cancel
Save