Skip to content

Commit

Permalink
docs: spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
iislucas committed Oct 29, 2024
1 parent 77a332b commit 726d6f9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ support for Large Language Model Templates.
The key idea is to track "named-holes" in templates at type-checking (typing)
time. This means:

- You never need to debug an accidental subsitution for the wrong variable name.
- You can substite for some variables but not others, in any order you like, and the remaining
- You never need to debug an accidental substitution for the wrong variable name.
- You can substitute for some variables but not others, in any order you like, and the remaining
variables are tracked in the type.
- You can subsitute templates with more holes into a named-hole in a template, and you get the
- You can substitute templates with more holes into a named-hole in a template, and you get the
correct remaining holes in the right places in the final template.
- The same hole can appear in multiple places, subsitution substitutes it everywhere, as you would
- The same hole can appear in multiple places, substitution substitutes it everywhere, as you would
expect.
- There is support for few-shot prompts (where you have some iterated template
over a data strutcure).
- There is support for few-shot prompts (where you have some iterated sub-template over a data
structure).

Here's a mini-example:

Expand Down

0 comments on commit 726d6f9

Please sign in to comment.