Skip to content

Commit fad59bf

Browse files
committed
Publish version v0.2.27
1 parent 093b26f commit fad59bf

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

apps/studio/electron/main/chat/index.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,6 @@ class LlmManager {
9191
maxSteps: 10,
9292
tools: chatToolSet,
9393
maxTokens: 64000,
94-
headers: {
95-
'anthropic-beta': 'output-128k-2025-02-19',
96-
},
9794
onStepFinish: ({ toolResults }) => {
9895
for (const toolResult of toolResults) {
9996
this.emitMessagePart(toolResult);

apps/studio/electron/main/chat/llmProvider.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ async function getAnthropicProvider(
4646
config.headers = {
4747
Authorization: `Bearer ${authTokens.accessToken}`,
4848
'X-Onlook-Request-Type': payload.requestType,
49+
'anthropic-beta': 'output-128k-2025-02-19',
4950
};
5051
}
5152

apps/studio/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"productName": "Onlook",
33
"name": "@onlook/studio",
4-
"version": "0.2.26",
4+
"version": "0.2.27",
55
"homepage": "https://onlook.com",
66
"main": "dist-electron/main/index.js",
77
"description": "The first-ever devtool for designers",

0 commit comments

Comments
 (0)