Skip to content

Commit 152c961

Browse files
committed
Remove default viewport size comments from options
Updated comments in SamplingLoopOptions and SessionOptions to remove references to default viewport width and height values, clarifying that these fields are for coordinate scaling and viewport size without specifying defaults.
1 parent b582c81 commit 152c961

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@ interface SamplingLoopOptions {
5353
cdpWsUrl?: string;
5454
maxTokens?: number;
5555
maxIterations?: number;
56-
/** Viewport width for coordinate scaling (default: 1280 per Yutori recommendation) */
56+
/** Viewport width for coordinate scaling */
5757
viewportWidth?: number;
58-
/** Viewport height for coordinate scaling (default: 800 per Yutori recommendation) */
58+
/** Viewport height for coordinate scaling */
5959
viewportHeight?: number;
6060
/**
6161
* Browser interaction mode:

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ export interface SessionOptions {
1616
recordReplay?: boolean;
1717
/** Grace period in seconds before stopping replay */
1818
replayGracePeriod?: number;
19-
/** Viewport width (default: 1280 per Yutori recommendation) */
19+
/** Viewport width */
2020
viewportWidth?: number;
21-
/** Viewport height (default: 800 per Yutori recommendation) */
21+
/** Viewport height */
2222
viewportHeight?: number;
2323
}
2424

0 commit comments

Comments
 (0)