Merge branch 'refactor/mv-brain-outof-llms' of https://github.com/alibaba/page-agent into refactor/mv-brain-outof-llms

This commit is contained in:
Simon
2026-01-13 14:22:48 +08:00
2 changed files with 4 additions and 4 deletions

View File

@@ -145,7 +145,7 @@ export class OpenAIClient implements LLMClient {
const argString = normalizedChoice.message?.tool_calls?.[0]?.function?.arguments const argString = normalizedChoice.message?.tool_calls?.[0]?.function?.arguments
if (!argString) { if (!argString) {
throw new InvokeError( throw new InvokeError(
InvokeErrorType.NO_TOOL_CALL, InvokeErrorType.INVALID_TOOL_ARGS,
'No tool call arguments found', 'No tool call arguments found',
normalizedData normalizedData
) )

View File

@@ -120,9 +120,9 @@ function safeJsonParse(input: any): any {
} }
/** /**
* Retrieve the JSON part from a string. * Extract and parse JSON from a string.
* - treat content between the first `{` and the last `}` as JSON. * - Treat content between the first `{` and the last `}` as JSON.
* - try to parse as JSON, return the parsed result if successful, otherwise return null. * - Try to parse that content as JSON and return the parsed value (object/array/primitive) if successful, otherwise return null.
*/ */
function retrieveJsonFromString(str: string): any { function retrieveJsonFromString(str: string): any {
try { try {