cs-models 0.0.656__py3-none-any.whl → 0.0.657__py3-none-any.whl
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.
Potentially problematic release.
This version of cs-models might be problematic. Click here for more details.
- cs_models/resources/EventLLM/__init__.py +0 -0
- cs_models/resources/EventLLM/models.py +51 -0
- cs_models/resources/EventLLM/schemas.py +41 -0
- {cs_models-0.0.656.dist-info → cs_models-0.0.657.dist-info}/METADATA +1 -1
- {cs_models-0.0.656.dist-info → cs_models-0.0.657.dist-info}/RECORD +7 -4
- {cs_models-0.0.656.dist-info → cs_models-0.0.657.dist-info}/WHEEL +0 -0
- {cs_models-0.0.656.dist-info → cs_models-0.0.657.dist-info}/top_level.txt +0 -0
|
File without changes
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
from datetime import datetime
|
|
2
|
+
|
|
3
|
+
from sqlalchemy import (
|
|
4
|
+
Column,
|
|
5
|
+
Integer,
|
|
6
|
+
String,
|
|
7
|
+
ForeignKey,
|
|
8
|
+
DateTime,
|
|
9
|
+
Text,
|
|
10
|
+
)
|
|
11
|
+
|
|
12
|
+
from ...database import Base
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
class EventLLMModel(Base):
|
|
16
|
+
__tablename__ = "events_llm"
|
|
17
|
+
|
|
18
|
+
id = Column(Integer, primary_key=True)
|
|
19
|
+
date = Column(DateTime, nullable=False)
|
|
20
|
+
end_date = Column(DateTime, nullable=False)
|
|
21
|
+
event_type = Column(String(128), nullable=False)
|
|
22
|
+
description = Column(Text, nullable=False)
|
|
23
|
+
products = Column(Text, nullable=True)
|
|
24
|
+
company_sec_id = Column(
|
|
25
|
+
Integer,
|
|
26
|
+
ForeignKey('companies_sec.id'),
|
|
27
|
+
nullable=True,
|
|
28
|
+
)
|
|
29
|
+
company_ous_id = Column(
|
|
30
|
+
Integer,
|
|
31
|
+
ForeignKey('companies_ous.id'),
|
|
32
|
+
nullable=True,
|
|
33
|
+
)
|
|
34
|
+
news_id = Column(
|
|
35
|
+
Integer,
|
|
36
|
+
ForeignKey('newswires.id'),
|
|
37
|
+
nullable=True,
|
|
38
|
+
)
|
|
39
|
+
sec_filing_id = Column(
|
|
40
|
+
Integer,
|
|
41
|
+
ForeignKey('companies_sec_filings.id'),
|
|
42
|
+
nullable=True,
|
|
43
|
+
)
|
|
44
|
+
llm_response = Column(Text, nullable=True)
|
|
45
|
+
updated_at = Column(
|
|
46
|
+
DateTime,
|
|
47
|
+
nullable=False,
|
|
48
|
+
# https://stackoverflow.com/questions/58776476/why-doesnt-freezegun-work-with-sqlalchemy-default-values
|
|
49
|
+
default=lambda: datetime.utcnow(),
|
|
50
|
+
onupdate=lambda: datetime.utcnow(),
|
|
51
|
+
)
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
from marshmallow import (
|
|
2
|
+
Schema,
|
|
3
|
+
fields,
|
|
4
|
+
validate,
|
|
5
|
+
pre_load,
|
|
6
|
+
ValidationError,
|
|
7
|
+
)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class EventLLMResourceSchema(Schema):
|
|
11
|
+
not_blank = validate.Length(min=1, error="Field cannot be blank")
|
|
12
|
+
|
|
13
|
+
id = fields.Integer(dump_only=True)
|
|
14
|
+
date = fields.DateTime(required=True)
|
|
15
|
+
end_date = fields.DateTime(required=True)
|
|
16
|
+
event_type = fields.String(required=True)
|
|
17
|
+
description = fields.String(required=True)
|
|
18
|
+
products = fields.String(allow_none=True)
|
|
19
|
+
company_sec_id = fields.Integer(allow_none=True)
|
|
20
|
+
company_ous_id = fields.Integer(allow_none=True)
|
|
21
|
+
news_id = fields.Integer(allow_none=True)
|
|
22
|
+
sec_filing_id = fields.Integer(allow_none=True)
|
|
23
|
+
llm_response = fields.String(allow_none=True)
|
|
24
|
+
updated_at = fields.DateTime(dump_only=True)
|
|
25
|
+
|
|
26
|
+
@pre_load
|
|
27
|
+
def check_company_info(self, in_data, **kwargs):
|
|
28
|
+
if self._get_number_of_company_fields(in_data) > 1:
|
|
29
|
+
raise ValidationError('Provide either company_sec_id or '
|
|
30
|
+
'company_ous_id, not both')
|
|
31
|
+
return in_data
|
|
32
|
+
|
|
33
|
+
def _get_number_of_company_fields(self, in_data, **kwargs):
|
|
34
|
+
result = 0
|
|
35
|
+
if 'company_sec_id' in in_data:
|
|
36
|
+
if in_data['company_sec_id'] is not None:
|
|
37
|
+
result += 1
|
|
38
|
+
if 'company_ous_id' in in_data:
|
|
39
|
+
if in_data['company_ous_id'] is not None:
|
|
40
|
+
result += 1
|
|
41
|
+
return result
|
|
@@ -289,6 +289,9 @@ cs_models/resources/EmptyCompany/schemas.py,sha256=U6fjKheQMxosVsS14C3Vz7zVNHHso
|
|
|
289
289
|
cs_models/resources/Event/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
290
290
|
cs_models/resources/Event/models.py,sha256=wkRLT1tkFjXId8Ga1BiThwflXK5lRaCFqEf_guIwWM0,1227
|
|
291
291
|
cs_models/resources/Event/schemas.py,sha256=63C0x7i-JUu5Q0aAZeNBd1O0_XZ7cahM3KTpkLCbCM8,1690
|
|
292
|
+
cs_models/resources/EventLLM/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
293
|
+
cs_models/resources/EventLLM/models.py,sha256=ZsGh4a3Q606-KVFsgQD1Tdy6BuiNJ9Wx9MFwIL7N8qY,1281
|
|
294
|
+
cs_models/resources/EventLLM/schemas.py,sha256=9I4kbekU5GEG2YFPfM2D5z85UqT7bAkyVjSoPANo5y4,1415
|
|
292
295
|
cs_models/resources/ExplorerColumn/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
293
296
|
cs_models/resources/ExplorerColumn/models.py,sha256=t448jSUDUNpN3MPlA1-nf2H-K9KVfMkKIV7ruB-DSks,799
|
|
294
297
|
cs_models/resources/ExplorerColumn/schemas.py,sha256=0qsNjOCkilZNa_Ly083dzp43h72MrAFM39dp2s8CnmY,442
|
|
@@ -1081,7 +1084,7 @@ cs_models/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
1081
1084
|
cs_models/utils/alchemy.py,sha256=fhINGFn41owJ2DLXQKXAAtLqeZ1BRzD_qU0wPK_bsGQ,1598
|
|
1082
1085
|
cs_models/utils/utils.py,sha256=bY623DuzycfPQiaOQT2AxfANeWfwr5w76dBuQ813-ns,3664
|
|
1083
1086
|
cs_models/utils/profiling/__init__.py,sha256=N-73vb0M92C975fxgXyBCBjCPELl8Oh21ZY_-tzDnns,569
|
|
1084
|
-
cs_models-0.0.
|
|
1085
|
-
cs_models-0.0.
|
|
1086
|
-
cs_models-0.0.
|
|
1087
|
-
cs_models-0.0.
|
|
1087
|
+
cs_models-0.0.657.dist-info/METADATA,sha256=_kW0bbGPv0xwnKC5dq92J1z8BAPPpEzcgKsB7jL6yRI,792
|
|
1088
|
+
cs_models-0.0.657.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
|
|
1089
|
+
cs_models-0.0.657.dist-info/top_level.txt,sha256=M7CA8Nh5t0vRManQ9gHfphhO16uhMqIbfaxr1jPDg18,10
|
|
1090
|
+
cs_models-0.0.657.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|