Skip to content

Commit

Permalink
add llm
Browse files Browse the repository at this point in the history
  • Loading branch information
erexer committed Jan 14, 2025
1 parent 3563bc4 commit 0b6f373
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions format_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,13 @@
)

chain = prompt | llm
chain.invoke(
ai_msg = chain.invoke(
{
"language": "Python",
"input": "Go through all the scripts in this repository and provide detailed feedback and suggestions on how to make the scripts easier to read, cleaner, and more reproducible.",
}
)

print(chain)
print(chain)
print(ai_msg)
print(ai_msg.content)

0 comments on commit 0b6f373

Please sign in to comment.