@llmops/app 0.2.7-beta.2 → 0.2.8-beta.1

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.cjs CHANGED
@@ -15606,7 +15606,7 @@ const createRequestGuardMiddleware = () => {
15606
15606
  */
15607
15607
  const MODELS_DEV_TO_PORTKEY_PROVIDER_MAP = {
15608
15608
  reka: "reka-ai",
15609
- "azure-cognitive-services": "azure-openai",
15609
+ "azure-cognitive-services": "azure-ai",
15610
15610
  azure: "azure-openai"
15611
15611
  };
15612
15612
  /**
@@ -15728,6 +15728,9 @@ const createGatewayAdapterMiddleware = () => {
15728
15728
  if (configData?.azureEntraClientId) portkeyConfig.azure_entra_client_id = configData.azureEntraClientId;
15729
15729
  if (configData?.azureEntraClientSecret) portkeyConfig.azure_entra_client_secret = configData.azureEntraClientSecret;
15730
15730
  if (configData?.azureEntraTenantId) portkeyConfig.azure_entra_tenant_id = configData.azureEntraTenantId;
15731
+ if (configData?.azureFoundryUrl) portkeyConfig.azure_foundry_url = configData.azureFoundryUrl;
15732
+ if (configData?.azureDeploymentName) portkeyConfig.azure_deployment_id = configData.azureDeploymentName;
15733
+ if (configData?.azureApiVersion) portkeyConfig.azure_api_version = configData.azureApiVersion;
15731
15734
  if (configData?.vertexProjectId) portkeyConfig.vertex_project_id = configData.vertexProjectId;
15732
15735
  if (configData?.vertexRegion) portkeyConfig.vertex_region = configData.vertexRegion;
15733
15736
  if (configData?.vertexServiceAccountJson) try {
package/dist/index.mjs CHANGED
@@ -15580,7 +15580,7 @@ const createRequestGuardMiddleware = () => {
15580
15580
  */
15581
15581
  const MODELS_DEV_TO_PORTKEY_PROVIDER_MAP = {
15582
15582
  reka: "reka-ai",
15583
- "azure-cognitive-services": "azure-openai",
15583
+ "azure-cognitive-services": "azure-ai",
15584
15584
  azure: "azure-openai"
15585
15585
  };
15586
15586
  /**
@@ -15702,6 +15702,9 @@ const createGatewayAdapterMiddleware = () => {
15702
15702
  if (configData?.azureEntraClientId) portkeyConfig.azure_entra_client_id = configData.azureEntraClientId;
15703
15703
  if (configData?.azureEntraClientSecret) portkeyConfig.azure_entra_client_secret = configData.azureEntraClientSecret;
15704
15704
  if (configData?.azureEntraTenantId) portkeyConfig.azure_entra_tenant_id = configData.azureEntraTenantId;
15705
+ if (configData?.azureFoundryUrl) portkeyConfig.azure_foundry_url = configData.azureFoundryUrl;
15706
+ if (configData?.azureDeploymentName) portkeyConfig.azure_deployment_id = configData.azureDeploymentName;
15707
+ if (configData?.azureApiVersion) portkeyConfig.azure_api_version = configData.azureApiVersion;
15705
15708
  if (configData?.vertexProjectId) portkeyConfig.vertex_project_id = configData.vertexProjectId;
15706
15709
  if (configData?.vertexRegion) portkeyConfig.vertex_region = configData.vertexRegion;
15707
15710
  if (configData?.vertexServiceAccountJson) try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@llmops/app",
3
- "version": "0.2.7-beta.2",
3
+ "version": "0.2.8-beta.1",
4
4
  "description": "LLMOps application with server and client",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
@@ -66,8 +66,8 @@
66
66
  "react-aria-components": "^1.13.0",
67
67
  "react-hook-form": "^7.68.0",
68
68
  "recharts": "^3.6.0",
69
- "@llmops/core": "^0.2.7-beta.2",
70
- "@llmops/gateway": "^0.2.7-beta.2"
69
+ "@llmops/gateway": "^0.2.8-beta.1",
70
+ "@llmops/core": "^0.2.8-beta.1"
71
71
  },
72
72
  "peerDependencies": {
73
73
  "react": "^19.2.1",