You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-11-29 22:27:42 +02:00
Main build (Jenkins)
This commit is contained in:
6
docs/en/examples/Ollama/CheckBlob.txt
vendored
6
docs/en/examples/Ollama/CheckBlob.txt
vendored
@@ -1,6 +1,6 @@
|
||||
URL = FunctionParameters["Ollama_URL"];
|
||||
Token = FunctionParameters["Ollama_Token"]; // Authorization - not part API Ollama
|
||||
SHA256 = FunctionParameters["Ollama_Blob"];
|
||||
URL = "https://hut.openintegrations.dev/ollama";
|
||||
Token = "12We34..."; // Authorization - not part API Ollama
|
||||
SHA256 = "6f721f23bcce683da2d7d00ddf81d41fe7dc4266942702b7963c91de82ac17dc";
|
||||
|
||||
AdditionalHeaders = New Map;
|
||||
AdditionalHeaders.Insert("Authorization", StrTemplate("Bearer %1", Token));
|
||||
|
||||
4
docs/en/examples/Ollama/CopyModel.txt
vendored
4
docs/en/examples/Ollama/CopyModel.txt
vendored
@@ -1,5 +1,5 @@
|
||||
URL = FunctionParameters["Ollama_URL"];
|
||||
Token = FunctionParameters["Ollama_Token"]; // Authorization - not part API Ollama
|
||||
URL = "https://hut.openintegrations.dev/ollama";
|
||||
Token = "12We34..."; // Authorization - not part API Ollama
|
||||
|
||||
Model = "mario";
|
||||
Name = "mario2";
|
||||
|
||||
4
docs/en/examples/Ollama/CreateModel.txt
vendored
4
docs/en/examples/Ollama/CreateModel.txt
vendored
@@ -1,5 +1,5 @@
|
||||
URL = FunctionParameters["Ollama_URL"];
|
||||
Token = FunctionParameters["Ollama_Token"]; // Authorization - not part API Ollama
|
||||
URL = "https://hut.openintegrations.dev/ollama";
|
||||
Token = "12We34..."; // Authorization - not part API Ollama
|
||||
|
||||
Model = "mario";
|
||||
|
||||
|
||||
4
docs/en/examples/Ollama/DeleteModel.txt
vendored
4
docs/en/examples/Ollama/DeleteModel.txt
vendored
@@ -1,5 +1,5 @@
|
||||
URL = FunctionParameters["Ollama_URL"];
|
||||
Token = FunctionParameters["Ollama_Token"]; // Authorization - not part API Ollama
|
||||
URL = "https://hut.openintegrations.dev/ollama";
|
||||
Token = "12We34..."; // Authorization - not part API Ollama
|
||||
|
||||
Model = "mario";
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
URL = FunctionParameters["Ollama_URL"];
|
||||
Token = FunctionParameters["Ollama_Token"]; // Authorization - not part API Ollama
|
||||
URL = "https://hut.openintegrations.dev/ollama";
|
||||
Token = "12We34..."; // Authorization - not part API Ollama
|
||||
|
||||
AdditionalHeaders = New Map;
|
||||
AdditionalHeaders.Insert("Authorization", StrTemplate("Bearer %1", Token));
|
||||
|
||||
4
docs/en/examples/Ollama/GetEmbeddings.txt
vendored
4
docs/en/examples/Ollama/GetEmbeddings.txt
vendored
@@ -1,5 +1,5 @@
|
||||
URL = FunctionParameters["Ollama_URL"];
|
||||
Token = FunctionParameters["Ollama_Token"]; // Authorization - not part API Ollama
|
||||
URL = "https://hut.openintegrations.dev/ollama";
|
||||
Token = "12We34..."; // Authorization - not part API Ollama
|
||||
|
||||
StingsArray = New Array;
|
||||
StingsArray.Add("Why is the sky blue?");
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
URL = FunctionParameters["Ollama_URL"];
|
||||
Token = FunctionParameters["Ollama_Token"]; // Authorization - not part API Ollama
|
||||
URL = "https://hut.openintegrations.dev/ollama";
|
||||
Token = "12We34..."; // Authorization - not part API Ollama
|
||||
|
||||
Model = "mario";
|
||||
|
||||
|
||||
4
docs/en/examples/Ollama/GetModelList.txt
vendored
4
docs/en/examples/Ollama/GetModelList.txt
vendored
@@ -1,5 +1,5 @@
|
||||
URL = FunctionParameters["Ollama_URL"];
|
||||
Token = FunctionParameters["Ollama_Token"]; // Authorization - not part API Ollama
|
||||
URL = "https://hut.openintegrations.dev/ollama";
|
||||
Token = "12We34..."; // Authorization - not part API Ollama
|
||||
|
||||
AdditionalHeaders = New Map;
|
||||
AdditionalHeaders.Insert("Authorization", StrTemplate("Bearer %1", Token));
|
||||
|
||||
4
docs/en/examples/Ollama/GetResponse.txt
vendored
4
docs/en/examples/Ollama/GetResponse.txt
vendored
@@ -1,5 +1,5 @@
|
||||
URL = FunctionParameters["Ollama_URL"];
|
||||
Token = FunctionParameters["Ollama_Token"]; // Authorization - not part API Ollama
|
||||
URL = "https://hut.openintegrations.dev/ollama";
|
||||
Token = "12We34..."; // Authorization - not part API Ollama
|
||||
|
||||
Prompt = "What is 1C:Enterprise?";
|
||||
Model = "tinyllama";
|
||||
|
||||
4
docs/en/examples/Ollama/GetVersion.txt
vendored
4
docs/en/examples/Ollama/GetVersion.txt
vendored
@@ -1,5 +1,5 @@
|
||||
URL = FunctionParameters["Ollama_URL"];
|
||||
Token = FunctionParameters["Ollama_Token"]; // Authorization - not part API Ollama
|
||||
URL = "https://hut.openintegrations.dev/ollama";
|
||||
Token = "12We34..."; // Authorization - not part API Ollama
|
||||
|
||||
AdditionalHeaders = New Map;
|
||||
AdditionalHeaders.Insert("Authorization", StrTemplate("Bearer %1", Token));
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
URL = FunctionParameters["Ollama_URL"];
|
||||
Token = FunctionParameters["Ollama_Token"]; // Authorization - not part API Ollama
|
||||
URL = "https://hut.openintegrations.dev/ollama";
|
||||
Token = "12We34..."; // Authorization - not part API Ollama
|
||||
|
||||
AdditionalHeaders = New Map;
|
||||
AdditionalHeaders.Insert("Authorization", StrTemplate("Bearer %1", Token));
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
URL = FunctionParameters["Ollama_URL"];
|
||||
Token = FunctionParameters["Ollama_Token"]; // Authorization - not part API Ollama
|
||||
URL = "https://hut.openintegrations.dev/ollama";
|
||||
Token = "12We34..."; // Authorization - not part API Ollama
|
||||
|
||||
Model = "tinyllama";
|
||||
Period = 500;
|
||||
|
||||
4
docs/en/examples/Ollama/PullModel.txt
vendored
4
docs/en/examples/Ollama/PullModel.txt
vendored
@@ -1,5 +1,5 @@
|
||||
URL = FunctionParameters["Ollama_URL"];
|
||||
Token = FunctionParameters["Ollama_Token"]; // Authorization - not part API Ollama
|
||||
URL = "https://hut.openintegrations.dev/ollama";
|
||||
Token = "12We34..."; // Authorization - not part API Ollama
|
||||
|
||||
Model = "tinyllama";
|
||||
|
||||
|
||||
6
docs/en/examples/Ollama/PushBlob.txt
vendored
6
docs/en/examples/Ollama/PushBlob.txt
vendored
@@ -1,7 +1,7 @@
|
||||
URL = FunctionParameters["Ollama_URL"];
|
||||
Token = FunctionParameters["Ollama_Token"]; // Authorization - not part API Ollama
|
||||
URL = "https://hut.openintegrations.dev/ollama";
|
||||
Token = "12We34..."; // Authorization - not part API Ollama
|
||||
|
||||
Image = FunctionParameters["Picture"]; // URL, Path or Binary Data
|
||||
Image = "https://hut.openintegrations.dev/test_data/picture.jpg"; // URL, Path or Binary Data
|
||||
|
||||
AdditionalHeaders = New Map;
|
||||
AdditionalHeaders.Insert("Authorization", StrTemplate("Bearer %1", Token));
|
||||
|
||||
4
docs/en/examples/Ollama/PushModel.txt
vendored
4
docs/en/examples/Ollama/PushModel.txt
vendored
@@ -1,5 +1,5 @@
|
||||
URL = FunctionParameters["Ollama_URL"];
|
||||
Token = FunctionParameters["Ollama_Token"]; // Authorization - not part API Ollama
|
||||
URL = "https://hut.openintegrations.dev/ollama";
|
||||
Token = "12We34..."; // Authorization - not part API Ollama
|
||||
|
||||
Model = "bayselonarrend/tinyllama:latest";
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
URL = FunctionParameters["Ollama_URL"];
|
||||
Token = FunctionParameters["Ollama_Token"]; // Authorization - not part API Ollama
|
||||
URL = "https://hut.openintegrations.dev/ollama";
|
||||
Token = "12We34..."; // Authorization - not part API Ollama
|
||||
|
||||
Model = "tinyllama";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user