Merge pull request #14857 from Classic298/feat/code-interpreter-url-param

feat: Enable Code Interpreter using URL Parameter
This commit is contained in:
Tim Jaeryang Baek 2025-06-16 09:57:25 +04:00 committed by GitHub
commit 37658e06a2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -803,6 +803,10 @@
imageGenerationEnabled = true;
}
if ($page.url.searchParams.get('code-interpreter') === 'true') {
codeInterpreterEnabled = true;
}
if ($page.url.searchParams.get('tools')) {
selectedToolIds = $page.url.searchParams
.get('tools')