🔍 Code Extractor

Search Components

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

Search Results for "discovery"

Found 33 matching component(s)

  • function access_main_site_library

    Authenticates with Microsoft Graph API and attempts to locate and access the main SharePoint site library using multiple discovery approaches, displaying detailed information about sites, drives, and folder structures.

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

    sharepoint microsoft-graph oauth2 authentication diagnostic
  • function check_all_libraries

    Discovers and lists all document libraries in a SharePoint site using Microsoft Graph API, displaying their metadata and contents.

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

    sharepoint microsoft-graph document-libraries discovery audit
  • function explore_site_structure

    Explores and displays the complete structure of a SharePoint site using Microsoft Graph API, including drives, document libraries, lists, and alternative API endpoints.

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

    sharepoint microsoft-graph site-exploration diagnostic api-discovery
  • function explore_all_drives

    Retrieves and displays all document drives from a SharePoint site using Microsoft Graph API, then explores the root folder of each drive.

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

    sharepoint microsoft-graph api drives document-libraries
  • function explore_document_libraries

    Retrieves and displays all document libraries from a SharePoint site using Microsoft Graph API, then explores items within each library.

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

    sharepoint microsoft-graph document-libraries api-integration data-exploration
  • function explore_site_lists

    Retrieves and displays all SharePoint lists from a specified site using Microsoft Graph API, printing their display names, IDs, template types, and web URLs.

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

    sharepoint microsoft-graph api lists discovery
  • function explore_alternative_endpoints

    Tests multiple Microsoft Graph API endpoints to locate missing folders in a SharePoint drive by trying different URL patterns and searching for expected folders.

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

    sharepoint microsoft-graph-api diagnostic debugging api-testing
  • function search_and_locate

    Searches for specific numbered folders (01-08) in a SharePoint site and traces their locations, contents, and file distributions by type.

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

    sharepoint search diagnostic folder-discovery microsoft-graph
  • function test_graph_sites_api

    Tests Microsoft Graph API access to SharePoint sites by attempting to list available sites and locate a specific target site (vicebio.com), then tests drive access if found.

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

    microsoft-graph sharepoint api-testing authentication oauth2
  • class SharePointClient

    A SharePoint client class that provides methods for connecting to SharePoint sites, retrieving documents recursively, downloading file content, and managing document metadata using app-only authentication.

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

    sharepoint document-management file-sync azure-ad authentication
  • class SharePointGraphClient

    SharePoint client using Microsoft Graph API. This bypasses SharePoint REST API app-only token issues.

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

    class sharepointgraphclient
  • function api_get_models

    Flask API endpoint that returns a list of available LLM models and the default model configuration.

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

    api flask rest-api llm configuration
  • function get_available_models

    Flask API endpoint that returns a JSON response containing the list of available LLM models and the default model configured in the application.

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

    api endpoint flask llm models
  • function main_v5

    Main entry point function for the Contract Validity Analyzer application that orchestrates configuration loading, logging setup, FileCloud connection, and contract analysis execution.

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

    entry-point main-function cli-application contract-analysis filecloud
  • function api_templates

    Flask API endpoint that retrieves and returns a list of available instruction templates from the chat engine.

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

    api flask rest-api templates chat-engine
  • 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
  • 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 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_all_model_classes

    Retrieves a copy of the internal model registry containing all registered model classes mapped by their names.

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

    registry model-discovery introspection metadata BaseModel
  • function get_relationship_types

    Retrieves a dictionary of relationship type constants from the RelTypes class, filtering out private attributes that start with underscore.

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

    introspection reflection constants relationship-types graph-database
  • class DatabaseInfo

    A dataclass that encapsulates complete database schema information including tables, columns, relationships, and metadata for a specific database instance.

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

    database schema metadata dataclass serialization
  • class DynamicSchemaDiscovery

    Discovers database schema from live database connection

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

    class dynamicschemadiscovery
  • function get_database_schema

    Flask route handler that retrieves and returns comprehensive database schema information, including tables, columns, relationships, and statistics.

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

    flask api-endpoint database schema metadata
  • 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
  • function add_manual_relationship

    Flask route handler that adds a manually specified database relationship to the schema and clears the schema cache to force reload with the new relationship.

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

    flask api-endpoint database-schema relationship-management manual-configuration
  • function get_database_schema_viewer

    Flask route handler that retrieves and formats detailed database schema information from a discovered schema stored in the Flask app object, returning it as JSON for visualization purposes.

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

    flask api-endpoint database-schema metadata visualization
  • function refresh_database_schema

    Flask route endpoint that forces a refresh of the database schema by invoking the schema discovery service with LLM-generated descriptions.

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

    flask api-endpoint database schema-discovery llm
  • 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 ManualRelationshipManager

    A class that manages manually defined database relationships with persistent JSON storage, allowing users to add, retrieve, update, and remove relationship definitions between database tables.

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

    database relationships persistence json-storage data-management
  • 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 check_port

    Checks if a specific port on a given host is open and accepting TCP connections.

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

    network port-scanning connectivity tcp socket
  • function get_nested_dmaps

    Recursively traverses a DynamicMap object to find and collect all nested DynamicMap instances that serve as inputs to the callback function.

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

    holoviews DynamicMap recursion graph-traversal dependency-discovery

Search Examples