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-05-21 10:35:46 +03:00
parent 6dd460bdf7
commit 60ddd5e71e
394 changed files with 9416 additions and 8932 deletions

View File

@@ -47,6 +47,32 @@ Method at API documentation: [Copy a Model](https://github.com/ollama/ollama/blo
```
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
# JSON data can also be passed as a path to a .json file
oint ollama CopyModel \
--url "https://api.athenaeum.digital/ollama" \
--model "mario" \
--name "mario2" \
--headers "{'Authorization':'***'}"
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
:: JSON data can also be passed as a path to a .json file
oint ollama CopyModel ^
--url "https://api.athenaeum.digital/ollama" ^
--model "mario" ^
--name "mario2" ^
--headers "{'Authorization':'***'}"
```
</TabItem>
</Tabs>
```json title="Result"

View File

@@ -58,7 +58,7 @@ Method at API documentation: [Create a Model](https://github.com/ollama/ollama/b
--url "https://api.athenaeum.digital/ollama" \
--model "mario" \
--settings "{'from':'tinyllama','system':'You are Mario from Super Mario Bros.'}" \
--headers "{'Authorization':'Bearer ***'}"
--headers "{'Authorization':'***'}"
```
</TabItem>
@@ -70,7 +70,7 @@ Method at API documentation: [Create a Model](https://github.com/ollama/ollama/b
--url "https://api.athenaeum.digital/ollama" ^
--model "mario" ^
--settings "{'from':'tinyllama','system':'You are Mario from Super Mario Bros.'}" ^
--headers "{'Authorization':'Bearer ***'}"
--headers "{'Authorization':'***'}"
```
</TabItem>
</Tabs>

View File

@@ -45,6 +45,30 @@ Method at API documentation: [Delete a Model](https://github.com/ollama/ollama/b
```
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
# JSON data can also be passed as a path to a .json file
oint ollama DeleteModel \
--url "https://api.athenaeum.digital/ollama" \
--model "bayselonarrend/tinyllama:latest" \
--headers "{'Authorization':'***'}"
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
:: JSON data can also be passed as a path to a .json file
oint ollama DeleteModel ^
--url "https://api.athenaeum.digital/ollama" ^
--model "bayselonarrend/tinyllama:latest" ^
--headers "{'Authorization':'***'}"
```
</TabItem>
</Tabs>
```json title="Result"

View File

@@ -46,6 +46,32 @@ Method at API documentation: [Show Model Information](https://github.com/ollama/
```
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
# JSON data can also be passed as a path to a .json file
oint ollama GetModelInformation \
--url "https://api.athenaeum.digital/ollama" \
--model "mario" \
--verbose false \
--headers "{'Authorization':'***'}"
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
:: JSON data can also be passed as a path to a .json file
oint ollama GetModelInformation ^
--url "https://api.athenaeum.digital/ollama" ^
--model "mario" ^
--verbose false ^
--headers "{'Authorization':'***'}"
```
</TabItem>
</Tabs>
```json title="Result"

View File

@@ -42,6 +42,28 @@ Method at API documentation: [List Local Models](https://github.com/ollama/ollam
```
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
# JSON data can also be passed as a path to a .json file
oint ollama GetModelList \
--url "https://api.athenaeum.digital/ollama" \
--headers "{'Authorization':'***'}"
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
:: JSON data can also be passed as a path to a .json file
oint ollama GetModelList ^
--url "https://api.athenaeum.digital/ollama" ^
--headers "{'Authorization':'***'}"
```
</TabItem>
</Tabs>
```json title="Result"

View File

@@ -31,6 +31,22 @@ import TabItem from '@theme/TabItem';
```
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
oint ollama GetModelSettingsStructure \
--empty true
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
oint ollama GetModelSettingsStructure ^
--empty true
```
</TabItem>
</Tabs>
```json title="Result"

View File

@@ -42,6 +42,28 @@ Method at API documentation: [List Running Models](https://github.com/ollama/oll
```
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
# JSON data can also be passed as a path to a .json file
oint ollama ListRunningModels \
--url "https://api.athenaeum.digital/ollama" \
--headers "{'Authorization':'***'}"
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
:: JSON data can also be passed as a path to a .json file
oint ollama ListRunningModels ^
--url "https://api.athenaeum.digital/ollama" ^
--headers "{'Authorization':'***'}"
```
</TabItem>
</Tabs>
```json title="Result"

View File

@@ -57,7 +57,7 @@ Method at API documentation: [Load a model](https://github.com/ollama/ollama/blo
--url "https://api.athenaeum.digital/ollama" \
--model "tinyllama" \
--keep 500 \
--headers "{'Authorization':'Bearer ***'}"
--headers "{'Authorization':'***'}"
```
</TabItem>
@@ -69,7 +69,7 @@ Method at API documentation: [Load a model](https://github.com/ollama/ollama/blo
--url "https://api.athenaeum.digital/ollama" ^
--model "tinyllama" ^
--keep 500 ^
--headers "{'Authorization':'Bearer ***'}"
--headers "{'Authorization':'***'}"
```
</TabItem>
</Tabs>

View File

@@ -54,7 +54,7 @@ Method at API documentation: [Pull a Model](https://github.com/ollama/ollama/blo
oint ollama PullModel \
--url "https://api.athenaeum.digital/ollama" \
--model "tinyllama" \
--model "bayselonarrend/tinyllama:latest" \
--headers "{'Authorization':'***'}"
```
</TabItem>
@@ -65,7 +65,7 @@ Method at API documentation: [Pull a Model](https://github.com/ollama/ollama/blo
oint ollama PullModel ^
--url "https://api.athenaeum.digital/ollama" ^
--model "tinyllama" ^
--model "bayselonarrend/tinyllama:latest" ^
--headers "{'Authorization':'***'}"
```
</TabItem>

View File

@@ -48,6 +48,30 @@ The model name must follow the format &lt;namespace&gt;/&lt;model&gt;:&lt;tag&gt
```
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
# JSON data can also be passed as a path to a .json file
oint ollama PushModel \
--url "https://api.athenaeum.digital/ollama" \
--model "bayselonarrend/tinyllama:latest" \
--headers "{'Authorization':'***'}"
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
:: JSON data can also be passed as a path to a .json file
oint ollama PushModel ^
--url "https://api.athenaeum.digital/ollama" ^
--model "bayselonarrend/tinyllama:latest" ^
--headers "{'Authorization':'***'}"
```
</TabItem>
</Tabs>
```json title="Result"

View File

@@ -54,7 +54,7 @@ Method at API documentation: [Unload a model](https://github.com/ollama/ollama/b
oint ollama UnloadModelFromMemory \
--url "https://api.athenaeum.digital/ollama" \
--model "tinyllama" \
--headers "{'Authorization':'Bearer ***'}"
--headers "{'Authorization':'***'}"
```
</TabItem>
@@ -65,7 +65,7 @@ Method at API documentation: [Unload a model](https://github.com/ollama/ollama/b
oint ollama UnloadModelFromMemory ^
--url "https://api.athenaeum.digital/ollama" ^
--model "tinyllama" ^
--headers "{'Authorization':'Bearer ***'}"
--headers "{'Authorization':'***'}"
```
</TabItem>
</Tabs>