🔍 Code Extractor

Search Components

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

Search Results for "decision"

Found 48 matching component(s)

  • class DocumentDetail_v1

    Document detail view component

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

    class documentdetail
  • class MeetingMinutesGenerator_v1

    A class that generates professional meeting minutes from meeting transcripts using either OpenAI's GPT-4o or Google's Gemini AI models.

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

    meeting-minutes transcript-processing llm gpt-4o gemini
  • class EnhancedMeetingMinutesGenerator

    A class named EnhancedMeetingMinutesGenerator

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

    class enhancedmeetingminutesgenerator
  • function get_instruction_templates

    Flask API endpoint that returns a dictionary of predefined instruction templates for different document types including SOPs, work instructions, quality forms, and document comparison guidelines.

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

    flask api endpoint templates instructions
  • function smart_read_csv

    Automatically detects CSV file delimiters (comma, semicolon, tab) and handles regional decimal formats (European comma vs US/UK point) to reliably parse CSV files from different locales.

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

    csv data-loading file-parsing delimiter-detection regional-formats
  • function get_statistical_interpretation_templates

    Flask API endpoint that retrieves available statistical interpretation templates from a JSON file or returns default templates if the file doesn't exist.

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

    flask api endpoint statistical-analysis templates
  • class ControlledDocumentFlaskApp

    Main Flask application class for Controlled Document Management System.

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

    class controlleddocumentflaskapp
  • class ApprovalCycle

    Model representing an approval cycle for a document version.

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

    class approvalcycle
  • class ApproverAssignment_v1

    Model class representing an approver assignment within an approval cycle, managing the relationship between an approver and their approval task including status, decisions, and lifecycle tracking.

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

    approval-workflow assignment-management database-model status-tracking decision-tracking
  • class ApprovalCycle_v1

    Model representing a approval cycle for a document version.

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

    class approvalcycle
  • class ApproverAssignment_v1

    Model class representing an approver assignment within an approval cycle, managing the relationship between an approver and their approval task including status, decisions, and timeline tracking.

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

    approval workflow assignment approver database-model
  • class ReviewCycle

    Model representing a review cycle for a document version.

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

    class reviewcycle
  • class ReviewerAssignment_v1

    Model class representing a reviewer assignment within a review cycle, managing reviewer information, status, decisions, and lifecycle tracking for document review processes.

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

    review-management assignment reviewer workflow database-model
  • 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 complete_approval

    Completes an approval cycle by recording a user's approval decision (APPROVED, REJECTED, etc.) and managing the approval workflow, including sequential approver activation and final cycle completion.

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

    approval workflow document-management decision-tracking permissions
  • function get_approval_statistics_v1

    Retrieves comprehensive approval statistics from a Neo4j graph database, including counts of total, pending, completed, approved, and rejected approval cycles and decisions, along with calculated approval rates.

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

    statistics analytics approval-workflow neo4j graph-database
  • function get_approval

    Retrieves a specific approval cycle by its unique identifier (UID) with optional inclusion of associated document details and approval comments.

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

    approval document-management workflow retrieval controlled-documents
  • function complete_approval_v1

    Records a user's approval decision (APPROVED or REJECTED) for a document in an approval cycle, updating the approval status and document state accordingly.

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

    approval-workflow document-management business-rules transaction-management audit-trail
  • function close_approval_cycle_v1

    Administratively closes an approval cycle by setting a final decision (APPROVED or REJECTED), updating the associated document status, and notifying relevant stakeholders.

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

    approval-management administrative-action document-workflow transaction-management permission-control
  • function get_status_after_approval

    Determines the next status for a controlled document based on an approval decision (APPROVED or REJECTED), transitioning documents through their lifecycle workflow.

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

    document-management workflow approval status-transition state-machine
  • function update_status_after_approval

    Updates a controlled document's status after an approval workflow completes, determining the next status based on the approval decision and logging the change to the audit trail.

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

    document-management workflow approval status-update lifecycle
  • function prepare_audit_data_for_document_processor_v1

    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 complete_review

    Completes a document review cycle by submitting a reviewer's decision (APPROVED/REJECTED), updating review status, managing sequential review workflows, and triggering notifications.

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

    document-management review-workflow approval-process permission-control sequential-workflow
  • function get_review_statistics

    Retrieves comprehensive review statistics from a Neo4j graph database, including counts of review cycles, approval rates, and reviewer decisions.

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

    statistics analytics review-system neo4j graph-database
  • function get_review

    Retrieves a specific review cycle by its unique identifier (UID) with optional inclusion of associated document details and review comments.

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

    document-management review-cycle workflow retrieval query
  • class DocumentDetail_v2

    Document detail view component

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

    class documentdetail
  • class ApprovalPanel_v1

    Approval management interface component

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

    class approvalpanel
  • class ApprovalPanel_v1

    Approval management interface component

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

    class approvalpanel
  • class ReviewPanel_v1

    Review management interface component

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

    class reviewpanel
  • class QAUpdater

    Orchestrates a two-step Q&A document updating process that generates optimal search queries, retrieves information from internal and external sources, and uses an LLM to determine if updates are needed.

    File: /tf/active/vicechatdev/QA_updater/qa_engine/qa_updater.py

    qa-management document-updating llm-orchestration information-retrieval vector-search
  • class QAUpdater_v1

    Orchestrates the Q&A document updating process.

    File: /tf/active/vicechatdev/QA_updater/qa_engine/qa_updater_full.py

    class qaupdater
  • class WorkflowCycleBase

    Base class for workflow cycles (ReviewCycle and ApprovalCycle) that manages workflow lifecycle, status tracking, and common properties for document review and approval processes.

    File: /tf/active/vicechatdev/CDocs single class/models/workflow_base.py

    workflow lifecycle state-management review approval
  • class AssignmentBase

    Base class for managing assignment lifecycle in a document review/approval workflow system, tracking status, timestamps, user assignments, and decisions.

    File: /tf/active/vicechatdev/CDocs single class/models/workflow_base.py

    workflow assignment review approval state-management
  • class ApprovalCycle_v2

    Model representing an approval cycle for a document version.

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

    class approvalcycle
  • class ApproverAssignment

    Model class representing an approver assignment within an approval cycle, managing the state and lifecycle of individual approval tasks assigned to users.

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

    approval workflow assignment approver document-management
  • class ReviewerAssignment

    Model class representing a reviewer assignment within a review cycle, managing reviewer information, status, decisions, and lifecycle of review assignments.

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

    review assignment workflow reviewer decision-tracking
  • function migrate_approval_data_v1

    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 single class/db/schema_manager.py

    database-migration neo4j graph-database data-transformation approval-workflow
  • class ApprovalController

    Controller for managing document approval processes.

    File: /tf/active/vicechatdev/CDocs single class/controllers/approval_controller.py

    class approvalcontroller
  • function complete_approval_v2

    Completes an approval cycle by recording a decision (approve/reject) and optional comments, then returns the operation status.

    File: /tf/active/vicechatdev/CDocs single class/controllers/approval_controller.py

    approval workflow document-management controller decision
  • class WorkflowControllerBase

    Abstract base class that defines the interface for workflow controllers managing document review and approval processes.

    File: /tf/active/vicechatdev/CDocs single class/controllers/workflow_controller_base.py

    workflow abstract-base-class document-management review approval
  • class ReviewController

    Controller for managing document review processes.

    File: /tf/active/vicechatdev/CDocs single class/controllers/review_controller.py

    class reviewcontroller
  • function complete_review_v1

    Completes a document review cycle by recording a decision and optional comments, then returns the operation status.

    File: /tf/active/vicechatdev/CDocs single class/controllers/review_controller.py

    document-management review-workflow approval-process controller-action audit-logging
  • class DocumentDetail_v3

    Document detail view component

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

    class documentdetail
  • class WorkflowPanelBase

    Base class for workflow panels (review and approval) that provides common functionality and UI components.

    File: /tf/active/vicechatdev/CDocs single class/ui/workflow_panel_base.py

    class workflowpanelbase
  • class ApprovalPanel

    Approval management interface component inheriting from WorkflowPanelBase

    File: /tf/active/vicechatdev/CDocs single class/ui/approval_panel.py

    class approvalpanel
  • class ReviewPanel

    ReviewPanel is a UI component class for managing document review workflows, providing interfaces for viewing review details, submitting review decisions, and managing review cycles.

    File: /tf/active/vicechatdev/CDocs single class/ui/review_panel.py

    ui-component review-management workflow panel document-management
  • function demo_hybrid_response

    Demonstrates end-to-end hybrid response processing by converting an LLM response containing text and graphics placeholders into a formatted PDF document.

    File: /tf/active/vicechatdev/e-ink-llm/demo_hybrid_mode.py

    demo hybrid-response pdf-generation graphics-processing async

Search Examples