Skip to content

Commit

Permalink
read context from correct path
Browse files Browse the repository at this point in the history
  • Loading branch information
javierluraschi committed Aug 16, 2024
1 parent 80810c8 commit a82299d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/hal9/tools/hal9.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def hal9_reply(prompt):
'prompt' to respond to.
"""

context = open('tool_hal9.txt', 'r').read()
context = open('tools/hal9.txt', 'r').read()
messages = [
{"role": "system", "content": context},
{"role": "user", "content": prompt}
Expand Down

0 comments on commit a82299d

Please sign in to comment.