contentoh-components-library 21.5.66 → 21.5.68
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -33,7 +33,7 @@ var _attribute = require("../ai/prompts/attribute.prompt");
|
|
|
33
33
|
|
|
34
34
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
35
35
|
|
|
36
|
-
var GeminiApiKey = process.env.
|
|
36
|
+
var GeminiApiKey = process.env.REACT_APP_GEMINI_API_KEY;
|
|
37
37
|
var AiProductEdition = /*#__PURE__*/(0, _react.createContext)();
|
|
38
38
|
exports.AiProductEdition = AiProductEdition;
|
|
39
39
|
|
package/package.json
CHANGED
|
@@ -9,7 +9,7 @@ import { GoogleGenAI } from "@google/genai";
|
|
|
9
9
|
import { generateDescriptionPrompt } from "../ai/prompts/description.prompt";
|
|
10
10
|
import { generateAttributePrompt } from "../ai/prompts/attribute.prompt";
|
|
11
11
|
|
|
12
|
-
const GeminiApiKey = process.env.
|
|
12
|
+
const GeminiApiKey = process.env.REACT_APP_GEMINI_API_KEY;
|
|
13
13
|
|
|
14
14
|
export const AiProductEdition = createContext();
|
|
15
15
|
|