opik 1.9.4 → 1.9.6

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.
package/dist/index.d.cts CHANGED
@@ -668,7 +668,7 @@ interface ProviderApiKeyWrite {
668
668
  provider: ProviderApiKeyWriteProvider;
669
669
  apiKey?: string;
670
670
  name?: string;
671
- /** Provider name - to uniquely identify custom providers (e.g., 'ollama', 'vllm'). Should not be set for standard providers (OpenAI, Anthropic, etc.). */
671
+ /** Provider name - required for custom LLM providers to uniquely identify them (e.g., 'ollama', 'vllm'). Must not be blank for custom providers. Should not be set for standard providers (OpenAI, Anthropic, etc.). This requirement is conditional and validation is enforced programmatically. */
672
672
  providerName?: string;
673
673
  headers?: Record<string, string>;
674
674
  configuration?: Record<string, string>;
@@ -3866,6 +3866,7 @@ interface PromptVersionLinkPublic {
3866
3866
  id: string;
3867
3867
  commit?: string;
3868
3868
  promptId?: string;
3869
+ promptName?: string;
3869
3870
  }
3870
3871
 
3871
3872
  /**
@@ -4205,7 +4206,7 @@ interface ProviderApiKeyPublic {
4205
4206
  provider: ProviderApiKeyPublicProvider;
4206
4207
  apiKey?: string;
4207
4208
  name?: string;
4208
- /** Provider name - to uniquely identify custom providers (e.g., 'ollama', 'vllm'). Should not be set for standard providers (OpenAI, Anthropic, etc.). */
4209
+ /** Provider name - required for custom LLM providers to uniquely identify them (e.g., 'ollama', 'vllm'). Must not be blank for custom providers. Should not be set for standard providers (OpenAI, Anthropic, etc.). This requirement is conditional and validation is enforced programmatically. */
4209
4210
  providerName?: string;
4210
4211
  headers?: Record<string, string>;
4211
4212
  configuration?: Record<string, string>;
package/dist/index.d.ts CHANGED
@@ -668,7 +668,7 @@ interface ProviderApiKeyWrite {
668
668
  provider: ProviderApiKeyWriteProvider;
669
669
  apiKey?: string;
670
670
  name?: string;
671
- /** Provider name - to uniquely identify custom providers (e.g., 'ollama', 'vllm'). Should not be set for standard providers (OpenAI, Anthropic, etc.). */
671
+ /** Provider name - required for custom LLM providers to uniquely identify them (e.g., 'ollama', 'vllm'). Must not be blank for custom providers. Should not be set for standard providers (OpenAI, Anthropic, etc.). This requirement is conditional and validation is enforced programmatically. */
672
672
  providerName?: string;
673
673
  headers?: Record<string, string>;
674
674
  configuration?: Record<string, string>;
@@ -3866,6 +3866,7 @@ interface PromptVersionLinkPublic {
3866
3866
  id: string;
3867
3867
  commit?: string;
3868
3868
  promptId?: string;
3869
+ promptName?: string;
3869
3870
  }
3870
3871
 
3871
3872
  /**
@@ -4205,7 +4206,7 @@ interface ProviderApiKeyPublic {
4205
4206
  provider: ProviderApiKeyPublicProvider;
4206
4207
  apiKey?: string;
4207
4208
  name?: string;
4208
- /** Provider name - to uniquely identify custom providers (e.g., 'ollama', 'vllm'). Should not be set for standard providers (OpenAI, Anthropic, etc.). */
4209
+ /** Provider name - required for custom LLM providers to uniquely identify them (e.g., 'ollama', 'vllm'). Must not be blank for custom providers. Should not be set for standard providers (OpenAI, Anthropic, etc.). This requirement is conditional and validation is enforced programmatically. */
4209
4210
  providerName?: string;
4210
4211
  headers?: Record<string, string>;
4211
4212
  configuration?: Record<string, string>;