everydaycats commited on
Commit
71c46c8
·
verified ·
1 Parent(s): d7cfd51

Update aiEngine.js

Browse files
Files changed (1) hide show
  1. aiEngine.js +2 -2
aiEngine.js CHANGED
@@ -17,7 +17,7 @@ export const AIEngine = {
17
  * Uses High-Reasoning Model
18
  */
19
  callPM: async (history, input) => {
20
- const modelId = 'gemini-3.0-pro-preview';
21
 
22
  const config = {
23
  thinkingConfig: { thinkingLevel: 'HIGH' },
@@ -50,7 +50,7 @@ export const AIEngine = {
50
  * Uses Flash Model (Fast) + Image Support
51
  */
52
  callWorker: async (history, input, images = []) => {
53
- const modelId = 'gemini-3.0-pro-preview';
54
  const config = {
55
  thinkingConfig: { thinkingLevel: 'HIGH' },
56
  tools: [{ googleSearch: {} }],
 
17
  * Uses High-Reasoning Model
18
  */
19
  callPM: async (history, input) => {
20
+ const modelId = 'gemini-3-pro-preview';
21
 
22
  const config = {
23
  thinkingConfig: { thinkingLevel: 'HIGH' },
 
50
  * Uses Flash Model (Fast) + Image Support
51
  */
52
  callWorker: async (history, input, images = []) => {
53
+ const modelId = 'gemini-3-pro-preview';
54
  const config = {
55
  thinkingConfig: { thinkingLevel: 'HIGH' },
56
  tools: [{ googleSearch: {} }],