Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 | import type { ErrorResponseBody } from '@shared/types/api/response/body';
import type { ChatCompletionResponseBody } from '@shared/types/api/routes/chat-completions-api';
/**
* Mistral AI finish reason enum
*/
export enum MISTRAL_AI_FINISH_REASON {
STOP = 'stop',
LENGTH = 'length',
MODEL_LENGTH = 'model_length',
TOOL_CALLS = 'tool_calls',
ERROR = 'error',
}
/**
* Mistral AI chat completion response interface
*/
export interface MistralAIChatCompleteResponse
extends ChatCompletionResponseBody {
system_fingerprint?: string;
prompt_eval_count?: number;
eval_count?: number;
}
/**
* Mistral AI error response interface
*/
export interface MistralAIErrorResponse extends ErrorResponseBody {
error: {
message: string;
type?: string;
code?: string;
};
}
/**
* Mistral AI stream chunk interface for streaming responses
*/
export interface MistralAIStreamChunk {
id: string;
object: string;
created: number;
model: string;
system_fingerprint?: string;
choices: {
delta: {
role?: string;
content?: string;
tool_calls?: object[];
};
index: number;
finish_reason: string | null;
}[];
}
/**
* Mistral AI embedding response interface
*/
export interface MistralAIEmbedResponse {
object: 'list';
data: Array<{
object: 'embedding';
embedding: number[];
index: number;
}>;
model: string;
usage: {
prompt_tokens: number;
total_tokens: number;
};
}
|