small bug fix

Esse commit está contido em:
alckasoc
2025-10-04 02:40:47 +00:00
commit 9597193bd5
2 arquivos alterados com 10 adições e 4 exclusões
+5 -3
Ver Arquivo
@@ -72,9 +72,11 @@ def call_llm_formatted(generator, format_checkers, **kwargs):
max_retries = 3 # Set the maximum number of retries max_retries = 3 # Set the maximum number of retries
attempt = 0 attempt = 0
response = "" response = ""
messages = ( if kwargs.get("messages") is None:
generator.messages.copy() messages = generator.messages.copy() # Copy messages to avoid modifying the original
) # Copy messages to avoid modifying the original else:
messages = kwargs["messages"]
del kwargs["messages"] # Remove messages from kwargs to avoid passing it twice
while attempt < max_retries: while attempt < max_retries:
response = call_llm_safe(generator, messages=messages, **kwargs) response = call_llm_safe(generator, messages=messages, **kwargs)
+5 -1
Ver Arquivo
@@ -45,7 +45,11 @@ async def generate_single_fact_caption(
# Generate fact caption using behavior narrator # Generate fact caption using behavior narrator
result = await asyncio.to_thread( result = await asyncio.to_thread(
judge.judge, before_bytes, after_bytes, pyautogui_action judge.judge,
screenshot_num=i + 1,
before_img_bytes=before_bytes,
after_img_bytes=after_bytes,
pyautogui_action=pyautogui_action,
) )
result["screenshot_num"] = i + 1 result["screenshot_num"] = i + 1