webui: Architecture and UI improvements (#19596)
This commit is contained in:
@@ -1,6 +1,13 @@
|
||||
export { AttachmentType } from './attachment';
|
||||
|
||||
export { ChatMessageStatsView } from './chat';
|
||||
export {
|
||||
ChatMessageStatsView,
|
||||
ReasoningFormat,
|
||||
MessageRole,
|
||||
MessageType,
|
||||
ContentPartType,
|
||||
ErrorDialogType
|
||||
} from './chat';
|
||||
|
||||
export {
|
||||
FileTypeCategory,
|
||||
@@ -21,3 +28,9 @@ export {
|
||||
export { ModelModality } from './model';
|
||||
|
||||
export { ServerRole, ServerModelStatus } from './server';
|
||||
|
||||
export { ParameterSource, SyncableParameterType, SettingsFieldType } from './settings';
|
||||
|
||||
export { KeyboardKey } from './keyboard';
|
||||
|
||||
export { UrlPrefix } from './ui';
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
/**
|
||||
* URL prefixes for protocol detection.
|
||||
*/
|
||||
export enum UrlPrefix {
|
||||
DATA = 'data:',
|
||||
HTTP = 'http://',
|
||||
HTTPS = 'https://',
|
||||
WEBSOCKET = 'ws://',
|
||||
WEBSOCKET_SECURE = 'wss://'
|
||||
}
|
||||
Reference in New Issue
Block a user