Skip to content

Commit 7ea7e41

Browse files
committed
feat: add chat model to boost config
1 parent 43aa683 commit 7ea7e41

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

config/boost.php

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,9 @@
88
'token' => env('BOOST_HOSTED_TOKEN'),
99
],
1010
'chat' => [
11+
'model' => 'gpt-4o-mini', // recommend gpt-4o
1112
'openai_api_key' => env('BOOST_OPENAI_API_KEY', env('OPENAI_API_KEY')),
1213
],
13-
'process_isolation' => [
14-
'enabled' => env('BOOST_PROCESS_ISOLATION', true), // Enable by default for development
15-
'timeout' => env('BOOST_PROCESS_TIMEOUT', 180), // 3 minutes
16-
'max_concurrent' => env('BOOST_PROCESS_MAX_CONCURRENT', 5),
17-
],
1814
'mcp' => [
1915
'tools' => [
2016
'exclude' => [ // Exclude built-in tools
@@ -33,4 +29,9 @@
3329
'include' => [],
3430
],
3531
],
32+
'process_isolation' => [
33+
'enabled' => env('BOOST_PROCESS_ISOLATION', true), // Enable by default for development
34+
'timeout' => env('BOOST_PROCESS_TIMEOUT', 180), // 3 minutes
35+
'max_concurrent' => env('BOOST_PROCESS_MAX_CONCURRENT', 5),
36+
],
3637
];

0 commit comments

Comments
 (0)