doc update - add run tasks page (#2425)

This commit is contained in:
Shuchang Zheng
2025-05-24 23:46:31 -07:00
committed by GitHub
parent 601cd099f7
commit 6f83978937
27 changed files with 1168 additions and 48 deletions

View File

@@ -0,0 +1,28 @@
TASK_PROMPT_EXAMPLES = [
"Find the top 3 posts on Hacker News.",
'Go to google finance, extract the "AAPL" stock price for me with the date.',
]
TASK_URL_EXAMPLES = [
"https://www.hackernews.com",
"https://www.google.com/finance",
]
ERROR_CODE_MAPPING_EXAMPLES = [
{"login_failed": "The login credentials are incorrect or the account is locked"},
{"maintenance_mode": "The website is down for maintenance"},
]
TOTP_IDENTIFIER_EXAMPLES = [
"john.doe@example.com",
"4155555555",
"user_123",
]
TOTP_URL_EXAMPLES = [
"https://my-totp-service.com/totp",
]
BROWSER_SESSION_ID_EXAMPLES = [
"pbs_123",
]