Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

More ingestion tidying #2

Merged
merged 1 commit into from
Mar 5, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 9 additions & 14 deletions backend/app/ingestion/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@ class DocumentDB(Base):
countries: Mapped[Optional[list[str]]] = mapped_column(JSONB, nullable=True)
organizations: Mapped[Optional[list[str]]] = mapped_column(JSONB, nullable=True)
regions: Mapped[Optional[list[str]]] = mapped_column(JSONB, nullable=True)
notes: Mapped[Optional[str]] = mapped_column(Text, nullable=True)
drive_link: Mapped[Optional[str]] = mapped_column(Text, nullable=True)
year: Mapped[Optional[int]] = mapped_column(Integer, nullable=True)
date_added: Mapped[Optional[datetime]] = mapped_column(
Expand All @@ -108,8 +107,8 @@ async def save_document_to_db(
asession: AsyncSession,
metadata: dict,
pdf_url: str,
summary: str = None,
title: str = None,
summary: str,
title: str,
document_id: int,
) -> None:
"""
Expand All @@ -127,7 +126,6 @@ async def save_document_to_db(
countries = metadata.get("Countries", [])
organizations = metadata.get("Organization(s)", [])
regions = metadata.get("Region(s)", [])
notes = metadata.get("Notes", "")
drive_link = metadata.get("Drive link", "")
year = metadata.get("Year", None)
document_id = metadata.get("ID", None)
Expand All @@ -152,9 +150,8 @@ async def save_document_to_db(
countries=countries,
organizations=organizations,
regions=regions,
notes=notes,
drive_link=drive_link,
year=metadata.get("Year"),
year=year,
date_added=date_added,
document_id=document_id, # Using the document_id passed to the function
pdf_url=pdf_url,
Expand All @@ -171,7 +168,7 @@ async def save_document_to_db(
extracted_qa_pairs = []

qa_pairs = []
for qa_idx, qa_pair in enumerate(extracted_qa_pairs):
for _, qa_pair in enumerate(extracted_qa_pairs):
try:
question = qa_pair.get("question", "")
answers = qa_pair.get("answers", [])
Expand Down Expand Up @@ -220,13 +217,11 @@ async def save_single_document(metadata: Dict[str, Any]) -> bool:
file_name=metadata["file_name"],
processed_pages=metadata["processed_pages"],
asession=asession,
metadata=metadata.get("fields", {}),
pdf_url=metadata.get("pdf_url", ""), # Use empty string as fallback
title=metadata.get("survey_name"),
summary=metadata.get("summary"),
document_id=metadata.get(
"document_id"
), # Pass document_id from metadata
metadata=metadata["fields"],
pdf_url=metadata["pdf_url"],
title=metadata["survey_name"],
summary=metadata["summary"],
document_id=metadata["document_id"],
)
logger.info(
f"File '{metadata['file_name']}' processed and saved successfully."
Expand Down
2 changes: 1 addition & 1 deletion backend/app/ingestion/routers.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@


@router.post("/airtable/refresh", response_model=AirtableIngestionResponse)
async def airtable_refresh_and_ingest():
async def airtable_refresh_and_ingest() -> AirtableIngestionResponse:
"""
Refresh the list of documents by comparing Airtable 'ID' fields with database
'document_id's. Automatically ingest the missing documents.
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
"""remove_notes_column

Revision ID: 62342bab6861
Revises: aaa104d6c3ed
Create Date: 2025-03-05 11:34:59.706611

"""

from typing import Sequence, Union

import sqlalchemy as sa
from alembic import op

# revision identifiers, used by Alembic.
revision: str = "62342bab6861"
down_revision: Union[str, None] = "aaa104d6c3ed"
branch_labels: Union[str, Sequence[str], None] = None
depends_on: Union[str, Sequence[str], None] = None


def upgrade() -> None:
# ### commands auto generated by Alembic - please adjust! ###
op.drop_column("documents", "notes")
# ### end Alembic commands ###


def downgrade() -> None:
# ### commands auto generated by Alembic - please adjust! ###
op.add_column(
"documents", sa.Column("notes", sa.TEXT(), autoincrement=False, nullable=True)
)
# ### end Alembic commands ###
Loading