mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-14 13:25:12 +00:00
feat(server): refactor provider interface (#11665)
fix AI-4 fix AI-18 better provider/model choose to allow fallback to similar models (e.g., self-hosted) when the provider is not fully configured split functions of different output types
This commit is contained in:
@@ -4,7 +4,6 @@ query getPrompts {
|
||||
model
|
||||
action
|
||||
config {
|
||||
jsonMode
|
||||
frequencyPenalty
|
||||
presencePenalty
|
||||
temperature
|
||||
|
||||
@@ -7,7 +7,6 @@ mutation updatePrompt(
|
||||
model
|
||||
action
|
||||
config {
|
||||
jsonMode
|
||||
frequencyPenalty
|
||||
presencePenalty
|
||||
temperature
|
||||
|
||||
@@ -75,7 +75,6 @@ export const getPromptsQuery = {
|
||||
model
|
||||
action
|
||||
config {
|
||||
jsonMode
|
||||
frequencyPenalty
|
||||
presencePenalty
|
||||
temperature
|
||||
@@ -99,7 +98,6 @@ export const updatePromptMutation = {
|
||||
model
|
||||
action
|
||||
config {
|
||||
jsonMode
|
||||
frequencyPenalty
|
||||
presencePenalty
|
||||
temperature
|
||||
|
||||
@@ -357,7 +357,6 @@ export enum CopilotModels {
|
||||
|
||||
export interface CopilotPromptConfigInput {
|
||||
frequencyPenalty?: InputMaybe<Scalars['Float']['input']>;
|
||||
jsonMode?: InputMaybe<Scalars['Boolean']['input']>;
|
||||
presencePenalty?: InputMaybe<Scalars['Float']['input']>;
|
||||
temperature?: InputMaybe<Scalars['Float']['input']>;
|
||||
topP?: InputMaybe<Scalars['Float']['input']>;
|
||||
@@ -366,7 +365,6 @@ export interface CopilotPromptConfigInput {
|
||||
export interface CopilotPromptConfigType {
|
||||
__typename?: 'CopilotPromptConfigType';
|
||||
frequencyPenalty: Maybe<Scalars['Float']['output']>;
|
||||
jsonMode: Maybe<Scalars['Boolean']['output']>;
|
||||
presencePenalty: Maybe<Scalars['Float']['output']>;
|
||||
temperature: Maybe<Scalars['Float']['output']>;
|
||||
topP: Maybe<Scalars['Float']['output']>;
|
||||
@@ -405,6 +403,12 @@ export interface CopilotPromptType {
|
||||
name: Scalars['String']['output'];
|
||||
}
|
||||
|
||||
export interface CopilotProviderNotSupportedDataType {
|
||||
__typename?: 'CopilotProviderNotSupportedDataType';
|
||||
kind: Scalars['String']['output'];
|
||||
provider: Scalars['String']['output'];
|
||||
}
|
||||
|
||||
export interface CopilotProviderSideErrorDataType {
|
||||
__typename?: 'CopilotProviderSideErrorDataType';
|
||||
kind: Scalars['String']['output'];
|
||||
@@ -650,6 +654,7 @@ export type ErrorDataUnion =
|
||||
| CopilotInvalidContextDataType
|
||||
| CopilotMessageNotFoundDataType
|
||||
| CopilotPromptNotFoundDataType
|
||||
| CopilotProviderNotSupportedDataType
|
||||
| CopilotProviderSideErrorDataType
|
||||
| DocActionDeniedDataType
|
||||
| DocHistoryNotFoundDataType
|
||||
@@ -723,6 +728,7 @@ export enum ErrorNames {
|
||||
COPILOT_MESSAGE_NOT_FOUND = 'COPILOT_MESSAGE_NOT_FOUND',
|
||||
COPILOT_PROMPT_INVALID = 'COPILOT_PROMPT_INVALID',
|
||||
COPILOT_PROMPT_NOT_FOUND = 'COPILOT_PROMPT_NOT_FOUND',
|
||||
COPILOT_PROVIDER_NOT_SUPPORTED = 'COPILOT_PROVIDER_NOT_SUPPORTED',
|
||||
COPILOT_PROVIDER_SIDE_ERROR = 'COPILOT_PROVIDER_SIDE_ERROR',
|
||||
COPILOT_QUOTA_EXCEEDED = 'COPILOT_QUOTA_EXCEEDED',
|
||||
COPILOT_SESSION_DELETED = 'COPILOT_SESSION_DELETED',
|
||||
@@ -2708,7 +2714,6 @@ export type GetPromptsQuery = {
|
||||
action: string | null;
|
||||
config: {
|
||||
__typename?: 'CopilotPromptConfigType';
|
||||
jsonMode: boolean | null;
|
||||
frequencyPenalty: number | null;
|
||||
presencePenalty: number | null;
|
||||
temperature: number | null;
|
||||
@@ -2737,7 +2742,6 @@ export type UpdatePromptMutation = {
|
||||
action: string | null;
|
||||
config: {
|
||||
__typename?: 'CopilotPromptConfigType';
|
||||
jsonMode: boolean | null;
|
||||
frequencyPenalty: number | null;
|
||||
presencePenalty: number | null;
|
||||
temperature: number | null;
|
||||
|
||||
Reference in New Issue
Block a user