🔍 Code Extractor

Search Components

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

Search Results for "production"

Found 29 matching component(s)

  • function eml_to_pdf

    Converts an .eml email file to PDF format, including the email body and all attachments merged into a single PDF document.

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

    email-processing pdf-conversion eml-parser document-conversion attachment-handling
  • function main_v20

    Entry point function that initializes and serves the CDocs Panel web application with configurable port and debug mode options.

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

    entry-point web-application panel server cli
  • function index_all_documents

    Flask route handler that initiates background indexing of all documents in the system, creating a task ID for tracking progress and returning immediately while indexing continues asynchronously.

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

    flask api-endpoint background-task document-indexing async-processing
  • function main_v11

    Main test runner function that validates GPT-5 readiness by running comprehensive tests against multiple OpenAI models (GPT-5 and GPT-4o) and provides production readiness recommendations.

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

    testing validation openai gpt-5 model-comparison
  • function test_with_real_documents

    Tests a contract analyzer system by processing real documents from FileCloud, extracting contract information, and generating analysis reports with performance metrics.

    File: /tf/active/vicechatdev/contract_validity_analyzer/test_real_documents.py

    testing integration-test contract-analysis document-processing filecloud
  • function log_performance

    A context manager decorator that logs the performance metrics of an operation by wrapping it with a PerformanceLogger instance.

    File: /tf/active/vicechatdev/contract_validity_analyzer/utils/logging_utils.py

    performance logging context-manager monitoring profiling
  • function get_file_version

    Generates a version string for static files to enable cache busting, using current time in debug mode or file modification time in production.

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

    cache-busting static-files flask web-development versioning
  • function get_cache_buster

    Returns a cache-busting string that varies based on the application mode: current timestamp in debug mode or a static version string in production mode.

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

    cache-busting web-development static-assets versioning flask
  • function add_cache_headers

    A Flask after_request decorator function that adds HTTP cache control headers to responses based on the application's debug mode, content type, and request endpoint.

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

    flask http-headers caching cache-control middleware
  • class ScriptExecutor

    A sandboxed Python script executor that safely runs user-provided Python code with timeout controls, security restrictions, and isolated execution environments for data analysis tasks.

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

    sandbox script-execution security code-validation data-analysis
  • function add_cache_headers_v1

    Flask after_request decorator function that adds HTTP cache control headers to responses based on debug mode, endpoint type, and request path.

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

    flask http-headers caching cache-control middleware
  • function health

    Flask route handler that provides a health check endpoint returning the application's operational status, chat engine availability, and current timestamp.

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

    health-check monitoring flask api-endpoint diagnostics
  • function login_v1

    Flask route handler that manages user authentication by redirecting authenticated users to the index page, initiating Azure SSO login for production, or creating a development session for local testing.

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

    authentication login azure-sso flask-route session-management
  • class Config

    Configuration class that manages application-wide settings, directory structures, API keys, and operational parameters for a statistical analysis application.

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

    configuration settings flask api-keys directory-management
  • class ProductionConfig

    ProductionConfig is a configuration class that inherits from Config and sets production-specific settings with debugging and testing disabled.

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

    configuration production settings deployment environment
  • class TestingConfig

    TestingConfig is a configuration class that inherits from Config and provides settings specifically for testing environments, including in-memory database and debug flags.

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

    configuration testing test-config sqlite in-memory-database
  • class ControlledDocumentFlaskApp

    Main Flask application class for Controlled Document Management System.

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

    class controlleddocumentflaskapp
  • function create_app

    Factory function that creates and configures a Flask application instance for a controlled document management system.

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

    flask application-factory web-application initialization configuration
  • class DocUser

    Extended User model for document management system. This class wraps and extends the existing User model in the system, adding document-specific roles, departments, and permissions.

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

    class docuser
  • 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 validate_azure_token

    Validates an Azure AD token by decoding the JWT id_token and extracting user information such as email, name, and object ID.

    File: /tf/active/vicechatdev/CDocs/auth/azure_auth.py

    azure authentication jwt token-validation oauth2
  • function manage_user_share_access_v2

    Manages user access permissions to a FileCloud document share, creating shares if needed and setting read-only or write access for specified users.

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

    filecloud document-management access-control permissions sharing
  • function html_to_text

    Converts HTML content to plain text by removing HTML tags, decoding common HTML entities, and normalizing whitespace.

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

    html text-conversion html-parsing text-extraction html-entities
  • function generate_document_from_template

    Generates a document from a template by populating it with provided data, returning the document content as bytes or None if generation fails.

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

    document-generation template-processing docx pdf placeholder
  • function cancel_enhanced_workflow

    Flask route handler that cancels an in-progress enhanced workflow by workflow ID, returning a JSON response indicating success or failure.

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

    flask rest-api workflow-management cancellation http-post
  • class Config_v1

    Configuration class that centralizes all application settings including Flask configuration, directory paths, API keys, LLM model settings, and statistical analysis parameters.

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

    configuration settings flask llm openai
  • class StatisticalAnalysisService

    Main service for statistical analysis orchestration

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

    class statisticalanalysisservice
  • function main_v57

    Interactive setup script that configures a Python virtual environment for an email forwarder application, installs dependencies, and verifies the installation.

    File: /tf/active/vicechatdev/email-forwarder/setup_venv.py

    setup installation virtual-environment venv dependency-management
  • class StatisticalAnalysisService_v1

    Main service for statistical analysis orchestration

    File: /tf/active/vicechatdev/smartstat/services.py

    class statisticalanalysisservice

Search Examples