@digipair/skill-ollama 0.32.7 → 0.33.0
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 +1 -1
- package/schema.en.json +0 -98
package/package.json
CHANGED
package/schema.en.json
DELETED
@@ -1,98 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"openapi": "3.0.0",
|
3
|
-
"info": {
|
4
|
-
"title": "@digipair/skill-ollama",
|
5
|
-
"summary": "Communication with an Ollama server",
|
6
|
-
"description": "Execution of LLM models via an Ollama server.",
|
7
|
-
"version": "0.1.0",
|
8
|
-
"x-icon": "🚀"
|
9
|
-
},
|
10
|
-
"paths": {
|
11
|
-
"/model": {
|
12
|
-
"post": {
|
13
|
-
"tags": ["service"],
|
14
|
-
"summary": "Ollama LLM Model",
|
15
|
-
"description": "Execution of an LLM model from an Ollama server",
|
16
|
-
"parameters": [
|
17
|
-
{
|
18
|
-
"name": "model",
|
19
|
-
"summary": "Model Name",
|
20
|
-
"required": true,
|
21
|
-
"description": "Name of the LLM model to load",
|
22
|
-
"schema": {
|
23
|
-
"type": "string"
|
24
|
-
}
|
25
|
-
},
|
26
|
-
{
|
27
|
-
"name": "temperature",
|
28
|
-
"summary": "Temperature",
|
29
|
-
"required": false,
|
30
|
-
"description": "Temperature of the LLM model",
|
31
|
-
"schema": {
|
32
|
-
"type": "number"
|
33
|
-
}
|
34
|
-
},
|
35
|
-
{
|
36
|
-
"name": "baseUrl",
|
37
|
-
"summary": "Server Address",
|
38
|
-
"required": false,
|
39
|
-
"description": "Address of the Ollama server",
|
40
|
-
"schema": {
|
41
|
-
"type": "string"
|
42
|
-
}
|
43
|
-
},
|
44
|
-
{
|
45
|
-
"name": "format",
|
46
|
-
"summary": "Output Format",
|
47
|
-
"required": false,
|
48
|
-
"description": "Output format of the data generated by the model",
|
49
|
-
"schema": {
|
50
|
-
"type": "string"
|
51
|
-
}
|
52
|
-
}
|
53
|
-
],
|
54
|
-
"x-events": []
|
55
|
-
}
|
56
|
-
},
|
57
|
-
"/embeddings": {
|
58
|
-
"post": {
|
59
|
-
"tags": ["service"],
|
60
|
-
"summary": "Ollama Embeddings Model",
|
61
|
-
"description": "Execution of an embeddings model from an Ollama server",
|
62
|
-
"parameters": [
|
63
|
-
{
|
64
|
-
"name": "model",
|
65
|
-
"summary": "Model Name",
|
66
|
-
"required": true,
|
67
|
-
"description": "Name of the embeddings model to load",
|
68
|
-
"schema": {
|
69
|
-
"type": "string"
|
70
|
-
}
|
71
|
-
},
|
72
|
-
{
|
73
|
-
"name": "temperature",
|
74
|
-
"summary": "Temperature",
|
75
|
-
"required": false,
|
76
|
-
"description": "Temperature of the embeddings model",
|
77
|
-
"schema": {
|
78
|
-
"type": "number"
|
79
|
-
}
|
80
|
-
},
|
81
|
-
{
|
82
|
-
"name": "baseUrl",
|
83
|
-
"summary": "Server Address",
|
84
|
-
"required": false,
|
85
|
-
"description": "Address of the Ollama server",
|
86
|
-
"schema": {
|
87
|
-
"type": "string"
|
88
|
-
}
|
89
|
-
}
|
90
|
-
],
|
91
|
-
"x-events": []
|
92
|
-
}
|
93
|
-
}
|
94
|
-
},
|
95
|
-
"components": {
|
96
|
-
"schemas": {}
|
97
|
-
}
|
98
|
-
}
|