Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
bc77171
Add agent session store protocols
theomonnom Jul 27, 2026
c4cdd6a
generated protobuf
github-actions[bot] Jul 27, 2026
1aeca88
Drop rpc comments that only restate the method name
theomonnom Jul 27, 2026
bd60d2b
Add AgentGrant.SessionAdmin
theomonnom Jul 28, 2026
376b8e6
Column-oriented session results, and drop tip from ListSessions
theomonnom Jul 28, 2026
6010a1e
generated protobuf
github-actions[bot] Jul 28, 2026
2b4b7a6
Rename AgentGrant.SessionAdmin to SessionStoreAdmin
theomonnom Jul 28, 2026
bb404b7
Trim comments on the session store protos
theomonnom Jul 28, 2026
e2795ae
generated protobuf
github-actions[bot] Jul 28, 2026
17bed51
agent session store: document unset ttl_seconds as no expiry
Jul 29, 2026
cd0d79b
agentdb: own namespace, and the unit is a database
Aug 4, 2026
218e366
generated protobuf
github-actions[bot] Aug 4, 2026
425485e
agentdb: nest the messages instead of a separate package
Aug 5, 2026
9fd858b
generated protobuf
github-actions[bot] Aug 5, 2026
9fd8348
agentdb: trim comments, drop the Cypher enum value
Aug 5, 2026
dfa0dac
Merge remote-tracking branch 'origin/main' into theo/agent-session-pr…
Aug 5, 2026
d418aad
agentdb: group the data plane under AgentDB.Wire
Aug 5, 2026
219d0f8
generated protobuf
github-actions[bot] Aug 5, 2026
f88d8e1
agentdb: field names follow the repo convention
Aug 5, 2026
81313f4
agentdb: drop user_attributes
Aug 5, 2026
d5c573f
generated protobuf
github-actions[bot] Aug 5, 2026
0a1275d
agentdb: consistent RPC and enum naming
Aug 5, 2026
d3e24c6
agentdb: one Database message, following Room
Aug 5, 2026
ae8092f
generated protobuf
github-actions[bot] Aug 5, 2026
2ea22ee
agentdb: the entity message is AgentDatabase
Aug 5, 2026
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
3 changes: 3 additions & 0 deletions auth/grants.go
Original file line number Diff line number Diff line change
Expand Up @@ -581,6 +581,8 @@ type AgentGrant struct {
Admin bool `json:"admin,omitempty"`
// SimulationAdmin grants access to manage simulations and scenarios for evaluating agents.
SimulationAdmin bool `json:"simulationAdmin,omitempty"`
// DatabaseAdmin grants access to a project's agent databases (AgentDB).
DatabaseAdmin bool `json:"databaseAdmin,omitempty"`
}

func (s *AgentGrant) Clone() *AgentGrant {
Expand All @@ -600,6 +602,7 @@ func (s *AgentGrant) MarshalLogObject(e zapcore.ObjectEncoder) error {

e.AddBool("Admin", s.Admin)
e.AddBool("SimulationAdmin", s.SimulationAdmin)
e.AddBool("DatabaseAdmin", s.DatabaseAdmin)
return nil
}

Expand Down
4 changes: 2 additions & 2 deletions livekit/livekit_agent_simulation.twirp.go

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

Loading
Loading