🔍 Code Extractor

Search Components

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

Search Results for "lookup"

Found 50 matching component(s)

  • class MetadataCatalog

    Helper class to manage FileCloud metadata sets and attributes. This class provides methods to work with FileCloud metadata by providing a more user-friendly interface on top of the raw API.

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

    class metadatacatalog
  • class ReferenceManager_v2

    Manages extraction and formatting of references for LLM chat responses. Handles both file references and BibTeX citations, formatting them according to various academic citation styles.

    File: /tf/active/vicechatdev/OneCo_hybrid_RAG copy.py

    class referencemanager
  • class PatternBasedExtractor

    Extract flocks based on farm-level In-Ovo usage patterns.

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

    class patternbasedextractor
  • class DocumentDetail

    Document detail view component

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

    class documentdetail
  • class ReferenceManager_v3

    Manages extraction and formatting of references for LLM chat responses. Handles both file references and BibTeX citations, formatting them according to various academic citation styles.

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

    class referencemanager
  • class DocumentDetail_v1

    Document detail view component

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

    class documentdetail
  • class ReferenceManager_v4

    Manages extraction and formatting of references for LLM chat responses. Handles both file references and BibTeX citations, formatting them according to various academic citation styles.

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

    class referencemanager
  • function get_task_status_v1

    Thread-safe function that retrieves the current status of a task from a shared dictionary using a task identifier.

    File: /tf/active/vicechatdev/docchat/app.py

    threading concurrency task-management status-tracking thread-safe
  • function get_uploaded_document

    Retrieves a specific uploaded document from the application state for a given user and document ID, returning document metadata and content in a thread-safe manner.

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

    document-retrieval thread-safe state-management user-documents flask
  • function api_get_reference_document

    Flask API endpoint that retrieves a reference document from Neo4j database by UUID and stores it in the user's session for chat usage.

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

    flask api neo4j document-retrieval reference-document
  • function get_document_v4

    Flask API endpoint that retrieves a specific document with its text and data sections, including optional sharing information, for authenticated users.

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

    api flask document-management rest-endpoint authentication
  • function export_to_docx

    Exports a document with text and data sections to Microsoft Word DOCX format, preserving formatting, structure, and metadata.

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

    document-export docx word-document file-generation content-formatting
  • function export_to_pdf

    Exports a document with text and data sections to a PDF file using ReportLab, handling custom styling, section ordering, and content formatting including Quill Delta to HTML/Markdown conversion.

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

    pdf-export document-generation reportlab content-formatting quill-delta
  • function get_document_type_name

    Looks up and returns the full document type name corresponding to a given document type code by searching through a DOCUMENT_TYPES dictionary.

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

    lookup dictionary reverse-mapping document-types code-to-name
  • function get_document_type_code

    Retrieves a document type code from a dictionary lookup using the provided document type name, returning the name itself if no mapping exists.

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

    lookup mapping document-type code-conversion dictionary-lookup
  • function get_department_name

    Looks up and returns the full department name corresponding to a given department code by searching through a DEPARTMENTS dictionary.

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

    lookup dictionary mapping department reverse-lookup
  • function get_department_code

    Retrieves a department code by looking up a department's full name in a DEPARTMENTS dictionary, returning the original name if not found.

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

    lookup dictionary mapping department code-conversion
  • function get_document_type

    Retrieves configuration details for a specific document type by looking it up in DOCUMENT_CONFIG or DOCUMENT_TYPES, returning a dictionary with document metadata or an empty dict if not found.

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

    document-management configuration lookup metadata document-type
  • function get_document_status_name

    Retrieves the full document status name corresponding to a given status code by performing a reverse lookup in the DOCUMENT_STATUSES dictionary.

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

    lookup mapping dictionary reverse-lookup status
  • function get_document_status_code

    Retrieves a document status code from a dictionary lookup using the provided full name, returning the name itself if not found.

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

    lookup dictionary document-management status-code mapping
  • function get_status_color

    Retrieves the color code associated with a given document status code from a configuration dictionary, returning a default gray color if the status is not found.

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

    status color ui configuration lookup
  • function check_document_exists_by_uid

    Queries a Neo4j database to check if a ControlledDocument with a specific UID exists and returns the document object if found.

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

    database neo4j document-management lookup validation
  • function check_document_exists_by_doc_number

    Queries a Neo4j database to check if a ControlledDocument exists with a specific document number and returns the document object if found.

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

    database neo4j document-management lookup validation
  • function register_model

    Registers a model class in a global registry dictionary, enabling dynamic model lookup and management. Can be used as a decorator or called directly.

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

    registry decorator model-registration class-registration plugin-pattern
  • function get_model_class

    Retrieves a model class from a registry by its string name, returning the class type or None if not found.

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

    registry lookup factory-pattern model-management dynamic-loading
  • class ApprovalCycle_v1

    Model representing a approval cycle for a document version.

    File: /tf/active/vicechatdev/CDocs/models/approval.py

    class approvalcycle
  • class ReviewCycle

    Model representing a review cycle for a document version.

    File: /tf/active/vicechatdev/CDocs/models/review.py

    class reviewcycle
  • function get_node_by_uid

    Retrieves a node from a Neo4j graph database by its unique identifier (UID) and returns it as a dictionary.

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

    neo4j graph-database node-retrieval database-query uid-lookup
  • function node_exists

    Checks if a node with a specific UID exists in a Neo4j graph database by querying for the node and returning a boolean result.

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

    neo4j graph-database node-validation existence-check database-query
  • function prepare_audit_data_for_document_processor

    Prepares comprehensive audit data for a controlled document version, aggregating information from document history, reviews, approvals, and audit events into a structured format for DocumentProcessor.

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

    audit document-management compliance data-aggregation pdf-generation
  • function check_document_hash_exists

    Checks if a document with a given SHA-256 hash already exists in the database by querying the graph database for matching DocumentVersion nodes.

    File: /tf/active/vicechatdev/CDocs/utils/document_processor.py

    database graph-database neo4j document-management deduplication
  • class DocumentDashboard

    Dashboard for viewing and managing controlled documents.

    File: /tf/active/vicechatdev/CDocs/ui/document_dashboard.py

    class documentdashboard
  • class DocumentDetail_v2

    Document detail view component

    File: /tf/active/vicechatdev/CDocs/ui/document_detail.py

    class documentdetail
  • class DynamicSchemaDiscovery

    Discovers database schema from live database connection

    File: /tf/active/vicechatdev/full_smartstat/dynamic_schema_discovery.py

    class dynamicschemadiscovery
  • function get_database_tables_columns

    Flask route handler that retrieves database schema information including tables, columns, and relationships, filtered and sorted by relevance for data analysis workflows.

    File: /tf/active/vicechatdev/full_smartstat/app.py

    flask database schema metadata api-endpoint
  • class EnhancedSQLWorkflow

    Enhanced SQL workflow with iterative optimization

    File: /tf/active/vicechatdev/full_smartstat/enhanced_sql_workflow.py

    class enhancedsqlworkflow
  • class TwoPassSqlWorkflow

    Two-pass SQL generation workflow with iteration and error correction

    File: /tf/active/vicechatdev/full_smartstat/two_pass_sql_workflow.py

    class twopasssqlworkflow
  • class DatabaseSchema

    A dataclass that represents comprehensive database schema information, including table structures, columns, relationships, and categorizations for SQL database introspection and query generation.

    File: /tf/active/vicechatdev/full_smartstat/sql_query_generator.py

    database schema metadata introspection SQL
  • class SQLQueryGenerator

    Generates SQL queries based on user requests and database schema

    File: /tf/active/vicechatdev/full_smartstat/sql_query_generator.py

    class sqlquerygenerator
  • function test_single_vendor

    Tests vendor enrichment by querying a RAG (Retrieval-Augmented Generation) system to find official contact information (email and VAT number) for a specified vendor using document search and web search capabilities.

    File: /tf/active/vicechatdev/find_email/test_enrichment.py

    testing vendor-enrichment RAG information-retrieval contact-information
  • class VendorEnricher

    A class that enriches vendor information by finding official email addresses and VAT numbers using RAG (Retrieval-Augmented Generation) with ChromaDB document search and web search capabilities.

    File: /tf/active/vicechatdev/find_email/vendor_enrichment.py

    vendor-enrichment data-enrichment RAG web-search ChromaDB
  • function get_lims_importerrors_by_id

    Retrieves a single LIMS_ImportErrors node from a Neo4j graph database by its unique ID.

    File: /tf/active/vicechatdev/neo4j_schema/neo4j_python_snippets.py

    neo4j graph-database query lims error-handling
  • function get_lims_importerrors_by_uid

    Retrieves a LIMS_ImportErrors node from a Neo4j graph database by its unique identifier (UID).

    File: /tf/active/vicechatdev/neo4j_schema/neo4j_python_snippets.py

    neo4j graph-database query lims error-tracking
  • function get_lims_parameters_by_id

    Retrieves a LIMS_Parameters node from a Neo4j graph database by its unique identifier.

    File: /tf/active/vicechatdev/neo4j_schema/neo4j_python_snippets.py

    neo4j graph-database lims database-query cypher
  • function get_lims_parameters_by_uid

    Retrieves a LIMS_Parameters node from a Neo4j graph database by searching for a specific UID (unique identifier).

    File: /tf/active/vicechatdev/neo4j_schema/neo4j_python_snippets.py

    neo4j graph-database lims database-query data-retrieval
  • function get_lims_pathogens_by_uid

    Retrieves a single LIMS_Pathogens node from a Neo4j graph database by matching its unique identifier (UID).

    File: /tf/active/vicechatdev/neo4j_schema/neo4j_python_snippets.py

    neo4j graph-database lims pathogen database-query
  • function get_lims_requests_by_id

    Retrieves a single LIMS_Requests node from a Neo4j graph database by matching its unique ID property.

    File: /tf/active/vicechatdev/neo4j_schema/neo4j_python_snippets.py

    neo4j graph-database lims database-query cypher
  • function get_lims_requests_by_uid

    Retrieves a single LIMS_Requests node from a Neo4j graph database by matching its unique identifier (UID).

    File: /tf/active/vicechatdev/neo4j_schema/neo4j_python_snippets.py

    neo4j graph-database lims database-query data-retrieval
  • function get_lims_sampletestresultdetails_by_id

    Retrieves a single LIMS_SampleTestResultDetails node from a Neo4j graph database by its unique identifier.

    File: /tf/active/vicechatdev/neo4j_schema/neo4j_python_snippets.py

    neo4j graph-database lims laboratory data-retrieval
  • function get_lims_sampletestresultdetails_by_uid

    Retrieves a LIMS_SampleTestResultDetails node from a Neo4j graph database by its unique identifier (UID).

    File: /tf/active/vicechatdev/neo4j_schema/neo4j_python_snippets.py

    neo4j graph-database lims laboratory sample-testing

Search Examples