We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4db3d97 commit 94bcdb6Copy full SHA for 94bcdb6
docs/index.md
@@ -442,7 +442,7 @@ messages = [{
442
messages = [{"role": "user", "content": "Help me fix the ValueError in main.py"}]
443
while True:
444
lm_output = query_lm(messages)
445
- print("LM output", output)
+ print("LM output", lm_output)
446
messages.append({"role": "assistant", "content": lm_output}) # remember what the LM said
447
action = parse_action(lm_output) # separate the action from output
448
print("Action", action)
0 commit comments