Skip to content

Commit 21f9c13

Browse files
committed
Fix: no-json-in-text error while using advanced mode
1 parent 8de8816 commit 21f9c13

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

core.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,15 @@ def initialize():
2323
"""
2424
logger(f"Launch. Software version {config.VERSION_NUMBER}, platform {sys.platform}")
2525

26-
def askgpt(system_prompt: str, user_prompt: str, model_name: str):
26+
def askgpt(system_prompt: str, user_prompt: str, model_name: str, disable_json_mode: bool = False, image_url: str = None):
2727
"""
2828
Interacts with ChatGPT using the specified prompts.
2929
3030
Args:
3131
system_prompt (str): The system prompt.
3232
user_prompt (str): The user prompt.
33+
model_name (str): The model name to use.
34+
disable_json_mode (bool): Whether to disable JSON mode.
3335
3436
Returns:
3537
str: The response from ChatGPT.

0 commit comments

Comments
 (0)