Merge pull request #164 from mobilemike/patch-1

[Docs] Correct getting started typo
This commit is contained in:
William Guss
2024-09-13 16:30:45 -07:00
committed by GitHub

View File

@@ -98,7 +98,7 @@ While the previous example used the docstring for the system message and the ret
greeting = hello("Sam Altman")
print(greeting)
This approach allows you to construct more complex conversations within your LMP. Importantly, you'll want to use this approach when you have a variable system prompt because python only allows you to have a static system prompt.
This approach allows you to construct more complex conversations within your LMP. Importantly, you'll want to use this approach when you have a variable system prompt because python only allows you to have a static docstring.
Prompting as Language Model Programming
----------------------------------------