-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmanifold_types.py
195 lines (132 loc) · 4.16 KB
/
manifold_types.py
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
from typing import Any, Literal, NotRequired, Optional, TypedDict
from uuid import UUID
from datetime import datetime
from open_webui.models.files import FileModelResponse
# ---------- __event_emitter__ ----------
class FileInfo(TypedDict):
type: str # could be "file", "image"
file: FileModelResponse
id: str
url: str
name: str
collection_name: Optional[str]
status: str
size: int
error: str
itemId: str
class SourceSource(TypedDict):
docs: NotRequired[list[dict]]
name: str # the search query used
type: NotRequired[Literal["web_search", "file"]]
file: NotRequired[FileInfo]
urls: NotRequired[list[str]]
class SourceMetadata(TypedDict):
source: str # url
title: NotRequired[str] # website title
description: NotRequired[str] # website description
language: NotRequired[str] # website language
# These keys are not used by Open WebUI front-end, they for my plugin only.
original_url: NotRequired[str] # original, unresolved url
supports: NotRequired[list[dict]]
class Source(TypedDict):
source: SourceSource
document: list[str]
metadata: list[SourceMetadata]
distances: NotRequired[list[float]]
class ErrorData(TypedDict):
detail: str
class ChatCompletionEventData(TypedDict):
content: NotRequired[str]
done: NotRequired[bool]
error: NotRequired[ErrorData]
sources: NotRequired[list[Source]]
usage: NotRequired[dict[str, Any]]
class ChatCompletionEvent(TypedDict):
type: Literal["chat:completion"]
data: ChatCompletionEventData
class StatusEventData(TypedDict):
action: NotRequired[Literal["web_search", "knowledge_search"]]
description: str
done: NotRequired[bool]
query: NotRequired[str] # knowledge_search
urls: NotRequired[list[str]] # web_search
hidden: NotRequired[bool]
class StatusEvent(TypedDict):
type: Literal["status"]
data: StatusEventData
Event = ChatCompletionEvent | StatusEvent
# ---------- body ----------
class TextContent(TypedDict):
type: Literal["text"]
text: str
class ImageURL(TypedDict):
url: str # data:image/png;base64,iVBORw0KGgoAAAA....
class ImageContent(TypedDict):
type: Literal["image_url"]
image_url: ImageURL
Content = TextContent | ImageContent
class UserMessage(TypedDict):
role: Literal["user"]
content: str | list[Content]
class AssistantMessage(TypedDict):
role: Literal["assistant"]
content: str
class SystemMessage(TypedDict):
role: Literal["system"]
content: str
Message = UserMessage | AssistantMessage | SystemMessage
class Body(TypedDict):
stream: bool
model: str
messages: list[Message]
# ---------- Chats.ChatModel ----------
class MessageModel(TypedDict):
id: UUID
parentId: Optional[UUID]
childrenIds: list[UUID]
role: Literal["user", "assistant"]
content: str
timestamp: datetime
class UserMessageModel(MessageModel):
files: NotRequired[list[FileInfo]]
models: list[str]
class AssistantMessageModel(MessageModel):
model: str
modelName: str
modelIdx: int
userContext: Any
sources: NotRequired[list[Source]]
done: NotRequired[bool]
class ChatParams(TypedDict):
system: NotRequired[str]
temperature: NotRequired[float]
class ChatChatModel(TypedDict):
"""Type for the `ChatModel.chat` variable"""
id: str # Or UUID if appropriate
title: str
models: list[str]
params: ChatParams
history: dict[str, Any]
messages: list[MessageModel]
tags: list[str]
timestamp: datetime
files: list[FileInfo] # Or a more specific type if you have file objects
# ---------- __user__ ----------
class UserData(TypedDict):
"""
This is how `__user__` `dict` looks like.
"""
id: str
email: str
name: str
role: Literal["admin", "user", "pending"]
valves: NotRequired[Any] # object of type UserValves
# ---------- pipes return dict ----------
class ModelData(TypedDict):
"""
This is how the `pipes` function expects the `dict` to look like.
"""
id: str
name: str
# My own variables, these do not have any effect on Open WebUI's behaviour.
description: NotRequired[Optional[str]]