Skip to content

Commit 7644725

Browse files
committed
add some LLM providers
1 parent 5038781 commit 7644725

3 files changed

Lines changed: 79 additions & 4 deletions

File tree

data/integrations.yml

Lines changed: 36 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,41 @@ integrations:
1212
# - {{p.pluginID}} - markdownlink to plugin (replace all '-' with '_')
1313
# - {{p.pluginID_ref}} - relative link to plugin (replace all '-' with '_')
1414

15+
#####
16+
# LLM Provider
17+
#####
18+
19+
- name: Ollama
20+
icon: ":simple-ollama:"
21+
content: |
22+
Use the {{p.cmem_plugin_llm_ExecuteInstructions}} or {{p.cmem_plugin_llm_CreateEmbeddings}} task
23+
to interact with Ollama provided Large Language Models (LLMs).
24+
25+
- name: Azure AI Foundry
26+
icon: ":material-microsoft-azure:"
27+
content: |
28+
Use the {{p.cmem_plugin_llm_ExecuteInstructions}} or {{p.cmem_plugin_llm_CreateEmbeddings}} task
29+
to interact with Azure AI Foundry provided Large Language Models (LLMs).
30+
31+
- name: OpenRouter
32+
icon: ":octicons-ai-model-24:"
33+
content: |
34+
Use the {{p.cmem_plugin_llm_ExecuteInstructions}} or {{p.cmem_plugin_llm_CreateEmbeddings}} task
35+
to interact with Anthropic / Claude provided Large Language Models (LLMs).
36+
37+
- name: Anthropic / Claude
38+
icon: ":simple-anthropic:"
39+
content: |
40+
Use the {{p.cmem_plugin_llm_ExecuteInstructions}} or {{p.cmem_plugin_llm_CreateEmbeddings}} task
41+
to interact with Anthropic / Claude provided Large Language Models (LLMs).
42+
43+
- name: OpenAI
44+
icon: ":simple-openai:"
45+
content: |
46+
Use the {{p.cmem_plugin_llm_ExecuteInstructions}} or {{p.cmem_plugin_llm_CreateEmbeddings}} task
47+
to interact with OpenAI provided Large Language Models (LLMs).
48+
49+
1550
#####
1651
# Services
1752
#####
@@ -34,7 +69,7 @@ integrations:
3469
- name: Nextcloud
3570
icon: ":simple-nextcloud:"
3671
content: |
37-
Use a Nextcloud instance to {{p.cmem_plugin_nextcloud_Download}} or {{p.cmem_plugin_nextcloud_Upload}}.
72+
Use a Nextcloud instance to [download files]({{p.cmem_plugin_nextcloud_Download_ref}}) to process them or [upload files]({{p.cmem_plugin_nextcloud_Upload_ref}}) you created with Corporate Memory.
3873
3974
- name: Salesforce
4075
icon: ":fontawesome-brands-salesforce:"

docs/build/.pages

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
nav:
22
- Build: index.md
3-
- Integrations: Integrations
43
- Introduction to the User Interface: introduction-to-the-user-interface
4+
- Integrations: integrations
5+
- Task and Operator Reference: reference
56
- Rule Operators: rule-operators
67
- Define Prefixes / Namespaces: define-prefixes-namespaces
7-
- Task and Operator Reference: reference
88
- Cool IRIs: cool-iris
99
- Lift Tabular Data: lift-data-from-tabular-data-such-as-csv-xslx-or-database-tables
1010
- Lift Hierarchical Data: lift-data-from-json-and-xml-sources

docs/build/integrations/index.md

Lines changed: 41 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,22 @@ The following services and applications can be easily integrated in Corporate Me
1414

1515
<div class="grid cards" markdown>
1616

17+
- :simple-anthropic:{ .lg .middle } Anthropic / Claude
18+
19+
---
20+
21+
Use the [Execute Instructions](../../build/reference/customtask/cmem_plugin_llm-ExecuteInstructions.md) or [Create Embeddings](../../build/reference/customtask/cmem_plugin_llm-CreateEmbeddings.md) task
22+
to interact with Anthropic / Claude provided Large Language Models (LLMs).
23+
24+
25+
- :material-microsoft-azure:{ .lg .middle } Azure AI Foundry
26+
27+
---
28+
29+
Use the [Execute Instructions](../../build/reference/customtask/cmem_plugin_llm-ExecuteInstructions.md) or [Create Embeddings](../../build/reference/customtask/cmem_plugin_llm-CreateEmbeddings.md) task
30+
to interact with Azure AI Foundry provided Large Language Models (LLMs).
31+
32+
1733
- :fontawesome-solid-file-csv:{ .lg .middle } CSV
1834

1935
---
@@ -90,7 +106,7 @@ the [Send Mattermost messages](../../build/reference/customtask/cmem_plugin_matt
90106

91107
---
92108

93-
Use a Nextcloud instance to [Download Nextcloud files](../../build/reference/customtask/cmem_plugin_nextcloud-Download.md) or [Upload files to Nextcloud](../../build/reference/customtask/cmem_plugin_nextcloud-Upload.md).
109+
Use a Nextcloud instance to [download files](../../build/reference/customtask/cmem_plugin_nextcloud-Download.md) to process them or [upload files](../../build/reference/customtask/cmem_plugin_nextcloud-Upload.md) you created with Corporate Memory.
94110

95111

96112
- :material-microsoft-office:{ .lg .middle } Office 365
@@ -100,6 +116,30 @@ the [Send Mattermost messages](../../build/reference/customtask/cmem_plugin_matt
100116
Use the [Excel (OneDrive, Office365)](../../build/reference/dataset/office365preadsheet.md) to read and write to Excel workbooks in Office 365.
101117

102118

119+
- :simple-ollama:{ .lg .middle } Ollama
120+
121+
---
122+
123+
Use the [Execute Instructions](../../build/reference/customtask/cmem_plugin_llm-ExecuteInstructions.md) or [Create Embeddings](../../build/reference/customtask/cmem_plugin_llm-CreateEmbeddings.md) task
124+
to interact with Ollama provided Large Language Models (LLMs).
125+
126+
127+
- :simple-openai:{ .lg .middle } OpenAI
128+
129+
---
130+
131+
Use the [Execute Instructions](../../build/reference/customtask/cmem_plugin_llm-ExecuteInstructions.md) or [Create Embeddings](../../build/reference/customtask/cmem_plugin_llm-CreateEmbeddings.md) task
132+
to interact with OpenAI provided Large Language Models (LLMs).
133+
134+
135+
- :octicons-ai-model-24:{ .lg .middle } OpenRouter
136+
137+
---
138+
139+
Use the [Execute Instructions](../../build/reference/customtask/cmem_plugin_llm-ExecuteInstructions.md) or [Create Embeddings](../../build/reference/customtask/cmem_plugin_llm-CreateEmbeddings.md) task
140+
to interact with Anthropic / Claude provided Large Language Models (LLMs).
141+
142+
103143
- :simple-postgresql:{ .lg .middle } PostgreSQL
104144

105145
---

0 commit comments

Comments
 (0)