hankweave 0.7.3 → 0.7.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -13,16 +13,4 @@ export interface ModelValidationResult {
13
13
  /** Type of match that was found (if any) */
14
14
  matchType?: "exact" | "exact-with-inferred-provider" | "fuzzy";
15
15
  }
16
- /**
17
- * Validates a model string against the LLM registry and CodonRunner capabilities.
18
- *
19
- * Validation steps:
20
- * 1. Resolve the model using LLMProviderRegistry.resolveModel()
21
- * 2. Check if the resolved model can be run by CodonRunner.canRun()
22
- *
23
- * @param model - The model string to validate (e.g., "sonnet", "gemini-2.0-flash-exp")
24
- * @param registry - The LLMProviderRegistry instance to use for resolution
25
- * @param providerId - Optional provider ID to narrow the search (e.g., "anthropic", "google")
26
- * @returns ModelValidationResult with validation outcome
27
- */
28
16
  export declare function validateModel(model: string, registry: LlmProviderRegistry, providerId?: string): ModelValidationResult;