1
0
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:
Vitaly the Alpaca (bot)
2025-10-21 11:36:43 +03:00
parent bd42f76940
commit aa10e4c564
3592 changed files with 27015 additions and 19226 deletions

View File

@@ -34,8 +34,8 @@ Method at API documentation: [Generate a chat completion](https://github.com/oll
```bsl title="1C:Enterprise/OneScript code example"
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));

View File

@@ -34,8 +34,8 @@ Method at API documentation: [Generate Embeddings](https://github.com/ollama/oll
```bsl title="1C:Enterprise/OneScript code example"
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?");

View File

@@ -34,8 +34,8 @@ Method at API documentation: [Generate a completion](https://github.com/ollama/o
```bsl title="1C:Enterprise/OneScript code example"
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";

View File

@@ -31,8 +31,8 @@ Method at API documentation: [Version](https://github.com/ollama/ollama/blob/mai
```bsl title="1C:Enterprise/OneScript code example"
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));