agi-med-common 1.1.0__tar.gz → 1.2.0__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 (24) hide show
  1. {agi_med_common-1.1.0 → agi_med_common-1.2.0}/PKG-INFO +3 -2
  2. {agi_med_common-1.1.0 → agi_med_common-1.2.0}/README.md +2 -1
  3. agi_med_common-1.2.0/src/agi_med_common/__init__.py +1 -0
  4. {agi_med_common-1.1.0 → agi_med_common-1.2.0}/src/agi_med_common/models/chat_item/replica_item.py +1 -0
  5. {agi_med_common-1.1.0 → agi_med_common-1.2.0}/src/agi_med_common.egg-info/PKG-INFO +3 -2
  6. agi_med_common-1.1.0/src/agi_med_common/__init__.py +0 -1
  7. {agi_med_common-1.1.0 → agi_med_common-1.2.0}/pyproject.toml +0 -0
  8. {agi_med_common-1.1.0 → agi_med_common-1.2.0}/requirements.txt +0 -0
  9. {agi_med_common-1.1.0 → agi_med_common-1.2.0}/setup.cfg +0 -0
  10. {agi_med_common-1.1.0 → agi_med_common-1.2.0}/src/agi_med_common/logger/__init__.py +0 -0
  11. {agi_med_common-1.1.0 → agi_med_common-1.2.0}/src/agi_med_common/logger/log_level_enum.py +0 -0
  12. {agi_med_common-1.1.0 → agi_med_common-1.2.0}/src/agi_med_common/logger/logger.py +0 -0
  13. {agi_med_common-1.1.0 → agi_med_common-1.2.0}/src/agi_med_common/models/__init__.py +0 -0
  14. {agi_med_common-1.1.0 → agi_med_common-1.2.0}/src/agi_med_common/models/_base.py +0 -0
  15. {agi_med_common-1.1.0 → agi_med_common-1.2.0}/src/agi_med_common/models/chat_item/__init__.py +0 -0
  16. {agi_med_common-1.1.0 → agi_med_common-1.2.0}/src/agi_med_common/models/chat_item/chat_item.py +0 -0
  17. {agi_med_common-1.1.0 → agi_med_common-1.2.0}/src/agi_med_common/models/chat_item/inner_context_item.py +0 -0
  18. {agi_med_common-1.1.0 → agi_med_common-1.2.0}/src/agi_med_common/models/chat_item/outer_context_item.py +0 -0
  19. {agi_med_common-1.1.0 → agi_med_common-1.2.0}/src/agi_med_common/models/enums/__init__.py +0 -0
  20. {agi_med_common-1.1.0 → agi_med_common-1.2.0}/src/agi_med_common/models/enums/track_id_enum.py +0 -0
  21. {agi_med_common-1.1.0 → agi_med_common-1.2.0}/src/agi_med_common.egg-info/SOURCES.txt +0 -0
  22. {agi_med_common-1.1.0 → agi_med_common-1.2.0}/src/agi_med_common.egg-info/dependency_links.txt +0 -0
  23. {agi_med_common-1.1.0 → agi_med_common-1.2.0}/src/agi_med_common.egg-info/requires.txt +0 -0
  24. {agi_med_common-1.1.0 → agi_med_common-1.2.0}/src/agi_med_common.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: agi_med_common
3
- Version: 1.1.0
3
+ Version: 1.2.0
4
4
  Summary: Сommon for agi-med team
5
5
  Author: AGI-MED-TEAM
6
6
  Requires-Python: >=3.13
@@ -20,7 +20,8 @@ Common компонент
20
20
 
21
21
  - Общий ChatItem для сервисов
22
22
  - Общей TrackId
23
- -
23
+ - logger
24
+
24
25
  ## Тесты
25
26
 
26
27
  - `sudo docker compose up --build`
@@ -10,7 +10,8 @@ Common компонент
10
10
 
11
11
  - Общий ChatItem для сервисов
12
12
  - Общей TrackId
13
- -
13
+ - logger
14
+
14
15
  ## Тесты
15
16
 
16
17
  - `sudo docker compose up --build`
@@ -0,0 +1 @@
1
+ __version__ = "1.2.0"
@@ -7,3 +7,4 @@ class ReplicaItem(_Base):
7
7
  body: str = Field(alias="Body")
8
8
  role: bool = Field(alias="Role", description="True = ai, False = client")
9
9
  date_time: str = Field(alias="DateTime")
10
+ previous_score: float | None = Field(None, alias="PreviousScore")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: agi_med_common
3
- Version: 1.1.0
3
+ Version: 1.2.0
4
4
  Summary: Сommon for agi-med team
5
5
  Author: AGI-MED-TEAM
6
6
  Requires-Python: >=3.13
@@ -20,7 +20,8 @@ Common компонент
20
20
 
21
21
  - Общий ChatItem для сервисов
22
22
  - Общей TrackId
23
- -
23
+ - logger
24
+
24
25
  ## Тесты
25
26
 
26
27
  - `sudo docker compose up --build`
@@ -1 +0,0 @@
1
- __version__ = "1.1.0"
File without changes