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:
@@ -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"
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -48,6 +48,30 @@ The model name must follow the format <namespace>/<model>:<tag>
|
||||
```
|
||||
|
||||
|
||||
<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"
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user