Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: More links to docs #108

Merged
merged 2 commits into from
Aug 12, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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>

Check failure on line 7 in src/components/AdminSettings.vue

View workflow job for this annotation

GitHub Actions / NPM lint

Expected "\t" character, but found " " character
<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>

Check failure on line 37 in src/components/AdminSettings.vue

View workflow job for this annotation

GitHub Actions / NPM lint

Expected "\t" character, but found " " character
<li><a href="https://github.com/nextcloud/llm2#readme">Local Large language model app</a></li>

Check failure on line 38 in src/components/AdminSettings.vue

View workflow job for this annotation

GitHub Actions / NPM lint

Expected "\t" character, but found " " character
<li><a href="https://apps.nextcloud.com/apps/integration_openai">OpenAI/LocalAI Integration</a></li>

Check failure on line 39 in src/components/AdminSettings.vue

View workflow job for this annotation

GitHub Actions / NPM lint

Expected "\t" character, but found " " character
</ul>

Check failure on line 40 in src/components/AdminSettings.vue

View workflow job for this annotation

GitHub Actions / NPM lint

Expected "\t" character, but found " " character
</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>

Check failure on line 55 in src/components/AdminSettings.vue

View workflow job for this annotation

GitHub Actions / NPM lint

Expected "\t" character, but found " " character
<li><a href="https://github.com/nextcloud/text2image_stablediffusion#readme">Local Text-To-Image StableDiffusion</a></li>

Check failure on line 56 in src/components/AdminSettings.vue

View workflow job for this annotation

GitHub Actions / NPM lint

Expected "\t" character, but found " " character
<li><a href="https://apps.nextcloud.com/apps/integration_openai">OpenAI/LocalAI Integration</a></li>

Check failure on line 57 in src/components/AdminSettings.vue

View workflow job for this annotation

GitHub Actions / NPM lint

Expected "\t" character, but found " " character
</ul>

Check failure on line 58 in src/components/AdminSettings.vue

View workflow job for this annotation

GitHub Actions / NPM lint

Expected "\t" character, but found " " character
</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:') }}
julien-nc marked this conversation as resolved.
Show resolved Hide resolved
</span>
<ul>

Check failure on line 73 in src/components/AdminSettings.vue

View workflow job for this annotation

GitHub Actions / NPM lint

Expected "\t" character, but found " " character
<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
Loading