Skip to content

Commit 94881c6

Browse files
committed
chore: More links to docs
1 parent 8228927 commit 94881c6

File tree

3 files changed

+22
-5
lines changed

3 files changed

+22
-5
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ This means you have complete freedom over which service/software will actually r
3030

3131
### Text processing
3232

33-
So far, the [Large language model](https://github.com/nextcloud/llm#readme)
33+
So far, the [Local Large language model](https://github.com/nextcloud/llm2#readme)
3434
and the [OpenAi/LocalAI integration](https://apps.nextcloud.com/apps/integration_openai) apps
3535
include text processing providers to:
3636
* Summarize
@@ -52,3 +52,5 @@ Known providers:
5252
Known providers:
5353
* [OpenAi/LocalAI integration](https://apps.nextcloud.com/apps/integration_openai)
5454
* [Local Whisper Speech-To-Text](https://apps.nextcloud.com/apps/stt_whisper)
55+
56+
More details on how to set this up in the [admin docs](https://docs.nextcloud.com/server/latest/admin_manual/ai/index.html)

appinfo/info.xml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ This means you have complete freedom over which service/software will actually r
3434
3535
### Text processing providers
3636
37-
So far, the [Large language model](https://github.com/nextcloud/llm#readme)
37+
So far, the [Local Large language model](https://github.com/nextcloud/llm2#readme)
3838
and the [OpenAi/LocalAI integration](https://apps.nextcloud.com/apps/integration_openai) apps
3939
include text processing providers to:
4040
* Summarize
@@ -55,6 +55,8 @@ Known providers:
5555
Known providers:
5656
* [OpenAi/LocalAI integration](https://apps.nextcloud.com/apps/integration_openai)
5757
* [Local Whisper Speech-To-Text](https://apps.nextcloud.com/apps/stt_whisper)
58+
59+
More details on how to set this up in the [admin docs](https://docs.nextcloud.com/server/latest/admin_manual/ai/index.html)
5860
]]> </description>
5961
<version>2.0.2</version>
6062
<licence>agpl</licence>

src/components/AdminSettings.vue

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<AssistantIcon class="icon" />
55
{{ t('assistant', 'Nextcloud Assistant') }}
66
</h2>
7+
<p><a href="https://docs.nextcloud.com/server/latest/admin_manual/ai/index.html">{{ t('assistant', 'Find more details on how to set up Assistant and recommended backends in the Administration documentation.') }}</a></p>
78
<div id="assistant-content">
89
<div>
910
<h3>
@@ -31,8 +32,12 @@
3132
<div v-if="!state.free_prompt_task_type_available" class="checkbox-text">
3233
<InformationOutlineIcon class="icon" />
3334
<span>
34-
{{ t('assistant', 'To enable this feature, please install an AI text processing provider for the free prompt task type.') }}
35+
{{ t('assistant', 'To enable this feature, please install an AI text processing provider for the free prompt task type:') }}
3536
</span>
37+
<ul>
38+
<li><a href="https://github.com/nextcloud/llm2#readme">Local Large language model app</a></li>
39+
<li><a href="https://apps.nextcloud.com/apps/integration_openai">OpenAI/LocalAI Integration</a></li>
40+
</ul>
3641
</div>
3742
</div>
3843
</NcCheckboxRadioSwitch>
@@ -45,8 +50,12 @@
4550
<div v-if="!state.text_to_image_picker_available" class="checkbox-text">
4651
<InformationOutlineIcon class="icon" />
4752
<span>
48-
{{ t('assistant', 'To enable this feature, please install a text-to-image provider.') }}
53+
{{ t('assistant', 'To enable this feature, please install a text-to-image provider:') }}
4954
</span>
55+
<ul>
56+
<li><a href="https://github.com/nextcloud/text2image_stablediffusion#readme">Local Text-To-Image StableDiffusion</a></li>
57+
<li><a href="https://apps.nextcloud.com/apps/integration_openai">OpenAI/LocalAI Integration</a></li>
58+
</ul>
5059
</div>
5160
</div>
5261
</NcCheckboxRadioSwitch>
@@ -59,8 +68,12 @@
5968
<div v-if="!state.speech_to_text_picker_available" class="checkbox-text">
6069
<InformationOutlineIcon class="icon" />
6170
<span>
62-
{{ t('assistant', 'To enable this feature, please install a speech-to-text provider.') }}
71+
{{ t('assistant', 'To enable this feature, please install a speech-to-text provider:') }}
6372
</span>
73+
<ul>
74+
<li><a href="https://github.com/nextcloud/stt_whisper2#readme">Local Speech-To-Text Whisper</a></li>
75+
<li><a href="https://apps.nextcloud.com/apps/integration_openai">OpenAI/LocalAI Integration</a></li>
76+
</ul>
6477
</div>
6578
</div>
6679
</NcCheckboxRadioSwitch>

0 commit comments

Comments
 (0)