@elizaos/plugin-ollama 1.0.0 → 1.0.1
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.
- package/package.json +13 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elizaos/plugin-ollama",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -62,6 +62,18 @@
|
|
|
62
62
|
"OLLAMA_API_ENDPOINT": {
|
|
63
63
|
"type": "string",
|
|
64
64
|
"description": "The URL of the Ollama API"
|
|
65
|
+
},
|
|
66
|
+
"SMALL_MODEL": {
|
|
67
|
+
"type": "string",
|
|
68
|
+
"description": "Alternative small model name used if OLLAMA_SMALL_MODEL is not provided.",
|
|
69
|
+
"required": false,
|
|
70
|
+
"default": "gemma3:latest"
|
|
71
|
+
},
|
|
72
|
+
"LARGE_MODEL": {
|
|
73
|
+
"type": "string",
|
|
74
|
+
"description": "Alternative large model name used if OLLAMA_LARGE_MODEL is not provided.",
|
|
75
|
+
"required": false,
|
|
76
|
+
"default": "gemma3:latest"
|
|
65
77
|
}
|
|
66
78
|
}
|
|
67
79
|
},
|