prism-models 0.1.0__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 prism-models might be problematic. Click here for more details.
- prism_models/__init__.py +45 -0
- prism_models/agent_profile.py +101 -0
- prism_models/base.py +75 -0
- prism_models/chat.py +349 -0
- prism_models/config.py +37 -0
- prism_models/content.py +250 -0
- prism_models/feedback.py +145 -0
- prism_models/migration/README +1 -0
- prism_models/migration/__init__.py +0 -0
- prism_models/migration/env.py +131 -0
- prism_models/migration/script.py.mako +28 -0
- prism_models/migration/versions/2025_09_11_1516_161f8829d93f_initial_schema.py +492 -0
- prism_models/migration/versions/2025_09_11_1558_5e011849ea76_changes_for_feedback.py +79 -0
- prism_models/migration/versions/2025_09_14_2243_059af231c2b2_profile_entities.py +108 -0
- prism_models/migration/versions/2025_09_15_1646_3219fec0bb10_agent_changes.py +32 -0
- prism_models/migration/versions/2025_09_16_1627_f2013b08daac_rename_metadata_to_additional_data.py +37 -0
- prism_models/migration/versions/2025_09_17_1147_327febbf555f_display_name_added.py +34 -0
- prism_models/migration/versions/2025_09_18_1106_b0bcb7ca1dc9_add_support_for_profile_on_create_convo.py +41 -0
- prism_models/migration/versions/2025_09_18_1511_bbc1955191e6_preview_mode.py +36 -0
- prism_models/migration/versions/2025_09_26_1115_6eb70e848451_added_publish_status_to_document.py +38 -0
- prism_models/migration/versions/2025_09_26_1240_f8b0ea2e743c_drop_unique_title_version_on_document.py +40 -0
- prism_models/migration/versions/2025_09_26_1505_07dc8c2589e0_added_chunk_id_and_vector_embeddings_to_.py +44 -0
- prism_models/migration/versions/2025_09_29_1220_46ba2693b883_add_markdown_markdown_file_path_s3_.py +32 -0
- prism_models/migration/versions/2025_10_02_1520_bf1472a9b021_removed_doc_id_from_config_table_and_.py +34 -0
- prism_models/migration/versions/2025_10_02_1525_6c0e63e0fef8_removed_doc_id_from_config_table_.py +34 -0
- prism_models/migration/versions/2025_10_02_1608_1b3eb48f5017_config_id_on_delete_will_be_set_to_null.py +34 -0
- prism_models/migration/versions/2025_10_03_1109_ac85b606d8a4_added_docling_hybrid_to_chunkstrategy.py +32 -0
- prism_models/migration/versions/2025_10_03_1204_7d1cb343a63f_added_s3_bucket_and_s3_dir_in_source_.py +42 -0
- prism_models/migration/versions/2025_10_03_1452_f9c750ec2a0b_1_to_1_relationship_between_collection_.py +52 -0
- prism_models/migration/versions/2025_10_07_1722_5cfa0c462948_added_travel_advisory_enum.py +38 -0
- prism_models/migration/versions/2025_10_08_1304_c91eb8e38cc7_added_destination_report_and_event_.py +38 -0
- prism_models/migration/versions/2025_10_09_1308_796b720ea35f_added_qa_id_to_vovetor.py +42 -0
- prism_models/migration/versions/2025_10_16_1611_663c66268631_added_sharepoint_drive_item_id_as_an_.py +32 -0
- prism_models/qdrant.py +97 -0
- prism_models-0.1.0.dist-info/METADATA +10 -0
- prism_models-0.1.0.dist-info/RECORD +38 -0
- prism_models-0.1.0.dist-info/WHEEL +5 -0
- prism_models-0.1.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
"""1 to 1 relationship between collection and source
|
|
2
|
+
|
|
3
|
+
Revision ID: f9c750ec2a0b
|
|
4
|
+
Revises: 7d1cb343a63f
|
|
5
|
+
Create Date: 2025-10-03 14:52:06.699081
|
|
6
|
+
|
|
7
|
+
"""
|
|
8
|
+
from typing import Sequence, Union
|
|
9
|
+
|
|
10
|
+
from alembic import op
|
|
11
|
+
import sqlalchemy as sa
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# revision identifiers, used by Alembic.
|
|
15
|
+
revision: str = 'f9c750ec2a0b'
|
|
16
|
+
down_revision: Union[str, Sequence[str], None] = '7d1cb343a63f'
|
|
17
|
+
branch_labels: Union[str, Sequence[str], None] = None
|
|
18
|
+
depends_on: Union[str, Sequence[str], None] = None
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
def upgrade() -> None:
|
|
22
|
+
"""Upgrade schema."""
|
|
23
|
+
# ### commands auto generated by Alembic - please adjust! ###
|
|
24
|
+
op.add_column('source', sa.Column('type', sa.Enum('S3', 'SHARE_POINT', 'GRID', 'CRM', 'CONFLUENCE', 'CUSTOM', name='sourcename', native_enum=False), nullable=True))
|
|
25
|
+
op.add_column('source', sa.Column('collection_id', sa.Integer(), nullable=False))
|
|
26
|
+
op.alter_column('source', 'name',
|
|
27
|
+
existing_type=sa.VARCHAR(length=23),
|
|
28
|
+
type_=sa.String(length=255),
|
|
29
|
+
existing_nullable=False)
|
|
30
|
+
op.drop_index(op.f('source_name_idx'), table_name='source')
|
|
31
|
+
op.create_index(op.f('source_name_idx'), 'source', ['name'], unique=True)
|
|
32
|
+
op.create_index(op.f('source_collection_id_idx'), 'source', ['collection_id'], unique=True)
|
|
33
|
+
op.create_index(op.f('source_type_idx'), 'source', ['type'], unique=False)
|
|
34
|
+
op.create_foreign_key(op.f('source_collection_id_fkey'), 'source', 'collection', ['collection_id'], ['id'])
|
|
35
|
+
# ### end Alembic commands ###
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
def downgrade() -> None:
|
|
39
|
+
"""Downgrade schema."""
|
|
40
|
+
# ### commands auto generated by Alembic - please adjust! ###
|
|
41
|
+
op.drop_constraint(op.f('source_collection_id_fkey'), 'source', type_='foreignkey')
|
|
42
|
+
op.drop_index(op.f('source_type_idx'), table_name='source')
|
|
43
|
+
op.drop_index(op.f('source_collection_id_idx'), table_name='source')
|
|
44
|
+
op.drop_index(op.f('source_name_idx'), table_name='source')
|
|
45
|
+
op.create_index(op.f('source_name_idx'), 'source', ['name'], unique=False)
|
|
46
|
+
op.alter_column('source', 'name',
|
|
47
|
+
existing_type=sa.String(length=255),
|
|
48
|
+
type_=sa.VARCHAR(length=23),
|
|
49
|
+
existing_nullable=False)
|
|
50
|
+
op.drop_column('source', 'collection_id')
|
|
51
|
+
op.drop_column('source', 'type')
|
|
52
|
+
# ### end Alembic commands ###
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"""added travel advisory enum
|
|
2
|
+
|
|
3
|
+
Revision ID: 5cfa0c462948
|
|
4
|
+
Revises: f9c750ec2a0b
|
|
5
|
+
Create Date: 2025-10-07 17:22:46.670468
|
|
6
|
+
|
|
7
|
+
"""
|
|
8
|
+
from typing import Sequence, Union
|
|
9
|
+
|
|
10
|
+
from alembic import op
|
|
11
|
+
import sqlalchemy as sa
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# revision identifiers, used by Alembic.
|
|
15
|
+
revision: str = '5cfa0c462948'
|
|
16
|
+
down_revision: Union[str, Sequence[str], None] = 'f9c750ec2a0b'
|
|
17
|
+
branch_labels: Union[str, Sequence[str], None] = None
|
|
18
|
+
depends_on: Union[str, Sequence[str], None] = None
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
def upgrade() -> None:
|
|
22
|
+
"""Upgrade schema."""
|
|
23
|
+
# ### commands auto generated by Alembic - please adjust! ###
|
|
24
|
+
op.alter_column('source', 'type',
|
|
25
|
+
existing_type=sa.VARCHAR(length=11),
|
|
26
|
+
type_=sa.Enum('S3', 'SHARE_POINT', 'GRID', 'CRM', 'CONFLUENCE', 'CUSTOM', 'TRAVEL_ADVISORY', name='sourcename', native_enum=False),
|
|
27
|
+
existing_nullable=True)
|
|
28
|
+
# ### end Alembic commands ###
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
def downgrade() -> None:
|
|
32
|
+
"""Downgrade schema."""
|
|
33
|
+
# ### commands auto generated by Alembic - please adjust! ###
|
|
34
|
+
op.alter_column('source', 'type',
|
|
35
|
+
existing_type=sa.Enum('S3', 'SHARE_POINT', 'GRID', 'CRM', 'CONFLUENCE', 'CUSTOM', 'TRAVEL_ADVISORY', name='sourcename', native_enum=False),
|
|
36
|
+
type_=sa.VARCHAR(length=11),
|
|
37
|
+
existing_nullable=True)
|
|
38
|
+
# ### end Alembic commands ###
|
prism_models/migration/versions/2025_10_08_1304_c91eb8e38cc7_added_destination_report_and_event_.py
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"""Added Destination Report and event sources
|
|
2
|
+
|
|
3
|
+
Revision ID: c91eb8e38cc7
|
|
4
|
+
Revises: 5cfa0c462948
|
|
5
|
+
Create Date: 2025-10-08 13:04:14.325976
|
|
6
|
+
|
|
7
|
+
"""
|
|
8
|
+
from typing import Sequence, Union
|
|
9
|
+
|
|
10
|
+
from alembic import op
|
|
11
|
+
import sqlalchemy as sa
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# revision identifiers, used by Alembic.
|
|
15
|
+
revision: str = 'c91eb8e38cc7'
|
|
16
|
+
down_revision: Union[str, Sequence[str], None] = '5cfa0c462948'
|
|
17
|
+
branch_labels: Union[str, Sequence[str], None] = None
|
|
18
|
+
depends_on: Union[str, Sequence[str], None] = None
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
def upgrade() -> None:
|
|
22
|
+
"""Upgrade schema."""
|
|
23
|
+
# ### commands auto generated by Alembic - please adjust! ###
|
|
24
|
+
op.alter_column('source', 'type',
|
|
25
|
+
existing_type=sa.VARCHAR(length=15),
|
|
26
|
+
type_=sa.Enum('S3', 'SHARE_POINT', 'GRID', 'GRID_DESTINATION_REPORT', 'GRID_EVENT_REPORT', 'CRM', 'CONFLUENCE', 'CUSTOM', 'TRAVEL_ADVISORY', name='sourcename', native_enum=False),
|
|
27
|
+
existing_nullable=True)
|
|
28
|
+
# ### end Alembic commands ###
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
def downgrade() -> None:
|
|
32
|
+
"""Downgrade schema."""
|
|
33
|
+
# ### commands auto generated by Alembic - please adjust! ###
|
|
34
|
+
op.alter_column('source', 'type',
|
|
35
|
+
existing_type=sa.Enum('S3', 'SHARE_POINT', 'GRID', 'GRID_DESTINATION_REPORT', 'GRID_EVENT_REPORT', 'CRM', 'CONFLUENCE', 'CUSTOM', 'TRAVEL_ADVISORY', name='sourcename', native_enum=False),
|
|
36
|
+
type_=sa.VARCHAR(length=15),
|
|
37
|
+
existing_nullable=True)
|
|
38
|
+
# ### end Alembic commands ###
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
"""added qa id to vovetor
|
|
2
|
+
|
|
3
|
+
Revision ID: 796b720ea35f
|
|
4
|
+
Revises: c91eb8e38cc7
|
|
5
|
+
Create Date: 2025-10-09 13:08:56.972719
|
|
6
|
+
|
|
7
|
+
"""
|
|
8
|
+
from typing import Sequence, Union
|
|
9
|
+
|
|
10
|
+
from alembic import op
|
|
11
|
+
import sqlalchemy as sa
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# revision identifiers, used by Alembic.
|
|
15
|
+
revision: str = '796b720ea35f'
|
|
16
|
+
down_revision: Union[str, Sequence[str], None] = 'c91eb8e38cc7'
|
|
17
|
+
branch_labels: Union[str, Sequence[str], None] = None
|
|
18
|
+
depends_on: Union[str, Sequence[str], None] = None
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
def upgrade() -> None:
|
|
22
|
+
"""Upgrade schema."""
|
|
23
|
+
# ### commands auto generated by Alembic - please adjust! ###
|
|
24
|
+
op.add_column('vector', sa.Column('qa_pair_id', sa.Integer(), nullable=True))
|
|
25
|
+
op.alter_column('vector', 'chunk_id',
|
|
26
|
+
existing_type=sa.INTEGER(),
|
|
27
|
+
nullable=True)
|
|
28
|
+
op.create_unique_constraint(op.f('vector_qa_pair_id_key'), 'vector', ['qa_pair_id'])
|
|
29
|
+
op.create_foreign_key(op.f('vector_qa_pair_id_fkey'), 'vector', 'qa_pair', ['qa_pair_id'], ['id'])
|
|
30
|
+
# ### end Alembic commands ###
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
def downgrade() -> None:
|
|
34
|
+
"""Downgrade schema."""
|
|
35
|
+
# ### commands auto generated by Alembic - please adjust! ###
|
|
36
|
+
op.drop_constraint(op.f('vector_qa_pair_id_fkey'), 'vector', type_='foreignkey')
|
|
37
|
+
op.drop_constraint(op.f('vector_qa_pair_id_key'), 'vector', type_='unique')
|
|
38
|
+
op.alter_column('vector', 'chunk_id',
|
|
39
|
+
existing_type=sa.INTEGER(),
|
|
40
|
+
nullable=False)
|
|
41
|
+
op.drop_column('vector', 'qa_pair_id')
|
|
42
|
+
# ### end Alembic commands ###
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"""added sharepoint_drive_item_id as an optional field to document table
|
|
2
|
+
|
|
3
|
+
Revision ID: 663c66268631
|
|
4
|
+
Revises: 796b720ea35f
|
|
5
|
+
Create Date: 2025-10-16 16:11:31.728752
|
|
6
|
+
|
|
7
|
+
"""
|
|
8
|
+
from typing import Sequence, Union
|
|
9
|
+
|
|
10
|
+
from alembic import op
|
|
11
|
+
import sqlalchemy as sa
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# revision identifiers, used by Alembic.
|
|
15
|
+
revision: str = '663c66268631'
|
|
16
|
+
down_revision: Union[str, Sequence[str], None] = '796b720ea35f'
|
|
17
|
+
branch_labels: Union[str, Sequence[str], None] = None
|
|
18
|
+
depends_on: Union[str, Sequence[str], None] = None
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
def upgrade() -> None:
|
|
22
|
+
"""Upgrade schema."""
|
|
23
|
+
# ### commands auto generated by Alembic - please adjust! ###
|
|
24
|
+
op.add_column('document', sa.Column('sharepoint_drive_item_id', sa.String(length=1024), nullable=True))
|
|
25
|
+
# ### end Alembic commands ###
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
def downgrade() -> None:
|
|
29
|
+
"""Downgrade schema."""
|
|
30
|
+
# ### commands auto generated by Alembic - please adjust! ###
|
|
31
|
+
op.drop_column('document', 'sharepoint_drive_item_id')
|
|
32
|
+
# ### end Alembic commands ###
|
prism_models/qdrant.py
ADDED
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
from typing import Optional, List, Any
|
|
2
|
+
from datetime import datetime
|
|
3
|
+
from pydantic import BaseModel, Field, UUID4, ValidationError
|
|
4
|
+
from sqlalchemy import JSON, TypeDecorator
|
|
5
|
+
from sqlalchemy.engine.interfaces import Dialect
|
|
6
|
+
from enum import Enum
|
|
7
|
+
|
|
8
|
+
class ChunkTypeEnum(str, Enum):
|
|
9
|
+
TEXT = "TEXT"
|
|
10
|
+
Q_AND_A = "Q/A"
|
|
11
|
+
AUGMENTED_TEXT = "AUGMENTED_TEXT"
|
|
12
|
+
AUGMENTED_Q_AND_A = "AUGMENTED_Q/A"
|
|
13
|
+
|
|
14
|
+
class QdrantVectorPayload(BaseModel):
|
|
15
|
+
virtual_collection_names: Optional[List[str]] = Field(
|
|
16
|
+
default=None, description="Names of the virtual collections"
|
|
17
|
+
)
|
|
18
|
+
uuid: Optional[UUID4] = Field(
|
|
19
|
+
default=None, description="Unique identifier for the vector"
|
|
20
|
+
)
|
|
21
|
+
chunk_text: Optional[str] = Field(
|
|
22
|
+
default=None, description="Text content of the chunk"
|
|
23
|
+
)
|
|
24
|
+
is_active: Optional[bool] = Field(
|
|
25
|
+
default=True, description="Whether the vector is active"
|
|
26
|
+
)
|
|
27
|
+
deleted_at: Optional[datetime] = Field(
|
|
28
|
+
default=None, description="Timestamp when the vector was deleted"
|
|
29
|
+
)
|
|
30
|
+
|
|
31
|
+
chunk_type: ChunkTypeEnum = Field(
|
|
32
|
+
default=ChunkTypeEnum.TEXT,
|
|
33
|
+
description="Type of the chunk"
|
|
34
|
+
)
|
|
35
|
+
|
|
36
|
+
class Config:
|
|
37
|
+
orm_mode = True
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
class DestinationVectorPayload(QdrantVectorPayload):
|
|
41
|
+
destination_id: Optional[int] = Field(
|
|
42
|
+
default=None, description="ID of the destination associated with the chunk"
|
|
43
|
+
)
|
|
44
|
+
report_title: Optional[str] = Field(
|
|
45
|
+
default=None, description="Title of the report"
|
|
46
|
+
)
|
|
47
|
+
destination_name: Optional[str] = Field(
|
|
48
|
+
default=None, description="Name of the destination"
|
|
49
|
+
)
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
class PydanticType(TypeDecorator):
|
|
53
|
+
"""
|
|
54
|
+
A SQLAlchemy column type that validates JSON data against a Pydantic model.
|
|
55
|
+
|
|
56
|
+
Usage:
|
|
57
|
+
class MyModel(Base):
|
|
58
|
+
data: Mapped[dict] = mapped_column(PydanticType(MyPydanticModel))
|
|
59
|
+
"""
|
|
60
|
+
impl = JSON
|
|
61
|
+
cache_ok = True
|
|
62
|
+
|
|
63
|
+
def __init__(self, pydantic_model: type[BaseModel], *args, **kwargs):
|
|
64
|
+
super().__init__(*args, **kwargs)
|
|
65
|
+
self.pydantic_model = pydantic_model
|
|
66
|
+
|
|
67
|
+
def process_bind_param(self, value: Any, dialect: Dialect) -> dict | None:
|
|
68
|
+
"""
|
|
69
|
+
Validate and convert Pydantic model to dict before storing in database.
|
|
70
|
+
"""
|
|
71
|
+
if value is None:
|
|
72
|
+
return None
|
|
73
|
+
|
|
74
|
+
if isinstance(value, self.pydantic_model):
|
|
75
|
+
return value.model_dump(mode='json')
|
|
76
|
+
|
|
77
|
+
if isinstance(value, dict):
|
|
78
|
+
try:
|
|
79
|
+
validated = self.pydantic_model(**value)
|
|
80
|
+
return validated.model_dump(mode='json')
|
|
81
|
+
except ValidationError as e:
|
|
82
|
+
raise ValueError(f"Invalid data for {self.pydantic_model.__name__}: {e}")
|
|
83
|
+
|
|
84
|
+
raise ValueError(f"Expected {self.pydantic_model.__name__} or dict, got {type(value)}")
|
|
85
|
+
|
|
86
|
+
def process_result_value(self, value: dict | None, dialect: Dialect) -> BaseModel | None:
|
|
87
|
+
"""
|
|
88
|
+
Convert dict from database to Pydantic model instance.
|
|
89
|
+
"""
|
|
90
|
+
if value is None:
|
|
91
|
+
return None
|
|
92
|
+
|
|
93
|
+
try:
|
|
94
|
+
return self.pydantic_model(**value)
|
|
95
|
+
except ValidationError as e:
|
|
96
|
+
print(f"Warning: Invalid data in database for {self.pydantic_model.__name__}: {e}")
|
|
97
|
+
return None
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: prism-models
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Requires-Python: >=3.12
|
|
5
|
+
Requires-Dist: sqlalchemy[asyncio]>=2.0.0
|
|
6
|
+
Requires-Dist: alembic>=1.16.0
|
|
7
|
+
Requires-Dist: asyncpg>=0.29.0
|
|
8
|
+
Requires-Dist: pydantic>=2.0.0
|
|
9
|
+
Requires-Dist: pydantic-settings>=2.1.0
|
|
10
|
+
Requires-Dist: uuid7>=0.1.0
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
prism_models/__init__.py,sha256=QNgzPjt8lzBV7j0e70zUoJurYiLMSsVcWEHnQz4hO-c,1396
|
|
2
|
+
prism_models/agent_profile.py,sha256=SlZyd59q5DhdMmbcW9SAQCy44sgF_I7arz-M8_71an4,3789
|
|
3
|
+
prism_models/base.py,sha256=Ka8zNToTiTG0jNgzqqj2goGmPXt8zxuuSMYvotnb8wY,2281
|
|
4
|
+
prism_models/chat.py,sha256=zncfBav1YdB8AdC-9McY9fsKZ3-2plLLhy_NMd8JoyA,11784
|
|
5
|
+
prism_models/config.py,sha256=gy_6HknnG17Clv8X_EBhaXEBFBLGR1PLjvN5-SFTo5E,962
|
|
6
|
+
prism_models/content.py,sha256=7QEfWYAwpj3ltFdQS5e9bBNrtpGttOYpKhvja-5ecD8,10993
|
|
7
|
+
prism_models/feedback.py,sha256=tMZISQ0mk7_1ADsK4bO36_VZ0f-JDdAPcfWzIZBk0_g,6202
|
|
8
|
+
prism_models/qdrant.py,sha256=ORIpLv1fbRJiL9qq2F-WurtY42MGEPku4ojY_-cdsRY,3266
|
|
9
|
+
prism_models/migration/README,sha256=MVlc9TYmr57RbhXET6QxgyCcwWP7w-vLkEsirENqiIQ,38
|
|
10
|
+
prism_models/migration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
prism_models/migration/env.py,sha256=Uobqv_peoEUYAZST0D0hO7xHPQe8OPxqZ0yV1xuNE2c,4096
|
|
12
|
+
prism_models/migration/script.py.mako,sha256=04kgeBtNMa4cCnG8CfQcKt6P6rnloIfj8wy0u_DBydM,704
|
|
13
|
+
prism_models/migration/versions/2025_09_11_1516_161f8829d93f_initial_schema.py,sha256=6nkB5DLbTNCk84SYsKz0kUzyhvDPjkkC9HuwN37QUao,35166
|
|
14
|
+
prism_models/migration/versions/2025_09_11_1558_5e011849ea76_changes_for_feedback.py,sha256=KmglWbDxyOSctzgTpyis0TC0-rEqZKrhM9xgFiTWF-s,5434
|
|
15
|
+
prism_models/migration/versions/2025_09_14_2243_059af231c2b2_profile_entities.py,sha256=aKxOOEDPo_wZwh93vJNXXQDdO9dqlPJ5pK3mY_Hef9U,6331
|
|
16
|
+
prism_models/migration/versions/2025_09_15_1646_3219fec0bb10_agent_changes.py,sha256=0b7TyOyEBU-HaINIMGYZjhWHbz5m5LEB1Bjz-IZ72qQ,868
|
|
17
|
+
prism_models/migration/versions/2025_09_16_1627_f2013b08daac_rename_metadata_to_additional_data.py,sha256=ihzMYcVK-37DN1jYsuOMISvBjnGDwViDTaj4FczONRs,1415
|
|
18
|
+
prism_models/migration/versions/2025_09_17_1147_327febbf555f_display_name_added.py,sha256=5DhctzmhumdDt157ytUi0JNQPCt6KXF9_u_ADutR5pw,1021
|
|
19
|
+
prism_models/migration/versions/2025_09_18_1106_b0bcb7ca1dc9_add_support_for_profile_on_create_convo.py,sha256=MWZRiCnVKaojXOGMpr_G41611yIXnAuBzAeeV6Nusw4,1445
|
|
20
|
+
prism_models/migration/versions/2025_09_18_1511_bbc1955191e6_preview_mode.py,sha256=-lokRulsgfjt1LXY2e1pcLFSw40ELICpRM6QLec9pjM,1043
|
|
21
|
+
prism_models/migration/versions/2025_09_26_1115_6eb70e848451_added_publish_status_to_document.py,sha256=i_yNpWCgIG9t8nfPR58xerzcgCqKFMl7lxPvixGkHPU,1463
|
|
22
|
+
prism_models/migration/versions/2025_09_26_1240_f8b0ea2e743c_drop_unique_title_version_on_document.py,sha256=Td2ijXUdUrN68aFizK5SKYC4XwOw3DPKwEGFjycv7Qs,1480
|
|
23
|
+
prism_models/migration/versions/2025_09_26_1505_07dc8c2589e0_added_chunk_id_and_vector_embeddings_to_.py,sha256=6S3qCe0JBx-LNZN3jhGN_9RrKBOKCDVuywzZxveDRaQ,1916
|
|
24
|
+
prism_models/migration/versions/2025_09_29_1220_46ba2693b883_add_markdown_markdown_file_path_s3_.py,sha256=NRZFSr4Zm9XWUujx7-QUBKL1BdICMOKuNVxw3PZsg9Y,934
|
|
25
|
+
prism_models/migration/versions/2025_10_02_1520_bf1472a9b021_removed_doc_id_from_config_table_and_.py,sha256=aB-k8Dqw39YHxgg_hBcPEDyDmFxjn5d1KEQuTCUJ_8E,1155
|
|
26
|
+
prism_models/migration/versions/2025_10_02_1525_6c0e63e0fef8_removed_doc_id_from_config_table_.py,sha256=-4OSytv3-L_Yc3TI2pUB8gpPH3iQzuU3KzeRqZdaD9Q,1228
|
|
27
|
+
prism_models/migration/versions/2025_10_02_1608_1b3eb48f5017_config_id_on_delete_will_be_set_to_null.py,sha256=k9d2CSFCegeeJulUtI3sXmff9ttDi9pftLsgWIwiqm0,1224
|
|
28
|
+
prism_models/migration/versions/2025_10_03_1109_ac85b606d8a4_added_docling_hybrid_to_chunkstrategy.py,sha256=B1z0SvnnkXAAHHQeQQu1aMJGQml66yoTj1sL0BraK6Y,787
|
|
29
|
+
prism_models/migration/versions/2025_10_03_1204_7d1cb343a63f_added_s3_bucket_and_s3_dir_in_source_.py,sha256=qkiMOFumgssJz2dceyN5CNd8hlbY9xruJVozQZrvOe0,1563
|
|
30
|
+
prism_models/migration/versions/2025_10_03_1452_f9c750ec2a0b_1_to_1_relationship_between_collection_.py,sha256=u-zRopfKHEO-2nNBmGXALkPl4mVnIwj2Y2rfcWKTAow,2264
|
|
31
|
+
prism_models/migration/versions/2025_10_07_1722_5cfa0c462948_added_travel_advisory_enum.py,sha256=dxhTunpblAaWN6KNMMYuoZmFNcZ1VMrR5SfOwcDLO4Y,1310
|
|
32
|
+
prism_models/migration/versions/2025_10_08_1304_c91eb8e38cc7_added_destination_report_and_event_.py,sha256=7Re8GVdOC4KMIP14MWpVAD6LlV4ow0uP4w_jYF8iT_g,1422
|
|
33
|
+
prism_models/migration/versions/2025_10_09_1308_796b720ea35f_added_qa_id_to_vovetor.py,sha256=tW58ejf2_NcaK038Igf3zicZQymeVt4I4uzZULNtHV0,1467
|
|
34
|
+
prism_models/migration/versions/2025_10_16_1611_663c66268631_added_sharepoint_drive_item_id_as_an_.py,sha256=IaG9NDyTGENq65GyrhGoScBb-U82x5V7NBKpG9PYy5Q,968
|
|
35
|
+
prism_models-0.1.0.dist-info/METADATA,sha256=4Vmm86piE_0ms7RFvGjVvYo7GO1RGwpjTr-YpSwGzc4,283
|
|
36
|
+
prism_models-0.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
37
|
+
prism_models-0.1.0.dist-info/top_level.txt,sha256=UNzqwpLgFYU0EoyB9LiB1jTtc89A1sQ24fSEyNVvgJI,13
|
|
38
|
+
prism_models-0.1.0.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
prism_models
|