You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
langchain-hub/prompts/hello-world
Anonymous abb92d82ad updated readme 1 year ago
..
README.md updated readme 1 year ago
prompt.yaml added hello-world test prompt 1 year ago

README.md

Description of Hello World

Basic prompt designed to be use as a test case, will just instruct the LLM to say "Hello World".

Inputs

This prompt doesn't have any inputs.

Usage

Below is a code snippet for how to use the prompt.

from langchain.prompts import load_prompt
from langchain.chains import LLMChain

llm = ...
prompt = load_prompt('lc://prompts/hello-world/<file-name>')
chain = LLMChain(llm=llm, prompt=prompt)