garriga 1.0.4 → 1.0.5

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.
Files changed (2) hide show
  1. package/index.js +4 -0
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -209,6 +209,10 @@ class localLLM {
209
209
  userToken,
210
210
  source = process.env.LOCALMODEL || "mistral7b-genei:latest",
211
211
  ) {
212
+ console.log(
213
+ `garriga, llamando al LLm local, modelo ${source} ya que process.env.LOCALMODEL es ${process.env.LOCALMODEL}`,
214
+ );
215
+
212
216
  if (userToken === "modeloLocalOllama") {
213
217
  try {
214
218
  const response = await axios.post(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "garriga",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "AI connector",
5
5
  "main": "index.js",
6
6
  "scripts": {