@artemiskit/cli 0.2.0 → 0.2.3

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.
@@ -270,6 +270,12 @@ function buildAzureOpenAIConfig(options: ProviderBuildOptions): AdapterConfigRes
270
270
  { value: process.env.AZURE_OPENAI_EMBEDDING_DEPLOYMENT, source: 'env' }
271
271
  );
272
272
 
273
+ // Model family for parameter detection (e.g., 'gpt-5-mini' when deployment is '5-mini')
274
+ const resolvedModelFamily = resolveValueWithSource<string>(
275
+ { value: scenarioConfig?.modelFamily, source: 'scenario' },
276
+ { value: fileProviderConfig?.modelFamily, source: 'config' }
277
+ );
278
+
273
279
  const resolvedTimeout = resolveValueWithSource<number>(
274
280
  { value: scenarioConfig?.timeout, source: 'scenario' },
275
281
  { value: fileProviderConfig?.timeout, source: 'config' }
@@ -300,6 +306,7 @@ function buildAzureOpenAIConfig(options: ProviderBuildOptions): AdapterConfigRes
300
306
  timeout: resolvedTimeout.value,
301
307
  maxRetries: resolvedMaxRetries.value,
302
308
  embeddingDeploymentName: resolvedEmbeddingDeploymentName.value,
309
+ modelFamily: resolvedModelFamily.value,
303
310
  },
304
311
  resolvedConfig: {
305
312
  provider,