/** * Topic constants for AI prompt categorization and knowledge matching */ export declare const TOPICS: { readonly ANALYZE_REPOSITORY: "analyze_repository"; readonly DOCKERFILE: "dockerfile"; readonly DOCKERFILE_BASE: "dockerfile_base"; readonly DOCKERFILE_DEPENDENCIES: "dockerfile_dependencies"; readonly DOCKERFILE_BUILD: "dockerfile_build"; readonly DOCKERFILE_RUNTIME: "dockerfile_runtime"; readonly FIX_DOCKERFILE: "fix_dockerfile"; readonly DOCKERFILE_REPAIR: "dockerfile_repair"; readonly DOCKER_OPTIMIZATION: "docker_optimization"; readonly DOCKER_TAGGING: "docker_tagging"; readonly KUBERNETES: "kubernetes"; readonly KUBERNETES_REPAIR: "kubernetes_repair"; readonly GENERATE_HELM_CHARTS: "generate_helm_charts"; readonly GENERATE_ACA_MANIFESTS: "generate_aca_manifests"; readonly CONVERT_ACA_TO_K8S: "convert_aca_to_k8s"; readonly KNOWLEDGE_ENHANCEMENT: "knowledge_enhancement"; readonly GITHUB_WORKFLOW: "github_workflow"; }; /** * Type representing all valid topic values */ export type Topic = (typeof TOPICS)[keyof typeof TOPICS]; //# sourceMappingURL=topics.d.ts.map