agi-med-common 5.0.18__tar.gz → 5.0.19__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. {agi_med_common-5.0.18 → agi_med_common-5.0.19}/PKG-INFO +1 -1
  2. {agi_med_common-5.0.18 → agi_med_common-5.0.19}/src/agi_med_common/__init__.py +2 -1
  3. agi_med_common-5.0.19/src/agi_med_common/api/text_processor_api.py +6 -0
  4. {agi_med_common-5.0.18 → agi_med_common-5.0.19}/src/agi_med_common.egg-info/PKG-INFO +1 -1
  5. {agi_med_common-5.0.18 → agi_med_common-5.0.19}/src/agi_med_common.egg-info/SOURCES.txt +1 -0
  6. {agi_med_common-5.0.18 → agi_med_common-5.0.19}/README.md +0 -0
  7. {agi_med_common-5.0.18 → agi_med_common-5.0.19}/pyproject.toml +0 -0
  8. {agi_med_common-5.0.18 → agi_med_common-5.0.19}/setup.cfg +0 -0
  9. {agi_med_common-5.0.18 → agi_med_common-5.0.19}/src/agi_med_common/api/chat_manager_api.py +0 -0
  10. {agi_med_common-5.0.18 → agi_med_common-5.0.19}/src/agi_med_common/api/classifier_api.py +0 -0
  11. {agi_med_common-5.0.18 → agi_med_common-5.0.19}/src/agi_med_common/api/content_interpreter_api.py +0 -0
  12. {agi_med_common-5.0.18 → agi_med_common-5.0.19}/src/agi_med_common/api/content_interpreter_remote_api.py +0 -0
  13. {agi_med_common-5.0.18 → agi_med_common-5.0.19}/src/agi_med_common/api/critic_api.py +0 -0
  14. {agi_med_common-5.0.18 → agi_med_common-5.0.19}/src/agi_med_common/api/text_generator_api.py +0 -0
  15. {agi_med_common-5.0.18 → agi_med_common-5.0.19}/src/agi_med_common/file_storage.py +0 -0
  16. {agi_med_common-5.0.18 → agi_med_common-5.0.19}/src/agi_med_common/models/__init__.py +0 -0
  17. {agi_med_common-5.0.18 → agi_med_common-5.0.19}/src/agi_med_common/models/_base.py +0 -0
  18. {agi_med_common-5.0.18 → agi_med_common-5.0.19}/src/agi_med_common/models/base_config_models/__init__.py +0 -0
  19. {agi_med_common-5.0.18 → agi_med_common-5.0.19}/src/agi_med_common/models/base_config_models/gigachat_config.py +0 -0
  20. {agi_med_common-5.0.18 → agi_med_common-5.0.19}/src/agi_med_common/models/chat.py +0 -0
  21. {agi_med_common-5.0.18 → agi_med_common-5.0.19}/src/agi_med_common/models/chat_item.py +0 -0
  22. {agi_med_common-5.0.18 → agi_med_common-5.0.19}/src/agi_med_common/models/enums.py +0 -0
  23. {agi_med_common-5.0.18 → agi_med_common-5.0.19}/src/agi_med_common/models/tracks.py +0 -0
  24. {agi_med_common-5.0.18 → agi_med_common-5.0.19}/src/agi_med_common/models/widget.py +0 -0
  25. {agi_med_common-5.0.18 → agi_med_common-5.0.19}/src/agi_med_common/parallel_map.py +0 -0
  26. {agi_med_common-5.0.18 → agi_med_common-5.0.19}/src/agi_med_common/type_union.py +0 -0
  27. {agi_med_common-5.0.18 → agi_med_common-5.0.19}/src/agi_med_common/utils.py +0 -0
  28. {agi_med_common-5.0.18 → agi_med_common-5.0.19}/src/agi_med_common/validators.py +0 -0
  29. {agi_med_common-5.0.18 → agi_med_common-5.0.19}/src/agi_med_common/xml_parser.py +0 -0
  30. {agi_med_common-5.0.18 → agi_med_common-5.0.19}/src/agi_med_common.egg-info/dependency_links.txt +0 -0
  31. {agi_med_common-5.0.18 → agi_med_common-5.0.19}/src/agi_med_common.egg-info/requires.txt +0 -0
  32. {agi_med_common-5.0.18 → agi_med_common-5.0.19}/src/agi_med_common.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agi_med_common
3
- Version: 5.0.18
3
+ Version: 5.0.19
4
4
  Summary: Сommon for agi-med team
5
5
  Author: AGI-MED-TEAM
6
6
  Requires-Python: >=3.11
@@ -1,4 +1,4 @@
1
- __version__ = "5.0.18"
1
+ __version__ = "5.0.19"
2
2
 
3
3
  from .models import (
4
4
  MTRSLabelEnum,
@@ -25,5 +25,6 @@ from .api.chat_manager_api import ChatManagerAPI
25
25
  from .api.content_interpreter_api import ContentInterpreterAPI, Interpretation
26
26
  from .api.content_interpreter_remote_api import ContentInterpreterRemoteAPI
27
27
  from .api.text_generator_api import TextGeneratorAPI
28
+ from .api.text_processor_api import TextProcessorAPI
28
29
  from .api.classifier_api import ClassifierAPI
29
30
  from .api.critic_api import CriticAPI
@@ -0,0 +1,6 @@
1
+ from agi_med_common import ChatItem
2
+
3
+
4
+ class TextProcessorAPI:
5
+ def process(self, text: str, chat: ChatItem | None = None, request_id: str = "") -> str:
6
+ raise NotImplementedError
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agi_med_common
3
- Version: 5.0.18
3
+ Version: 5.0.19
4
4
  Summary: Сommon for agi-med team
5
5
  Author: AGI-MED-TEAM
6
6
  Requires-Python: >=3.11
@@ -18,6 +18,7 @@ src/agi_med_common/api/content_interpreter_api.py
18
18
  src/agi_med_common/api/content_interpreter_remote_api.py
19
19
  src/agi_med_common/api/critic_api.py
20
20
  src/agi_med_common/api/text_generator_api.py
21
+ src/agi_med_common/api/text_processor_api.py
21
22
  src/agi_med_common/models/__init__.py
22
23
  src/agi_med_common/models/_base.py
23
24
  src/agi_med_common/models/chat.py