ontocast.api.process_request¶
Shared /process and /process_unit request body parsing.
ParsedProcessRequest
dataclass
¶
Fields shared by /process and /process_unit after reading the body.
Source code in ontocast/api/process_request.py
build_agent_state_from_parsed(parsed, *, server_config, resolved_tenant, resolved_project, max_chunks)
¶
Construct AgentState after tenancy resolution and enum parsing.
Source code in ontocast/api/process_request.py
load_parsed_process_request(request, server_config, *, log_label='process')
async
¶
Read request parameters from query string, JSON body or multipart form.
All three transports are read through :data:_PARAM_SPECS, in precedence
order (query, then body/form), so every parameter is honoured on every
transport. The body branches differ only in how raw values are obtained --
a decoded JSON object, or the form's multi-items -- never in which
parameters they support.
Source code in ontocast/api/process_request.py
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 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 | |