mirror of
https://github.com/openai/codex.git
synced 2026-04-26 07:35:29 +00:00
Wire Atlas browser bridge into app-server
Add the AgentLib js_repl bridge, persist browser replay items in thread history, and surface remote browser artifacts through turn/start. Co-authored-by: Codex <noreply@openai.com>
This commit is contained in:
@@ -1,6 +1,39 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"definitions": {
|
||||
"BrowserSessionArtifacts": {
|
||||
"properties": {
|
||||
"replayFrameCount": {
|
||||
"format": "uint32",
|
||||
"minimum": 0.0,
|
||||
"type": [
|
||||
"integer",
|
||||
"null"
|
||||
]
|
||||
},
|
||||
"replayFrameDurationMs": {
|
||||
"format": "uint32",
|
||||
"minimum": 0.0,
|
||||
"type": [
|
||||
"integer",
|
||||
"null"
|
||||
]
|
||||
},
|
||||
"replayGifImageUrl": {
|
||||
"type": [
|
||||
"string",
|
||||
"null"
|
||||
]
|
||||
},
|
||||
"screenshotImageUrl": {
|
||||
"type": [
|
||||
"string",
|
||||
"null"
|
||||
]
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"BrowserSessionState": {
|
||||
"properties": {
|
||||
"selectedTabId": {
|
||||
@@ -44,6 +77,16 @@
|
||||
}
|
||||
},
|
||||
"properties": {
|
||||
"artifacts": {
|
||||
"anyOf": [
|
||||
{
|
||||
"$ref": "#/definitions/BrowserSessionArtifacts"
|
||||
},
|
||||
{
|
||||
"type": "null"
|
||||
}
|
||||
]
|
||||
},
|
||||
"browserSessionId": {
|
||||
"type": "string"
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user