Skip to content

Commit

Permalink
Automated formatting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
restyled-io[bot] authored Jul 11, 2024
1 parent 061f693 commit 99a6570
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions utils/gptFunctions.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,13 @@
def perform_gpt_query(
context: str = system_message, query: str = "Hi!", model: str = "gpt-4o"
) -> str:
"""
:param context: str: (Default value = system_message)
:param query: str: (Default value = "Hi!")
:param model: str: (Default value = "gpt-4o")
"""
if model not in models:
return f"Invalid model. Please run the prompting help command to find the right model to use."
try:
Expand Down

0 comments on commit 99a6570

Please sign in to comment.