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
if (!argString) {
throw new InvokeError(
InvokeErrorType.NO_TOOL_CALL,
InvokeErrorType.INVALID_TOOL_ARGS,
'No tool call arguments found',
normalizedData
)

View File

@@ -120,9 +120,9 @@ function safeJsonParse(input: any): any {
}
/**
* Retrieve the JSON part from a string.
* - treat content between the first `{` and the last `}` as JSON.
* - try to parse as JSON, return the parsed result if successful, otherwise return null.
* Extract and parse JSON from a string.
* - Treat content between the first `{` and the last `}` as JSON.
* - 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 {
try {