langchain/docs
Amos Ng 8baf6fb920
Update examples to fix execution problems (#685)
On the [Getting Started
page](https://langchain.readthedocs.io/en/latest/modules/prompts/getting_started.html)
for prompt templates, I believe the very last example

```python
print(dynamic_prompt.format(adjective=long_string))
```

should actually be

```python
print(dynamic_prompt.format(input=long_string))
```

The existing example produces `KeyError: 'input'` as expected

***

On the [Create a custom prompt
template](https://langchain.readthedocs.io/en/latest/modules/prompts/examples/custom_prompt_template.html#id1)
page, I believe the line

```python
Function Name: {kwargs["function_name"]}
```

should actually be

```python
Function Name: {kwargs["function_name"].__name__}
```

The existing example produces the prompt:

```
        Given the function name and source code, generate an English language explanation of the function.
        Function Name: <function get_source_code at 0x7f907bc0e0e0>
        Source Code:
        def get_source_code(function_name):
    # Get the source code of the function
    return inspect.getsource(function_name)

        Explanation:
```

***

On the [Example
Selectors](https://langchain.readthedocs.io/en/latest/modules/prompts/examples/example_selectors.html)
page, the first example does not define `example_prompt`, which is also
subtly different from previous example prompts used. For user
convenience, I suggest including

```python
example_prompt = PromptTemplate(
    input_variables=["input", "output"],
    template="Input: {input}\nOutput: {output}",
)
```

in the code to be copy-pasted
2023-01-22 14:49:25 -08:00
..
_static/css improve css (#615) 2023-01-14 07:39:29 -08:00
ecosystem docs: small typo on serpapi.md (#693) 2023-01-22 13:10:24 -08:00
getting_started Docs refactor (#480) 2023-01-02 08:24:09 -08:00
modules Update examples to fix execution problems (#685) 2023-01-22 14:49:25 -08:00
reference Harrison/wolfram alpha (#579) 2023-01-11 05:52:19 -08:00
use_cases feat: add custom prompt for QAEvalChain chain (#610) 2023-01-14 07:23:48 -08:00
conf.py improve css (#615) 2023-01-14 07:39:29 -08:00
deployments.md Harrison/deployments (#572) 2023-01-10 07:41:16 -08:00
ecosystem.rst Docs refactor (#480) 2023-01-02 08:24:09 -08:00
gallery.rst Add subsection for colab notebooks (#599) 2023-01-12 18:16:55 -08:00
glossary.md Feature: linkcheck-action (#534) (#542) 2023-01-04 21:39:50 -08:00
index.rst Harrison/deployments (#572) 2023-01-10 07:41:16 -08:00
make.bat initial commit 2022-10-24 14:51:15 -07:00
Makefile Feature: linkcheck-action (#534) (#542) 2023-01-04 21:39:50 -08:00
reference.rst Feature: linkcheck-action (#534) (#542) 2023-01-04 21:39:50 -08:00
requirements.txt Docs refactor (#480) 2023-01-02 08:24:09 -08:00