diff --git a/src/modules/llms/transports/server/azure.router.ts b/src/modules/llms/transports/server/azure.router.ts index af2e12646..fef692080 100644 --- a/src/modules/llms/transports/server/azure.router.ts +++ b/src/modules/llms/transports/server/azure.router.ts @@ -70,7 +70,7 @@ export const llmAzureRouter = createTRPCRouter({ const { id, label, ...rest } = openAIModelToModelDescription(model.model, model.created_at, model.updated_at); return { id: model.id, - label: `${model.id} (${label})`, + label: `${label} (${model.id})`, ...rest, }; }); diff --git a/src/modules/llms/vendors/azure/azure.vendor.ts b/src/modules/llms/vendors/azure/azure.vendor.ts index ba068f57a..823345e1a 100644 --- a/src/modules/llms/vendors/azure/azure.vendor.ts +++ b/src/modules/llms/vendors/azure/azure.vendor.ts @@ -31,7 +31,7 @@ export interface SourceSetupAzure { * "/openai/deployments?api-version=2023-03-15-preview" path on the endpoint. See: * https://github.com/openai/openai-python/issues/447#issuecomment-1730976835 * - * 2. Still looking for a solution - in the meantime the way to go seems to be to manyally get the full URL + * 2. Still looking for a solution - in the meantime the way to go seems to be to manually get the full URL * of every "Deployment" (Model) and hit the URL directly. However the user will need to fill in the full * model sheet, as details are not available just from the URL. * @@ -42,7 +42,7 @@ export const ModelVendorAzure: IModelVendor name: 'Azure', rank: 14, location: 'cloud', - instanceLimit: 2, + instanceLimit: 0, // components Icon: AzureIcon,