Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2,916 changes: 1,548 additions & 1,368 deletions proto/gen/rill/runtime/v1/api.pb.go

Large diffs are not rendered by default.

296 changes: 296 additions & 0 deletions proto/gen/rill/runtime/v1/api.pb.validate.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

29 changes: 29 additions & 0 deletions proto/gen/rill/runtime/v1/runtime.swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -436,6 +436,9 @@ paths:
description: |-
Optional context for prompts handled by the feedback_agent.
The field is ignored if another agent is selected.
uiContext:
$ref: '#/definitions/v1UIContext'
description: Optional browser UI context. Only actions explicitly marked with data-ai-action are included.
title: Request message for RuntimeService.Complete
tags:
- RuntimeService
Expand Down Expand Up @@ -496,6 +499,9 @@ paths:
description: |-
Optional context for prompts handled by the feedback_agent.
The field is ignored if another agent is selected.
uiContext:
$ref: '#/definitions/v1UIContext'
description: Optional browser UI context. Only actions explicitly marked with data-ai-action are included.
title: Request message for RuntimeService.CompleteStreaming
tags:
- RuntimeService
Expand Down Expand Up @@ -8449,6 +8455,29 @@ definitions:
type: object
$ref: '#/definitions/v1Span'
description: Trace contains trace spans captured during request execution. Used both in successful responses and as gRPC error details when trace=true and the request fails.
v1UIAction:
type: object
properties:
id:
type: string
description: Stable identifier from the element's data-ai-action attribute.
label:
type: string
description: Human-readable accessible label for the action.
description: A non-destructive UI action explicitly exposed to the AI by the browser.
v1UIContext:
type: object
properties:
pagePath:
type: string
description: Current browser path. The origin is intentionally omitted.
actions:
type: array
items:
type: object
$ref: '#/definitions/v1UIAction'
description: Visible, enabled, uniquely-addressable actions on the page.
description: Context about safe actions available on the user's current page.
v1UnpackEmptyResponse:
type: object
title: Response message for RuntimeService.UnpackEmpty
Expand Down
Loading
Loading