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 a1dbedc
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions utils/gptFunctions.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,19 @@
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")
:param context: str: (Default value = system_message)
:param query: str: (Default value = "Hi!")
:param model: str: (Default value = "gpt-4o")
: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 a1dbedc

Please sign in to comment.