Skip to content

Commit 3df3a3b

Browse files
committed
Update Yutori Template model used to latest
1 parent be44da4 commit 3df3a3b

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

pkg/templates/python/yutori-computer-use/loop.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ async def screenshot(self) -> ToolResult:
4141

4242
async def sampling_loop(
4343
*,
44-
model: str = "n1-preview-2025-11",
44+
model: str = "n1-latest",
4545
task: str,
4646
api_key: str,
4747
kernel: Kernel,

pkg/templates/typescript/yutori-computer-use/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ app.action<QueryInput, QueryOutput>(
5050
// Run the sampling loop
5151
const mode = payload.mode ?? 'computer_use';
5252
const { finalAnswer, messages } = await samplingLoop({
53-
model: 'n1-preview-2025-11',
53+
model: 'n1-latest',
5454
task: payload.query,
5555
apiKey: YUTORI_API_KEY,
5656
kernel,

pkg/templates/typescript/yutori-computer-use/loop.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ interface SamplingLoopResult {
7272
}
7373

7474
export async function samplingLoop({
75-
model = 'n1-preview-2025-11',
75+
model = 'n1-latest',
7676
task,
7777
apiKey,
7878
kernel,

0 commit comments

Comments
 (0)