docs: add quixzoom-auth-core product to AAMOS

- Product documentation in docs/products/
- Updated MEMORY.md with product info
- quiXzoom Auth Core as AAMOS Identity product
This commit is contained in:
Bernt
2026-07-14 09:58:53 +00:00
parent 58ca4e68db
commit 48ea61cdcc
2730 changed files with 293827 additions and 7213 deletions
+58
View File
@@ -0,0 +1,58 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
'use strict';
const metadataVersions = require('./install-metadata-versions.js');
const metadata = {
// Requirements defines a list of manifest to install for a specific platform/architecture combination.
requirements: {
'win32/x64': [],
'win32/arm64': [],
'linux/x64': ['cuda12'],
'linux/arm64': [],
'darwin/x64': [],
'darwin/arm64': [],
},
// Each manifest defines a list of files to install
manifests: {
'linux/x64:cuda12': {
'./libonnxruntime_providers_cuda.so': {
package: 'nuget:linux/x64:cuda12',
path: 'runtimes/linux-x64/native/libonnxruntime_providers_cuda.so',
},
'./libonnxruntime_providers_shared.so': {
package: 'nuget:linux/x64:cuda12',
path: 'runtimes/linux-x64/native/libonnxruntime_providers_shared.so',
},
'./libonnxruntime_providers_tensorrt.so': {
package: 'nuget:linux/x64:cuda12',
path: 'runtimes/linux-x64/native/libonnxruntime_providers_tensorrt.so',
},
},
},
// Each package defines a list of package metadata. The first available package will be used.
packages: {
'nuget:win32/x64:cuda12': {
name: 'Microsoft.ML.OnnxRuntime.Gpu.Windows',
versions: metadataVersions.nuget,
},
'nuget:linux/x64:cuda12': {
name: 'Microsoft.ML.OnnxRuntime.Gpu.Linux',
versions: metadataVersions.nuget,
},
},
feeds: {
nuget: {
type: 'nuget',
index: 'https://api.nuget.org/v3/index.json',
},
nuget_nightly: {
type: 'nuget',
index: 'https://aiinfra.pkgs.visualstudio.com/PublicPackages/_packaging/ORT-Nightly/nuget/v3/index.json',
},
},
};
module.exports = metadata;