Spaces:
Sleeping
Sleeping
Update aiEngine.js
Browse files- 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
|
| 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
|
| 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: {} }],
|