fix prompt (#2979)

This commit is contained in:
LawyZheng
2025-07-18 10:33:03 +08:00
committed by GitHub
parent bdaca5994a
commit d26f016e10
2 changed files with 4 additions and 4 deletions

View File

@@ -38,8 +38,8 @@ Reply in JSON format with the following keys:
{% endif %}
}],{% if verification_code_check %}
"verification_code_reasoning": str, // Let's think step by step. Describe what you see and think if there is somewhere on the current page where you must enter the verification code now for login or any verification step. Explain why you believe a verification code needs to be entered somewhere or not. Do not imagine any place to enter the code if the code has not been sent yet.
"place_to_enter_verification_code": bool, // Whether there is a place on the current page to enter the verification code now. {% endif %}
"should_enter_verification_code": bool // Whether the user should proceed to enter the verification code
"place_to_enter_verification_code": bool, // Whether there is a place on the current page to enter the verification code now.
"should_enter_verification_code": bool // Whether the user should proceed to enter the verification code {% endif %}
}
Consider the action history from the last step and the screenshot together, if actions from the last step don't yield positive impact, try other actions or other action combinations.

View File

@@ -17,8 +17,8 @@ Reply in JSON format with the following keys:
"text": str, // The text to input.
}]{% if verification_code_check %}
"verification_code_reasoning": str, // Let's think step by step. Describe what you see and think if there is somewhere on the current page where you must enter the verification code now for login or any verification step. Explain why you believe a verification code needs to be entered somewhere or not. Do not imagine any place to enter the code if the code has not been sent yet.
"place_to_enter_verification_code": bool, // Whether there is a place on the current page to enter the verification code now. {% endif %}
"should_enter_verification_code": bool // Whether the user should proceed to enter the verification code
"place_to_enter_verification_code": bool, // Whether there is a place on the current page to enter the verification code now.
"should_enter_verification_code": bool // Whether the user should proceed to enter the verification code {% endif %}
}
User instruction: