🔍 Code Extractor

Search Components

Full-Text: Fast keyword matching | Semantic: AI-powered understanding of intent (finds similar concepts)

Search Results for "migration"

Found 25 matching component(s)

  • function msg_to_eml

    Converts Microsoft Outlook .msg files to standard .eml format, preserving email headers, body content (plain text and HTML), and attachments.

    File: /tf/active/vicechatdev/msg_to_eml.py

    email-conversion msg-to-eml outlook email-processing file-conversion
  • function msg_to_eml_alternative

    Converts Microsoft Outlook .msg files to .eml (email) format using the extract_msg library, preserving email headers, body content (plain text and HTML), and attachments.

    File: /tf/active/vicechatdev/msg_to_eml.py

    email-conversion msg-to-eml outlook mime email-processing
  • function test_mixed_previous_reports

    A test function that validates the DocumentExtractor's ability to extract text content from multiple file formats (TXT and Markdown) and combine them into a unified previous reports summary.

    File: /tf/active/vicechatdev/leexi/test_enhanced_reports.py

    testing document-extraction file-processing integration-test text-extraction
  • function dry_run_test

    Performs a dry run test of SharePoint to FileCloud synchronization, analyzing up to a specified number of documents without actually transferring files.

    File: /tf/active/vicechatdev/SPFCsync/dry_run_test.py

    dry-run testing sharepoint filecloud sync
  • function summarize_text

    A deprecated standalone function that was originally designed to summarize groups of similar documents but now only returns the input documents unchanged with a deprecation warning.

    File: /tf/active/vicechatdev/chromadb-cleanup/src/summarization/summarizer.py

    deprecated text-summarization document-processing nlp text-clustering
  • function migrate_from_legacy

    Flask API endpoint that migrates data from a legacy system to the current database by accepting a data directory path and executing a migration process.

    File: /tf/active/vicechatdev/vice_ai/new_app.py

    migration legacy-system data-migration flask-endpoint api
  • function create_sample_data

    Flask API endpoint that creates sample data for testing purposes by invoking the LegacySystemMigrator's create_sample_data method and returns the generated data as JSON.

    File: /tf/active/vicechatdev/vice_ai/new_app.py

    flask api-endpoint testing sample-data database-setup
  • class LegacySystemMigrator

    Migrates data from a legacy file-based document system to a new database-backed architecture with TextSection-centric design, including document metadata, sections, chat configurations, and version history.

    File: /tf/active/vicechatdev/vice_ai/migration.py

    migration data-migration legacy-system database document-management
  • function main_v12

    Command-line interface function that orchestrates database migration from a legacy document AI system to a new architecture, with options for verification and sample data creation.

    File: /tf/active/vicechatdev/vice_ai/migration.py

    migration database cli command-line data-migration
  • function cleanup_corrupted_chat_session_ids

    Database maintenance function that identifies and fixes corrupted chat_session_id values in the text_sections table by replacing invalid string representations with NULL.

    File: /tf/active/vicechatdev/vice_ai/cleanup_database.py

    database cleanup maintenance data-integrity migration
  • class DocumentSection_v1

    A dataclass representing a reference to a section (TextSection or DataSection) within a document structure, supporting hierarchical organization and section type differentiation.

    File: /tf/active/vicechatdev/vice_ai/models.py

    dataclass document-structure reference serialization hierarchy
  • class DatabaseManager_v1

    SQLite database manager for persistent storage

    File: /tf/active/vicechatdev/vice_ai/models.py

    class databasemanager
  • class DatabaseManager_v1

    Database manager for SmartStat following vice_ai patterns

    File: /tf/active/vicechatdev/vice_ai/smartstat_models.py

    class databasemanager
  • function import_document_from_filecloud

    Imports a document from FileCloud into the system by extracting metadata, creating a controlled document record, downloading the file content, creating a document version, and uploading it back to FileCloud with proper folder structure.

    File: /tf/active/vicechatdev/CDocs/FC_sync.py

    document-management filecloud import file-upload metadata
  • function create_node_with_uid

    Creates a new node in a Neo4j graph database with a specified UID, label, and properties, automatically adding a creation timestamp if not provided.

    File: /tf/active/vicechatdev/CDocs/db/db_operations.py

    neo4j graph-database node-creation database uid
  • function migrate_audit_trail

    Migrates existing audit events from a legacy format to a new AuditTrail structure in a Neo4j database, returning migration statistics.

    File: /tf/active/vicechatdev/CDocs/db/db_operations.py

    database-migration audit-trail neo4j schema-migration data-transformation
  • function init_database

    Initializes a Neo4j database with required schema constraints, creates an AuditTrail node, and migrates existing audit events.

    File: /tf/active/vicechatdev/CDocs/db/__init__.py

    database initialization schema migration neo4j
  • function initialize_schema

    Initializes the Neo4j database schema by creating required constraints, indexes, root nodes, audit trails, and migrating existing data structures to current schema versions.

    File: /tf/active/vicechatdev/CDocs/db/schema_manager.py

    database neo4j schema initialization migration
  • function migrate_approval_data

    Migrates legacy single-step approval records in Neo4j to a new multi-step approval model by creating ApprovalStep nodes and Approver nodes with proper relationships.

    File: /tf/active/vicechatdev/CDocs/db/schema_manager.py

    database-migration neo4j graph-database data-transformation approval-workflow
  • function migrate_approval_cycles

    Migrates legacy Approval nodes and their related structures to the new ApprovalCycle model in a Neo4j graph database, creating ApprovalCycle nodes and ApproverAssignment nodes while maintaining relationships with DocumentVersion nodes.

    File: /tf/active/vicechatdev/CDocs/db/schema_manager.py

    database-migration neo4j graph-database approval-workflow data-transformation
  • function update_schema

    Updates a Neo4j database schema to match a specific version, enabling schema migrations during system upgrades.

    File: /tf/active/vicechatdev/CDocs/db/schema_manager.py

    database schema migration neo4j versioning
  • function migrate_audit_events

    Migrates orphaned AuditEvent nodes from CDocs nodes to an AuditTrail node in a Neo4j graph database by deleting old relationships and creating new ones.

    File: /tf/active/vicechatdev/CDocs/db/schema_manager.py

    neo4j database-migration graph-database audit-events data-migration
  • function initialize_document_counters

    Initializes document counters in Neo4j by analyzing existing ControlledDocument nodes and creating DocumentCounter nodes with values higher than the maximum existing document numbers for each department/type combination.

    File: /tf/active/vicechatdev/CDocs/db/schema_manager.py

    neo4j database-initialization document-management counter-initialization graph-database
  • function ensure_document_version_share_attributes

    Ensures a DocumentVersion object has share_id and share_url attributes, initializing them to None if missing and persisting changes to the database.

    File: /tf/active/vicechatdev/CDocs/controllers/permission_startup_check.py

    attribute-initialization schema-migration defensive-programming database-persistence error-handling
  • function deprecated_opts_signature

    A utility function that analyzes arguments and keyword arguments to determine if the new or deprecated .opts method signature is being used, returning flags and processed options accordingly.

    File: /tf/active/vicechatdev/patches/util.py

    deprecation signature-migration options-processing backward-compatibility argument-parsing

Search Examples