Skip to content

Commit

Permalink
Merge pull request #108 from nextcloud/chore/link-to-docs
Browse files Browse the repository at this point in the history
chore: More links to docs
  • Loading branch information
julien-nc committed Aug 12, 2024
2 parents 47501f8 + f07e123 commit ff53114
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 5 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ This means you have complete freedom over which service/software will actually r

### Text processing

So far, the [Large language model](https://github.com/nextcloud/llm#readme)
So far, the [Local Large language model](https://github.com/nextcloud/llm2#readme)
and the [OpenAi/LocalAI integration](https://apps.nextcloud.com/apps/integration_openai) apps
include text processing providers to:
* Summarize
Expand All @@ -52,3 +52,5 @@ Known providers:
Known providers:
* [OpenAi/LocalAI integration](https://apps.nextcloud.com/apps/integration_openai)
* [Local Whisper Speech-To-Text](https://apps.nextcloud.com/apps/stt_whisper)

More details on how to set this up in the [admin docs](https://docs.nextcloud.com/server/latest/admin_manual/ai/index.html)
4 changes: 3 additions & 1 deletion appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ This means you have complete freedom over which service/software will actually r
### Text processing providers
So far, the [Large language model](https://github.com/nextcloud/llm#readme)
So far, the [Local Large language model](https://github.com/nextcloud/llm2#readme)
and the [OpenAi/LocalAI integration](https://apps.nextcloud.com/apps/integration_openai) apps
include text processing providers to:
* Summarize
Expand All @@ -55,6 +55,8 @@ Known providers:
Known providers:
* [OpenAi/LocalAI integration](https://apps.nextcloud.com/apps/integration_openai)
* [Local Whisper Speech-To-Text](https://apps.nextcloud.com/apps/stt_whisper)
More details on how to set this up in the [admin docs](https://docs.nextcloud.com/server/latest/admin_manual/ai/index.html)
]]> </description>
<version>2.0.2</version>
<licence>agpl</licence>
Expand Down
19 changes: 16 additions & 3 deletions src/components/AdminSettings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<AssistantIcon class="icon" />
{{ t('assistant', 'Nextcloud Assistant') }}
</h2>
<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>
<div id="assistant-content">
<div>
<h3>
Expand Down Expand Up @@ -31,8 +32,12 @@
<div v-if="!state.free_prompt_task_type_available" class="checkbox-text">
<InformationOutlineIcon class="icon" />
<span>
{{ t('assistant', 'To enable this feature, please install an AI text processing provider for the free prompt task type.') }}
{{ t('assistant', 'To enable this feature, please install an AI text processing provider for the free prompt task type:') }}
</span>
<ul>
<li><a href="https://github.com/nextcloud/llm2#readme">Local Large language model app</a></li>
<li><a href="https://apps.nextcloud.com/apps/integration_openai">OpenAI/LocalAI Integration</a></li>
</ul>
</div>
</div>
</NcCheckboxRadioSwitch>
Expand All @@ -45,8 +50,12 @@
<div v-if="!state.text_to_image_picker_available" class="checkbox-text">
<InformationOutlineIcon class="icon" />
<span>
{{ t('assistant', 'To enable this feature, please install a text-to-image provider.') }}
{{ t('assistant', 'To enable this feature, please install a text-to-image provider:') }}
</span>
<ul>
<li><a href="https://github.com/nextcloud/text2image_stablediffusion#readme">Local Text-To-Image StableDiffusion</a></li>
<li><a href="https://apps.nextcloud.com/apps/integration_openai">OpenAI/LocalAI Integration</a></li>
</ul>
</div>
</div>
</NcCheckboxRadioSwitch>
Expand All @@ -59,8 +68,12 @@
<div v-if="!state.speech_to_text_picker_available" class="checkbox-text">
<InformationOutlineIcon class="icon" />
<span>
{{ t('assistant', 'To enable this feature, please install a speech-to-text provider.') }}
{{ t('assistant', 'To enable this feature, please install a speech-to-text provider:') }}
</span>
<ul>
<li><a href="https://github.com/nextcloud/stt_whisper2#readme">Local Speech-To-Text Whisper</a></li>
<li><a href="https://apps.nextcloud.com/apps/integration_openai">OpenAI/LocalAI Integration</a></li>
</ul>
</div>
</div>
</NcCheckboxRadioSwitch>
Expand Down

0 comments on commit ff53114

Please sign in to comment.