Skip to content

Commit 2d49cea

Browse files
authoredAug 23, 2024
removed deprecated AI providers, added test for TaskProcessing (#289)
Changes proposed in this pull request: * TextProcessing, Speech2Text, Translation Providers API completely removed * added small tests for the TaskProcessing Signed-off-by: Alexander Piskun <bigcat88@icloud.com>
1 parent 8a686c7 commit 2d49cea

12 files changed

+75
-743
lines changed
 

‎CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [0.17.0 - 2024-0x-xx]
6+
7+
### Changed
8+
9+
- NextcloudApp: `TextProcessing`, `Speech2Text` and `Translation` AI Providers API was removed.
10+
511
## [0.16.0 - 2024-08-12]
612

713
### Changed

‎README.md

+14-15
Original file line numberDiff line numberDiff line change
@@ -24,23 +24,22 @@ Python library that provides a robust and well-documented API that allows develo
2424
* **Sync + Async**: Provides both sync and async APIs.
2525

2626
### Capabilities
27-
| **_Capability_** | Nextcloud 27 | Nextcloud 28 | Nextcloud 29 | Nextcloud 30 |
28-
|-----------------------|:------------:|:------------:|:------------:|:------------:|
29-
| Calendar |||||
30-
| File System & Tags |||||
31-
| Nextcloud Talk |||||
32-
| Notifications |||||
33-
| Shares |||||
34-
| Users & Groups |||||
35-
| User & Weather status |||||
36-
| Other APIs*** |||||
37-
| Talk Bot API* |||||
38-
| Settings UI API* | N/A | N/A |||
39-
| AI Providers API** | N/A | N/A | ||
27+
| **_Capability_** | Nextcloud 27 | Nextcloud 28 | Nextcloud 29 | Nextcloud 30 |
28+
|------------------------------|:------------:|:------------:|:------------:|:------------:|
29+
| Calendar |||||
30+
| File System & Tags |||||
31+
| Nextcloud Talk |||||
32+
| Notifications |||||
33+
| Shares |||||
34+
| Users & Groups |||||
35+
| User & Weather status |||||
36+
| Other APIs** |||||
37+
| Talk Bot API* |||||
38+
| Settings UI API* | N/A | N/A |||
39+
| TaskProcessing Provider API* | N/A | N/A | N/A ||
4040

4141
&ast;_available only for **NextcloudApp**_<br>
42-
&ast;&ast;_available only for **NextcloudApp**: SpeechToText, TextProcessing, Translation_<br>
43-
&ast;&ast;&ast;_Activity, Notes_
42+
&ast;&ast;_Activity, Notes_
4443

4544
### Differences between the Nextcloud and NextcloudApp classes
4645

‎docs/reference/ExApp.rst

-18
Original file line numberDiff line numberDiff line change
@@ -69,24 +69,6 @@ UI methods should be accessed with the help of :class:`~nc_py_api.nextcloud.Next
6969
.. autoclass:: nc_py_api.ex_app.providers.providers.ProvidersApi
7070
:members:
7171

72-
.. autoclass:: nc_py_api.ex_app.providers.speech_to_text.SpeechToTextProvider
73-
:members:
74-
75-
.. autoclass:: nc_py_api.ex_app.providers.speech_to_text._SpeechToTextProviderAPI
76-
:members:
77-
78-
.. autoclass:: nc_py_api.ex_app.providers.text_processing.TextProcessingProvider
79-
:members:
80-
81-
.. autoclass:: nc_py_api.ex_app.providers.text_processing._TextProcessingProviderAPI
82-
:members:
83-
84-
.. autoclass:: nc_py_api.ex_app.providers.translations.TranslationsProvider
85-
:members:
86-
87-
.. autoclass:: nc_py_api.ex_app.providers.translations._TranslationsProviderAPI
88-
:members:
89-
9072
.. autoclass:: nc_py_api.ex_app.providers.task_processing.ShapeType
9173
:members:
9274

‎nc_py_api/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Version of nc_py_api."""
22

3-
__version__ = "0.16.0"
3+
__version__ = "0.17.0.dev0"
-21
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,24 @@
11
"""Nextcloud API for AI Providers."""
22

33
from ..._session import AsyncNcSessionApp, NcSessionApp
4-
from .speech_to_text import _AsyncSpeechToTextProviderAPI, _SpeechToTextProviderAPI
54
from .task_processing import _AsyncTaskProcessingProviderAPI, _TaskProcessingProviderAPI
6-
from .text_processing import _AsyncTextProcessingProviderAPI, _TextProcessingProviderAPI
7-
from .translations import _AsyncTranslationsProviderAPI, _TranslationsProviderAPI
85

96

107
class ProvidersApi:
118
"""Class that encapsulates all AI Providers functionality."""
129

13-
speech_to_text: _SpeechToTextProviderAPI
14-
"""SpeechToText Provider API."""
15-
text_processing: _TextProcessingProviderAPI
16-
"""TextProcessing Provider API."""
17-
translations: _TranslationsProviderAPI
18-
"""Translations Provider API."""
1910
task_processing: _TaskProcessingProviderAPI
2011
"""TaskProcessing Provider API."""
2112

2213
def __init__(self, session: NcSessionApp):
23-
self.speech_to_text = _SpeechToTextProviderAPI(session)
24-
self.text_processing = _TextProcessingProviderAPI(session)
25-
self.translations = _TranslationsProviderAPI(session)
2614
self.task_processing = _TaskProcessingProviderAPI(session)
2715

2816

2917
class AsyncProvidersApi:
3018
"""Class that encapsulates all AI Providers functionality."""
3119

32-
speech_to_text: _AsyncSpeechToTextProviderAPI
33-
"""SpeechToText Provider API."""
34-
text_processing: _AsyncTextProcessingProviderAPI
35-
"""TextProcessing Provider API."""
36-
translations: _AsyncTranslationsProviderAPI
37-
"""Translations Provider API."""
3820
task_processing: _AsyncTaskProcessingProviderAPI
3921
"""TaskProcessing Provider API."""
4022

4123
def __init__(self, session: AsyncNcSessionApp):
42-
self.speech_to_text = _AsyncSpeechToTextProviderAPI(session)
43-
self.text_processing = _AsyncTextProcessingProviderAPI(session)
44-
self.translations = _AsyncTranslationsProviderAPI(session)
4524
self.task_processing = _AsyncTaskProcessingProviderAPI(session)

‎nc_py_api/ex_app/providers/speech_to_text.py

-128
This file was deleted.

‎nc_py_api/ex_app/providers/text_processing.py

-135
This file was deleted.

0 commit comments

Comments
 (0)