📚Variable
Intro
LLMs have the ability to recall and reference the data we declared.
We could compare this ability to declaring variables in any programming language.
How it work ?
You could use "ANY" method to declare a variable.
i.e.
a = "hello world"
a => "hello world"
a -> "hello world"
<a>helloworld<a>
{a}helloworld{a}
a > "hello world"
a => hello world
"""a
hello world
"""
Prompt Example
Last updated