OSSS.ai.agents.http_get.models¶
OSSS.ai.agents.http_get.models
¶
HttpGetResult
¶
Bases: BaseModel
Result of an HTTP GET request.
Attributes:
| Name | Type | Description |
|---|---|---|
url |
str
|
The URL that was called. |
status_code |
int
|
HTTP response status. |
ok |
bool
|
True if status_code is 2xx. |
body_json |
Optional[Dict[str, Any]]
|
Parsed JSON body (if any). Accepts the external key "json" for backwards compatibility. |
text |
Optional[str]
|
Raw response text. |
elapsed_ms |
int
|
Request duration in milliseconds. |