Spaces:
Paused
Paused
matt HOFFNER
commited on
Commit
·
ad989b7
1
Parent(s):
e4fae68
fix key typo
Browse files- src/pages/api/llm.js +2 -2
src/pages/api/llm.js
CHANGED
@@ -27,8 +27,8 @@ export default function handler(req, res) {
|
|
27 |
];
|
28 |
|
29 |
const { googleCustomSearch, googleCustomSearchSchema } = new GoogleCustomSearch({
|
30 |
-
apiKey: process.env.
|
31 |
-
googleCSEId: process.env.
|
32 |
});
|
33 |
|
34 |
const functions = {
|
|
|
27 |
];
|
28 |
|
29 |
const { googleCustomSearch, googleCustomSearchSchema } = new GoogleCustomSearch({
|
30 |
+
apiKey: process.env.API_KEY,
|
31 |
+
googleCSEId: process.env.CONTEXT_KEY,
|
32 |
});
|
33 |
|
34 |
const functions = {
|