mirror of
https://github.com/langgenius/dify.git
synced 2026-03-13 02:57:41 +08:00
- Add changePreferredProviderType contract in model-providers.ts - Register in consoleRouterContract - Replace raw async changeModelProviderPriority with useMutation - Use Toast.notify (static API) instead of useToastContext hook - Pass isPending as isChangingPriority to disable buttons during switch - Add disabled prop to UsagePrioritySection - Fix pre-existing test assertions for api-unavailable variant - Update all specs with isChangingPriority prop and oRPC mock pattern
34 lines
875 B
TypeScript
34 lines
875 B
TypeScript
import type { ModelItem, PreferredProviderTypeEnum } from '@/app/components/header/account-setting/model-provider-page/declarations'
|
|
import type { CommonResponse } from '@/models/common'
|
|
import { type } from '@orpc/contract'
|
|
import { base } from '../base'
|
|
|
|
export const modelProvidersModelsContract = base
|
|
.route({
|
|
path: '/workspaces/current/model-providers/{provider}/models',
|
|
method: 'GET',
|
|
})
|
|
.input(type<{
|
|
params: {
|
|
provider: string
|
|
}
|
|
}>())
|
|
.output(type<{
|
|
data: ModelItem[]
|
|
}>())
|
|
|
|
export const changePreferredProviderTypeContract = base
|
|
.route({
|
|
path: '/workspaces/current/model-providers/{provider}/preferred-provider-type',
|
|
method: 'POST',
|
|
})
|
|
.input(type<{
|
|
params: {
|
|
provider: string
|
|
}
|
|
body: {
|
|
preferred_provider_type: PreferredProviderTypeEnum
|
|
}
|
|
}>())
|
|
.output(type<CommonResponse>())
|