Skip to content

Commit 76da098

Browse files
authored
feat(tarko-agent): remove engine-selector from agent kernel (#1576)
1 parent 87dd3b9 commit 76da098

File tree

115 files changed

+5189
-5073
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

115 files changed

+5189
-5073
lines changed

multimodal/agent-tars/core/src/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export type BuiltInMCPServers = Partial<Record<BuiltInMCPServerName, McpServer>>
1616

1717
/**
1818
* Browser state information for tracking current page status
19-
*
19+
*
2020
* This interface tracks the current browser state including URL and screenshot
2121
* for use in tool results and event streams.
2222
*/

multimodal/tarko/agent/examples/custom-tool-call-engine/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Always provide helpful and accurate responses based on the search results.`,
1414

1515
model: {
1616
provider: 'volcengine',
17-
id: 'ep-20250510145437-5sxhs',
17+
id: 'doubao-seed-1-6-vision-250815',
1818
apiKey: process.env.ARK_API_KEY,
1919
},
2020

multimodal/tarko/agent/examples/gui-agent/archived/gui-agent-as-tool-rest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ async function main() {
5151
tools: [guiAgentTool],
5252
model: {
5353
provider: 'volcengine',
54-
id: 'ep-20250510145437-5sxhs', // 'doubao-1.5-thinking-vision-pro',
54+
id: 'doubao-seed-1-6-vision-250815',
5555
apiKey: process.env.ARK_API_KEY,
5656
},
5757
toolCallEngine: 'prompt_engineering',

multimodal/tarko/agent/examples/gui-agent/archived/gui-agent-request-test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ finished(content='xxx') # Use escape characters \\', \\", and \\n in content par
4141
## User Instruction`,
4242
model: {
4343
provider: 'volcengine',
44-
id: 'ep-20250510145437-5sxhs', // 'doubao-1.5-thinking-vision-pro',
44+
id: 'doubao-seed-1-6-vision-250815',
4545
apiKey: process.env.ARK_API_KEY,
4646
},
4747
});

multimodal/tarko/agent/examples/gui-agent/basic.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -313,14 +313,13 @@ export const agent = new BrowserGUIAgent({
313313
instructions: `You are a GUI Agent, you are good at using browser_action_tool to solve user problems`,
314314
model: {
315315
provider: 'volcengine',
316-
id: 'ep-20250510145437-5sxhs', // 'doubao-1.5-thinking-vision-pro',
316+
id: 'doubao-seed-1-6-vision-250815',
317317
apiKey: process.env.ARK_API_KEY,
318318
// TODO: Support Claude 3.7
319319
// provider: 'azure-openai',
320320
// baseURL: process.env.AWS_CLAUDE_API_BASE_URL,
321321
// id: 'aws_sdk_claude37_sonnet',
322322
},
323-
toolCallEngine: 'structured_outputs',
324323
logLevel: LogLevel.DEBUG,
325324
});
326325

multimodal/tarko/agent/examples/model-providers/volcengine.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ async function main() {
1616
const agent = new Agent({
1717
model: {
1818
provider: 'volcengine',
19-
id: 'ep-20250510145437-5sxhs', // 'doubao-1.5-thinking-vision-pro',
19+
id: 'doubao-seed-1-6-vision-250815',
2020
apiKey: process.env.ARK_API_KEY,
2121
},
2222
});

multimodal/tarko/agent/examples/planner/basic.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -558,7 +558,7 @@ export const agent = new PlannerAgent({
558558
logLevel: LogLevel.INFO,
559559
model: {
560560
provider: 'volcengine',
561-
id: 'ep-20250510145437-5sxhs', // 'doubao-1.5-thinking-vision-pro',
561+
id: 'doubao-seed-1-6-vision-250815',
562562
apiKey: process.env.ARK_API_KEY,
563563
},
564564
maxIterations: 100,

multimodal/tarko/agent/examples/streaming/tool-calls-prompt-engineering-impl.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const weatherTool = new Tool({
4040
export const agent = new Agent({
4141
model: {
4242
provider: 'volcengine',
43-
id: 'ep-20250510145437-5sxhs',
43+
id: 'doubao-seed-1-6-vision-250815',
4444
apiKey: process.env.ARK_API_KEY,
4545
},
4646
tools: [locationTool, weatherTool],

multimodal/tarko/agent/examples/streaming/tool-calls-structured-outputs-impl.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const weatherTool = new Tool({
4040
export const agent = new Agent({
4141
model: {
4242
// provider: 'volcengine',
43-
// id: 'ep-20250510145437-5sxhs',
43+
id: 'doubao-seed-1-6-vision-250815',
4444
// apiKey: process.env.ARK_API_KEY,
4545
provider: 'azure-openai',
4646
baseURL: process.env.AWS_CLAUDE_API_BASE_URL,

multimodal/tarko/agent/examples/streaming/tool-calls.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const weatherTool = new Tool({
4040
export const agent = new Agent({
4141
model: {
4242
provider: 'volcengine',
43-
id: 'ep-20250510145437-5sxhs',
43+
id: 'doubao-seed-1-6-vision-250815',
4444
apiKey: process.env.ARK_API_KEY,
4545
},
4646
tools: [locationTool, weatherTool],

0 commit comments

Comments
 (0)