agentv1

package
v1.0.0-alpha.40 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 16, 2026 License: MIT Imports: 9 Imported by: 0

Documentation

Index

Constants

View Source
const (
	AgentRuntime_Chat_FullMethodName                = "/openotters.agent.v1.AgentRuntime/Chat"
	AgentRuntime_ChatStream_FullMethodName          = "/openotters.agent.v1.AgentRuntime/ChatStream"
	AgentRuntime_PromptObject_FullMethodName        = "/openotters.agent.v1.AgentRuntime/PromptObject"
	AgentRuntime_ListSessions_FullMethodName        = "/openotters.agent.v1.AgentRuntime/ListSessions"
	AgentRuntime_DeleteSession_FullMethodName       = "/openotters.agent.v1.AgentRuntime/DeleteSession"
	AgentRuntime_ListSessionMessages_FullMethodName = "/openotters.agent.v1.AgentRuntime/ListSessionMessages"
	AgentRuntime_ListNotes_FullMethodName           = "/openotters.agent.v1.AgentRuntime/ListNotes"
	AgentRuntime_GetNote_FullMethodName             = "/openotters.agent.v1.AgentRuntime/GetNote"
	AgentRuntime_SaveNote_FullMethodName            = "/openotters.agent.v1.AgentRuntime/SaveNote"
	AgentRuntime_DeleteNote_FullMethodName          = "/openotters.agent.v1.AgentRuntime/DeleteNote"
	AgentRuntime_SetNoteInContext_FullMethodName    = "/openotters.agent.v1.AgentRuntime/SetNoteInContext"
	AgentRuntime_Health_FullMethodName              = "/openotters.agent.v1.AgentRuntime/Health"
	AgentRuntime_Ready_FullMethodName               = "/openotters.agent.v1.AgentRuntime/Ready"
)

Variables

View Source
var AgentRuntime_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "openotters.agent.v1.AgentRuntime",
	HandlerType: (*AgentRuntimeServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "Chat",
			Handler:    _AgentRuntime_Chat_Handler,
		},
		{
			MethodName: "PromptObject",
			Handler:    _AgentRuntime_PromptObject_Handler,
		},
		{
			MethodName: "ListSessions",
			Handler:    _AgentRuntime_ListSessions_Handler,
		},
		{
			MethodName: "DeleteSession",
			Handler:    _AgentRuntime_DeleteSession_Handler,
		},
		{
			MethodName: "ListSessionMessages",
			Handler:    _AgentRuntime_ListSessionMessages_Handler,
		},
		{
			MethodName: "ListNotes",
			Handler:    _AgentRuntime_ListNotes_Handler,
		},
		{
			MethodName: "GetNote",
			Handler:    _AgentRuntime_GetNote_Handler,
		},
		{
			MethodName: "SaveNote",
			Handler:    _AgentRuntime_SaveNote_Handler,
		},
		{
			MethodName: "DeleteNote",
			Handler:    _AgentRuntime_DeleteNote_Handler,
		},
		{
			MethodName: "SetNoteInContext",
			Handler:    _AgentRuntime_SetNoteInContext_Handler,
		},
		{
			MethodName: "Health",
			Handler:    _AgentRuntime_Health_Handler,
		},
		{
			MethodName: "Ready",
			Handler:    _AgentRuntime_Ready_Handler,
		},
	},
	Streams: []grpc.StreamDesc{
		{
			StreamName:    "ChatStream",
			Handler:       _AgentRuntime_ChatStream_Handler,
			ServerStreams: true,
		},
	},
	Metadata: "executor/api/v1/agent.proto",
}

AgentRuntime_ServiceDesc is the grpc.ServiceDesc for AgentRuntime service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

View Source
var File_executor_api_v1_agent_proto protoreflect.FileDescriptor

Functions

func RegisterAgentRuntimeServer

func RegisterAgentRuntimeServer(s grpc.ServiceRegistrar, srv AgentRuntimeServer)

Types

type AgentRuntimeClient

type AgentRuntimeClient interface {
	// Chat
	Chat(ctx context.Context, in *ChatRequest, opts ...grpc.CallOption) (*ChatResponse, error)
	ChatStream(ctx context.Context, in *ChatStreamRequest, opts ...grpc.CallOption) (grpc.ServerStreamingClient[ChatStreamEvent], error)
	// Structured output — one-shot, stateless. The runtime hands a
	// user prompt + JSON schema to the underlying LanguageModel via
	// fantasy.GenerateObject; the schema drives whichever native
	// JSON / tool / text mode the provider supports. No session
	// memory, no tool loop.
	PromptObject(ctx context.Context, in *PromptObjectRequest, opts ...grpc.CallOption) (*PromptObjectResponse, error)
	// Sessions
	ListSessions(ctx context.Context, in *ListSessionsRequest, opts ...grpc.CallOption) (*ListSessionsResponse, error)
	DeleteSession(ctx context.Context, in *DeleteSessionRequest, opts ...grpc.CallOption) (*DeleteSessionResponse, error)
	ListSessionMessages(ctx context.Context, in *ListSessionMessagesRequest, opts ...grpc.CallOption) (*ListSessionMessagesResponse, error)
	// Notes — per-agent, cross-session KV store the model uses for
	// durable facts (see runtime/pkg/notes). The daemon proxies these
	// for the operator UI; the model itself writes via the note_*
	// tools registered with fantasy.
	ListNotes(ctx context.Context, in *ListNotesRequest, opts ...grpc.CallOption) (*ListNotesResponse, error)
	GetNote(ctx context.Context, in *GetNoteRequest, opts ...grpc.CallOption) (*GetNoteResponse, error)
	SaveNote(ctx context.Context, in *SaveNoteRequest, opts ...grpc.CallOption) (*SaveNoteResponse, error)
	DeleteNote(ctx context.Context, in *DeleteNoteRequest, opts ...grpc.CallOption) (*DeleteNoteResponse, error)
	SetNoteInContext(ctx context.Context, in *SetNoteInContextRequest, opts ...grpc.CallOption) (*SetNoteInContextResponse, error)
	// Probes
	Health(ctx context.Context, in *HealthRequest, opts ...grpc.CallOption) (*HealthResponse, error)
	Ready(ctx context.Context, in *ReadyRequest, opts ...grpc.CallOption) (*ReadyResponse, error)
}

AgentRuntimeClient is the client API for AgentRuntime service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

type AgentRuntimeServer

type AgentRuntimeServer interface {
	// Chat
	Chat(context.Context, *ChatRequest) (*ChatResponse, error)
	ChatStream(*ChatStreamRequest, grpc.ServerStreamingServer[ChatStreamEvent]) error
	// Structured output — one-shot, stateless. The runtime hands a
	// user prompt + JSON schema to the underlying LanguageModel via
	// fantasy.GenerateObject; the schema drives whichever native
	// JSON / tool / text mode the provider supports. No session
	// memory, no tool loop.
	PromptObject(context.Context, *PromptObjectRequest) (*PromptObjectResponse, error)
	// Sessions
	ListSessions(context.Context, *ListSessionsRequest) (*ListSessionsResponse, error)
	DeleteSession(context.Context, *DeleteSessionRequest) (*DeleteSessionResponse, error)
	ListSessionMessages(context.Context, *ListSessionMessagesRequest) (*ListSessionMessagesResponse, error)
	// Notes — per-agent, cross-session KV store the model uses for
	// durable facts (see runtime/pkg/notes). The daemon proxies these
	// for the operator UI; the model itself writes via the note_*
	// tools registered with fantasy.
	ListNotes(context.Context, *ListNotesRequest) (*ListNotesResponse, error)
	GetNote(context.Context, *GetNoteRequest) (*GetNoteResponse, error)
	SaveNote(context.Context, *SaveNoteRequest) (*SaveNoteResponse, error)
	DeleteNote(context.Context, *DeleteNoteRequest) (*DeleteNoteResponse, error)
	SetNoteInContext(context.Context, *SetNoteInContextRequest) (*SetNoteInContextResponse, error)
	// Probes
	Health(context.Context, *HealthRequest) (*HealthResponse, error)
	Ready(context.Context, *ReadyRequest) (*ReadyResponse, error)
	// contains filtered or unexported methods
}

AgentRuntimeServer is the server API for AgentRuntime service. All implementations must embed UnimplementedAgentRuntimeServer for forward compatibility.

type AgentRuntime_ChatStreamClient

type AgentRuntime_ChatStreamClient = grpc.ServerStreamingClient[ChatStreamEvent]

This type alias is provided for backwards compatibility with existing code that references the prior non-generic stream type by name.

type AgentRuntime_ChatStreamServer

type AgentRuntime_ChatStreamServer = grpc.ServerStreamingServer[ChatStreamEvent]

This type alias is provided for backwards compatibility with existing code that references the prior non-generic stream type by name.

type ChatRequest

type ChatRequest struct {
	SessionId string `protobuf:"bytes,1,opt,name=session_id,json=sessionId,proto3" json:"session_id,omitempty"`
	Prompt    string `protobuf:"bytes,2,opt,name=prompt,proto3" json:"prompt,omitempty"`
	// contains filtered or unexported fields
}

func (*ChatRequest) Descriptor deprecated

func (*ChatRequest) Descriptor() ([]byte, []int)

Deprecated: Use ChatRequest.ProtoReflect.Descriptor instead.

func (*ChatRequest) GetPrompt

func (x *ChatRequest) GetPrompt() string

func (*ChatRequest) GetSessionId

func (x *ChatRequest) GetSessionId() string

func (*ChatRequest) ProtoMessage

func (*ChatRequest) ProtoMessage()

func (*ChatRequest) ProtoReflect

func (x *ChatRequest) ProtoReflect() protoreflect.Message

func (*ChatRequest) Reset

func (x *ChatRequest) Reset()

func (*ChatRequest) String

func (x *ChatRequest) String() string

type ChatResponse

type ChatResponse struct {
	Response string `protobuf:"bytes,1,opt,name=response,proto3" json:"response,omitempty"`
	// contains filtered or unexported fields
}

func (*ChatResponse) Descriptor deprecated

func (*ChatResponse) Descriptor() ([]byte, []int)

Deprecated: Use ChatResponse.ProtoReflect.Descriptor instead.

func (*ChatResponse) GetResponse

func (x *ChatResponse) GetResponse() string

func (*ChatResponse) ProtoMessage

func (*ChatResponse) ProtoMessage()

func (*ChatResponse) ProtoReflect

func (x *ChatResponse) ProtoReflect() protoreflect.Message

func (*ChatResponse) Reset

func (x *ChatResponse) Reset()

func (*ChatResponse) String

func (x *ChatResponse) String() string

type ChatStreamEvent

type ChatStreamEvent struct {
	Type    string `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"`
	Step    int32  `protobuf:"varint,2,opt,name=step,proto3" json:"step,omitempty"`
	Tool    string `protobuf:"bytes,3,opt,name=tool,proto3" json:"tool,omitempty"`
	Content string `protobuf:"bytes,4,opt,name=content,proto3" json:"content,omitempty"`
	// contains filtered or unexported fields
}

func (*ChatStreamEvent) Descriptor deprecated

func (*ChatStreamEvent) Descriptor() ([]byte, []int)

Deprecated: Use ChatStreamEvent.ProtoReflect.Descriptor instead.

func (*ChatStreamEvent) GetContent

func (x *ChatStreamEvent) GetContent() string

func (*ChatStreamEvent) GetStep

func (x *ChatStreamEvent) GetStep() int32

func (*ChatStreamEvent) GetTool

func (x *ChatStreamEvent) GetTool() string

func (*ChatStreamEvent) GetType

func (x *ChatStreamEvent) GetType() string

func (*ChatStreamEvent) ProtoMessage

func (*ChatStreamEvent) ProtoMessage()

func (*ChatStreamEvent) ProtoReflect

func (x *ChatStreamEvent) ProtoReflect() protoreflect.Message

func (*ChatStreamEvent) Reset

func (x *ChatStreamEvent) Reset()

func (*ChatStreamEvent) String

func (x *ChatStreamEvent) String() string

type ChatStreamRequest

type ChatStreamRequest struct {
	SessionId string `protobuf:"bytes,1,opt,name=session_id,json=sessionId,proto3" json:"session_id,omitempty"`
	Prompt    string `protobuf:"bytes,2,opt,name=prompt,proto3" json:"prompt,omitempty"`
	// When true, the runtime appends the produced parts as a new
	// branch onto the most recent assistant turn for session_id
	// instead of inserting a fresh row. Falls back to insert when
	// no prior assistant turn exists.
	Regenerate bool `protobuf:"varint,3,opt,name=regenerate,proto3" json:"regenerate,omitempty"`
	// contains filtered or unexported fields
}

func (*ChatStreamRequest) Descriptor deprecated

func (*ChatStreamRequest) Descriptor() ([]byte, []int)

Deprecated: Use ChatStreamRequest.ProtoReflect.Descriptor instead.

func (*ChatStreamRequest) GetPrompt

func (x *ChatStreamRequest) GetPrompt() string

func (*ChatStreamRequest) GetRegenerate

func (x *ChatStreamRequest) GetRegenerate() bool

func (*ChatStreamRequest) GetSessionId

func (x *ChatStreamRequest) GetSessionId() string

func (*ChatStreamRequest) ProtoMessage

func (*ChatStreamRequest) ProtoMessage()

func (*ChatStreamRequest) ProtoReflect

func (x *ChatStreamRequest) ProtoReflect() protoreflect.Message

func (*ChatStreamRequest) Reset

func (x *ChatStreamRequest) Reset()

func (*ChatStreamRequest) String

func (x *ChatStreamRequest) String() string

type DeleteNoteRequest

type DeleteNoteRequest struct {
	Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteNoteRequest) Descriptor deprecated

func (*DeleteNoteRequest) Descriptor() ([]byte, []int)

Deprecated: Use DeleteNoteRequest.ProtoReflect.Descriptor instead.

func (*DeleteNoteRequest) GetKey

func (x *DeleteNoteRequest) GetKey() string

func (*DeleteNoteRequest) ProtoMessage

func (*DeleteNoteRequest) ProtoMessage()

func (*DeleteNoteRequest) ProtoReflect

func (x *DeleteNoteRequest) ProtoReflect() protoreflect.Message

func (*DeleteNoteRequest) Reset

func (x *DeleteNoteRequest) Reset()

func (*DeleteNoteRequest) String

func (x *DeleteNoteRequest) String() string

type DeleteNoteResponse

type DeleteNoteResponse struct {

	// True when the key existed before delete. False on a no-op
	// (key wasn't present); both forms still return a success
	// response — Delete is idempotent.
	Deleted bool `protobuf:"varint,1,opt,name=deleted,proto3" json:"deleted,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteNoteResponse) Descriptor deprecated

func (*DeleteNoteResponse) Descriptor() ([]byte, []int)

Deprecated: Use DeleteNoteResponse.ProtoReflect.Descriptor instead.

func (*DeleteNoteResponse) GetDeleted

func (x *DeleteNoteResponse) GetDeleted() bool

func (*DeleteNoteResponse) ProtoMessage

func (*DeleteNoteResponse) ProtoMessage()

func (*DeleteNoteResponse) ProtoReflect

func (x *DeleteNoteResponse) ProtoReflect() protoreflect.Message

func (*DeleteNoteResponse) Reset

func (x *DeleteNoteResponse) Reset()

func (*DeleteNoteResponse) String

func (x *DeleteNoteResponse) String() string

type DeleteSessionRequest

type DeleteSessionRequest struct {
	SessionId string `protobuf:"bytes,1,opt,name=session_id,json=sessionId,proto3" json:"session_id,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteSessionRequest) Descriptor deprecated

func (*DeleteSessionRequest) Descriptor() ([]byte, []int)

Deprecated: Use DeleteSessionRequest.ProtoReflect.Descriptor instead.

func (*DeleteSessionRequest) GetSessionId

func (x *DeleteSessionRequest) GetSessionId() string

func (*DeleteSessionRequest) ProtoMessage

func (*DeleteSessionRequest) ProtoMessage()

func (*DeleteSessionRequest) ProtoReflect

func (x *DeleteSessionRequest) ProtoReflect() protoreflect.Message

func (*DeleteSessionRequest) Reset

func (x *DeleteSessionRequest) Reset()

func (*DeleteSessionRequest) String

func (x *DeleteSessionRequest) String() string

type DeleteSessionResponse

type DeleteSessionResponse struct {
	// contains filtered or unexported fields
}

func (*DeleteSessionResponse) Descriptor deprecated

func (*DeleteSessionResponse) Descriptor() ([]byte, []int)

Deprecated: Use DeleteSessionResponse.ProtoReflect.Descriptor instead.

func (*DeleteSessionResponse) ProtoMessage

func (*DeleteSessionResponse) ProtoMessage()

func (*DeleteSessionResponse) ProtoReflect

func (x *DeleteSessionResponse) ProtoReflect() protoreflect.Message

func (*DeleteSessionResponse) Reset

func (x *DeleteSessionResponse) Reset()

func (*DeleteSessionResponse) String

func (x *DeleteSessionResponse) String() string

type GetNoteRequest

type GetNoteRequest struct {
	Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	// contains filtered or unexported fields
}

func (*GetNoteRequest) Descriptor deprecated

func (*GetNoteRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetNoteRequest.ProtoReflect.Descriptor instead.

func (*GetNoteRequest) GetKey

func (x *GetNoteRequest) GetKey() string

func (*GetNoteRequest) ProtoMessage

func (*GetNoteRequest) ProtoMessage()

func (*GetNoteRequest) ProtoReflect

func (x *GetNoteRequest) ProtoReflect() protoreflect.Message

func (*GetNoteRequest) Reset

func (x *GetNoteRequest) Reset()

func (*GetNoteRequest) String

func (x *GetNoteRequest) String() string

type GetNoteResponse

type GetNoteResponse struct {
	Note *Note `protobuf:"bytes,1,opt,name=note,proto3" json:"note,omitempty"`
	// contains filtered or unexported fields
}

func (*GetNoteResponse) Descriptor deprecated

func (*GetNoteResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetNoteResponse.ProtoReflect.Descriptor instead.

func (*GetNoteResponse) GetNote

func (x *GetNoteResponse) GetNote() *Note

func (*GetNoteResponse) ProtoMessage

func (*GetNoteResponse) ProtoMessage()

func (*GetNoteResponse) ProtoReflect

func (x *GetNoteResponse) ProtoReflect() protoreflect.Message

func (*GetNoteResponse) Reset

func (x *GetNoteResponse) Reset()

func (*GetNoteResponse) String

func (x *GetNoteResponse) String() string

type HealthRequest

type HealthRequest struct {
	// contains filtered or unexported fields
}

func (*HealthRequest) Descriptor deprecated

func (*HealthRequest) Descriptor() ([]byte, []int)

Deprecated: Use HealthRequest.ProtoReflect.Descriptor instead.

func (*HealthRequest) ProtoMessage

func (*HealthRequest) ProtoMessage()

func (*HealthRequest) ProtoReflect

func (x *HealthRequest) ProtoReflect() protoreflect.Message

func (*HealthRequest) Reset

func (x *HealthRequest) Reset()

func (*HealthRequest) String

func (x *HealthRequest) String() string

type HealthResponse

type HealthResponse struct {
	Status    string `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	AgentName string `protobuf:"bytes,2,opt,name=agent_name,json=agentName,proto3" json:"agent_name,omitempty"`
	Model     string `protobuf:"bytes,3,opt,name=model,proto3" json:"model,omitempty"`
	// contains filtered or unexported fields
}

func (*HealthResponse) Descriptor deprecated

func (*HealthResponse) Descriptor() ([]byte, []int)

Deprecated: Use HealthResponse.ProtoReflect.Descriptor instead.

func (*HealthResponse) GetAgentName

func (x *HealthResponse) GetAgentName() string

func (*HealthResponse) GetModel

func (x *HealthResponse) GetModel() string

func (*HealthResponse) GetStatus

func (x *HealthResponse) GetStatus() string

func (*HealthResponse) ProtoMessage

func (*HealthResponse) ProtoMessage()

func (*HealthResponse) ProtoReflect

func (x *HealthResponse) ProtoReflect() protoreflect.Message

func (*HealthResponse) Reset

func (x *HealthResponse) Reset()

func (*HealthResponse) String

func (x *HealthResponse) String() string

type ListNotesRequest

type ListNotesRequest struct {

	// When true, ListNotes returns only notes flagged in_context = 1.
	// Default (false) returns all notes ordered by updated_at desc.
	OnlyInContext bool `protobuf:"varint,1,opt,name=only_in_context,json=onlyInContext,proto3" json:"only_in_context,omitempty"`
	// contains filtered or unexported fields
}

func (*ListNotesRequest) Descriptor deprecated

func (*ListNotesRequest) Descriptor() ([]byte, []int)

Deprecated: Use ListNotesRequest.ProtoReflect.Descriptor instead.

func (*ListNotesRequest) GetOnlyInContext

func (x *ListNotesRequest) GetOnlyInContext() bool

func (*ListNotesRequest) ProtoMessage

func (*ListNotesRequest) ProtoMessage()

func (*ListNotesRequest) ProtoReflect

func (x *ListNotesRequest) ProtoReflect() protoreflect.Message

func (*ListNotesRequest) Reset

func (x *ListNotesRequest) Reset()

func (*ListNotesRequest) String

func (x *ListNotesRequest) String() string

type ListNotesResponse

type ListNotesResponse struct {

	// content is omitted for list responses; clients call GetNote
	// to fetch the body of one note. preview + in_context + key are
	// populated.
	Notes []*Note `protobuf:"bytes,1,rep,name=notes,proto3" json:"notes,omitempty"`
	// contains filtered or unexported fields
}

func (*ListNotesResponse) Descriptor deprecated

func (*ListNotesResponse) Descriptor() ([]byte, []int)

Deprecated: Use ListNotesResponse.ProtoReflect.Descriptor instead.

func (*ListNotesResponse) GetNotes

func (x *ListNotesResponse) GetNotes() []*Note

func (*ListNotesResponse) ProtoMessage

func (*ListNotesResponse) ProtoMessage()

func (*ListNotesResponse) ProtoReflect

func (x *ListNotesResponse) ProtoReflect() protoreflect.Message

func (*ListNotesResponse) Reset

func (x *ListNotesResponse) Reset()

func (*ListNotesResponse) String

func (x *ListNotesResponse) String() string

type ListSessionMessagesRequest

type ListSessionMessagesRequest struct {
	SessionId string `protobuf:"bytes,1,opt,name=session_id,json=sessionId,proto3" json:"session_id,omitempty"`
	Limit     int32  `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"` // 0 = server default
	// contains filtered or unexported fields
}

func (*ListSessionMessagesRequest) Descriptor deprecated

func (*ListSessionMessagesRequest) Descriptor() ([]byte, []int)

Deprecated: Use ListSessionMessagesRequest.ProtoReflect.Descriptor instead.

func (*ListSessionMessagesRequest) GetLimit

func (x *ListSessionMessagesRequest) GetLimit() int32

func (*ListSessionMessagesRequest) GetSessionId

func (x *ListSessionMessagesRequest) GetSessionId() string

func (*ListSessionMessagesRequest) ProtoMessage

func (*ListSessionMessagesRequest) ProtoMessage()

func (*ListSessionMessagesRequest) ProtoReflect

func (*ListSessionMessagesRequest) Reset

func (x *ListSessionMessagesRequest) Reset()

func (*ListSessionMessagesRequest) String

func (x *ListSessionMessagesRequest) String() string

type ListSessionMessagesResponse

type ListSessionMessagesResponse struct {
	Messages []*SessionMessage `protobuf:"bytes,1,rep,name=messages,proto3" json:"messages,omitempty"`
	// contains filtered or unexported fields
}

func (*ListSessionMessagesResponse) Descriptor deprecated

func (*ListSessionMessagesResponse) Descriptor() ([]byte, []int)

Deprecated: Use ListSessionMessagesResponse.ProtoReflect.Descriptor instead.

func (*ListSessionMessagesResponse) GetMessages

func (x *ListSessionMessagesResponse) GetMessages() []*SessionMessage

func (*ListSessionMessagesResponse) ProtoMessage

func (*ListSessionMessagesResponse) ProtoMessage()

func (*ListSessionMessagesResponse) ProtoReflect

func (*ListSessionMessagesResponse) Reset

func (x *ListSessionMessagesResponse) Reset()

func (*ListSessionMessagesResponse) String

func (x *ListSessionMessagesResponse) String() string

type ListSessionsRequest

type ListSessionsRequest struct {
	// contains filtered or unexported fields
}

func (*ListSessionsRequest) Descriptor deprecated

func (*ListSessionsRequest) Descriptor() ([]byte, []int)

Deprecated: Use ListSessionsRequest.ProtoReflect.Descriptor instead.

func (*ListSessionsRequest) ProtoMessage

func (*ListSessionsRequest) ProtoMessage()

func (*ListSessionsRequest) ProtoReflect

func (x *ListSessionsRequest) ProtoReflect() protoreflect.Message

func (*ListSessionsRequest) Reset

func (x *ListSessionsRequest) Reset()

func (*ListSessionsRequest) String

func (x *ListSessionsRequest) String() string

type ListSessionsResponse

type ListSessionsResponse struct {
	Sessions []*SessionInfo `protobuf:"bytes,1,rep,name=sessions,proto3" json:"sessions,omitempty"`
	// contains filtered or unexported fields
}

func (*ListSessionsResponse) Descriptor deprecated

func (*ListSessionsResponse) Descriptor() ([]byte, []int)

Deprecated: Use ListSessionsResponse.ProtoReflect.Descriptor instead.

func (*ListSessionsResponse) GetSessions

func (x *ListSessionsResponse) GetSessions() []*SessionInfo

func (*ListSessionsResponse) ProtoMessage

func (*ListSessionsResponse) ProtoMessage()

func (*ListSessionsResponse) ProtoReflect

func (x *ListSessionsResponse) ProtoReflect() protoreflect.Message

func (*ListSessionsResponse) Reset

func (x *ListSessionsResponse) Reset()

func (*ListSessionsResponse) String

func (x *ListSessionsResponse) String() string

type Note

type Note struct {
	Key       string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	Content   string `protobuf:"bytes,2,opt,name=content,proto3" json:"content,omitempty"` // empty in ListNotes responses; full body in GetNote
	Preview   string `protobuf:"bytes,3,opt,name=preview,proto3" json:"preview,omitempty"`
	InContext bool   `protobuf:"varint,4,opt,name=in_context,json=inContext,proto3" json:"in_context,omitempty"`
	CreatedAt int64  `protobuf:"varint,5,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"` // unix seconds
	UpdatedAt int64  `protobuf:"varint,6,opt,name=updated_at,json=updatedAt,proto3" json:"updated_at,omitempty"` // unix seconds
	// contains filtered or unexported fields
}

func (*Note) Descriptor deprecated

func (*Note) Descriptor() ([]byte, []int)

Deprecated: Use Note.ProtoReflect.Descriptor instead.

func (*Note) GetContent

func (x *Note) GetContent() string

func (*Note) GetCreatedAt

func (x *Note) GetCreatedAt() int64

func (*Note) GetInContext

func (x *Note) GetInContext() bool

func (*Note) GetKey

func (x *Note) GetKey() string

func (*Note) GetPreview

func (x *Note) GetPreview() string

func (*Note) GetUpdatedAt

func (x *Note) GetUpdatedAt() int64

func (*Note) ProtoMessage

func (*Note) ProtoMessage()

func (*Note) ProtoReflect

func (x *Note) ProtoReflect() protoreflect.Message

func (*Note) Reset

func (x *Note) Reset()

func (*Note) String

func (x *Note) String() string

type PromptObjectRequest

type PromptObjectRequest struct {

	// Plain-text user prompt (single turn; stateless).
	Prompt string `protobuf:"bytes,1,opt,name=prompt,proto3" json:"prompt,omitempty"`
	// Raw JSON Schema bytes. Unmarshalled into fantasy/schema.Schema
	// server-side; the common subset (type, properties, required,
	// items, enum, format, min/max) is supported.
	SchemaJson []byte `protobuf:"bytes,2,opt,name=schema_json,json=schemaJson,proto3" json:"schema_json,omitempty"`
	// Optional — surfaces in tool-mode providers as the synthetic
	// tool's name / description. Ignored otherwise.
	SchemaName string `protobuf:"bytes,3,opt,name=schema_name,json=schemaName,proto3" json:"schema_name,omitempty"`
	SchemaDesc string `protobuf:"bytes,4,opt,name=schema_desc,json=schemaDesc,proto3" json:"schema_desc,omitempty"`
	// contains filtered or unexported fields
}

func (*PromptObjectRequest) Descriptor deprecated

func (*PromptObjectRequest) Descriptor() ([]byte, []int)

Deprecated: Use PromptObjectRequest.ProtoReflect.Descriptor instead.

func (*PromptObjectRequest) GetPrompt

func (x *PromptObjectRequest) GetPrompt() string

func (*PromptObjectRequest) GetSchemaDesc

func (x *PromptObjectRequest) GetSchemaDesc() string

func (*PromptObjectRequest) GetSchemaJson

func (x *PromptObjectRequest) GetSchemaJson() []byte

func (*PromptObjectRequest) GetSchemaName

func (x *PromptObjectRequest) GetSchemaName() string

func (*PromptObjectRequest) ProtoMessage

func (*PromptObjectRequest) ProtoMessage()

func (*PromptObjectRequest) ProtoReflect

func (x *PromptObjectRequest) ProtoReflect() protoreflect.Message

func (*PromptObjectRequest) Reset

func (x *PromptObjectRequest) Reset()

func (*PromptObjectRequest) String

func (x *PromptObjectRequest) String() string

type PromptObjectResponse

type PromptObjectResponse struct {

	// Marshalled structured object (valid JSON bytes).
	ObjectJson []byte `protobuf:"bytes,1,opt,name=object_json,json=objectJson,proto3" json:"object_json,omitempty"`
	// The raw assistant text, mostly useful when the model returned
	// repaired or otherwise interesting content alongside the parse.
	RawText string `protobuf:"bytes,2,opt,name=raw_text,json=rawText,proto3" json:"raw_text,omitempty"`
	// contains filtered or unexported fields
}

func (*PromptObjectResponse) Descriptor deprecated

func (*PromptObjectResponse) Descriptor() ([]byte, []int)

Deprecated: Use PromptObjectResponse.ProtoReflect.Descriptor instead.

func (*PromptObjectResponse) GetObjectJson

func (x *PromptObjectResponse) GetObjectJson() []byte

func (*PromptObjectResponse) GetRawText

func (x *PromptObjectResponse) GetRawText() string

func (*PromptObjectResponse) ProtoMessage

func (*PromptObjectResponse) ProtoMessage()

func (*PromptObjectResponse) ProtoReflect

func (x *PromptObjectResponse) ProtoReflect() protoreflect.Message

func (*PromptObjectResponse) Reset

func (x *PromptObjectResponse) Reset()

func (*PromptObjectResponse) String

func (x *PromptObjectResponse) String() string

type ReadyRequest

type ReadyRequest struct {
	// contains filtered or unexported fields
}

func (*ReadyRequest) Descriptor deprecated

func (*ReadyRequest) Descriptor() ([]byte, []int)

Deprecated: Use ReadyRequest.ProtoReflect.Descriptor instead.

func (*ReadyRequest) ProtoMessage

func (*ReadyRequest) ProtoMessage()

func (*ReadyRequest) ProtoReflect

func (x *ReadyRequest) ProtoReflect() protoreflect.Message

func (*ReadyRequest) Reset

func (x *ReadyRequest) Reset()

func (*ReadyRequest) String

func (x *ReadyRequest) String() string

type ReadyResponse

type ReadyResponse struct {
	Ready bool `protobuf:"varint,1,opt,name=ready,proto3" json:"ready,omitempty"`
	// contains filtered or unexported fields
}

func (*ReadyResponse) Descriptor deprecated

func (*ReadyResponse) Descriptor() ([]byte, []int)

Deprecated: Use ReadyResponse.ProtoReflect.Descriptor instead.

func (*ReadyResponse) GetReady

func (x *ReadyResponse) GetReady() bool

func (*ReadyResponse) ProtoMessage

func (*ReadyResponse) ProtoMessage()

func (*ReadyResponse) ProtoReflect

func (x *ReadyResponse) ProtoReflect() protoreflect.Message

func (*ReadyResponse) Reset

func (x *ReadyResponse) Reset()

func (*ReadyResponse) String

func (x *ReadyResponse) String() string

type SaveNoteRequest

type SaveNoteRequest struct {
	Key     string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	Content string `protobuf:"bytes,2,opt,name=content,proto3" json:"content,omitempty"`
	// 0 → server uses the agent.yaml-configured caps. Non-zero
	// overrides for this request only; useful when the operator
	// is intentionally bypassing the model's quotas via the UI.
	MaxBytes int32 `protobuf:"varint,3,opt,name=max_bytes,json=maxBytes,proto3" json:"max_bytes,omitempty"`
	MaxCount int32 `protobuf:"varint,4,opt,name=max_count,json=maxCount,proto3" json:"max_count,omitempty"`
	// contains filtered or unexported fields
}

func (*SaveNoteRequest) Descriptor deprecated

func (*SaveNoteRequest) Descriptor() ([]byte, []int)

Deprecated: Use SaveNoteRequest.ProtoReflect.Descriptor instead.

func (*SaveNoteRequest) GetContent

func (x *SaveNoteRequest) GetContent() string

func (*SaveNoteRequest) GetKey

func (x *SaveNoteRequest) GetKey() string

func (*SaveNoteRequest) GetMaxBytes

func (x *SaveNoteRequest) GetMaxBytes() int32

func (*SaveNoteRequest) GetMaxCount

func (x *SaveNoteRequest) GetMaxCount() int32

func (*SaveNoteRequest) ProtoMessage

func (*SaveNoteRequest) ProtoMessage()

func (*SaveNoteRequest) ProtoReflect

func (x *SaveNoteRequest) ProtoReflect() protoreflect.Message

func (*SaveNoteRequest) Reset

func (x *SaveNoteRequest) Reset()

func (*SaveNoteRequest) String

func (x *SaveNoteRequest) String() string

type SaveNoteResponse

type SaveNoteResponse struct {
	Note *Note `protobuf:"bytes,1,opt,name=note,proto3" json:"note,omitempty"`
	// True when the key already existed and Save overwrote it.
	Overwrote bool `protobuf:"varint,2,opt,name=overwrote,proto3" json:"overwrote,omitempty"`
	// contains filtered or unexported fields
}

func (*SaveNoteResponse) Descriptor deprecated

func (*SaveNoteResponse) Descriptor() ([]byte, []int)

Deprecated: Use SaveNoteResponse.ProtoReflect.Descriptor instead.

func (*SaveNoteResponse) GetNote

func (x *SaveNoteResponse) GetNote() *Note

func (*SaveNoteResponse) GetOverwrote

func (x *SaveNoteResponse) GetOverwrote() bool

func (*SaveNoteResponse) ProtoMessage

func (*SaveNoteResponse) ProtoMessage()

func (*SaveNoteResponse) ProtoReflect

func (x *SaveNoteResponse) ProtoReflect() protoreflect.Message

func (*SaveNoteResponse) Reset

func (x *SaveNoteResponse) Reset()

func (*SaveNoteResponse) String

func (x *SaveNoteResponse) String() string

type SessionInfo

type SessionInfo struct {
	Id           string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	MessageCount int32  `protobuf:"varint,2,opt,name=message_count,json=messageCount,proto3" json:"message_count,omitempty"`
	LastActive   int64  `protobuf:"varint,3,opt,name=last_active,json=lastActive,proto3" json:"last_active,omitempty"`
	// contains filtered or unexported fields
}

func (*SessionInfo) Descriptor deprecated

func (*SessionInfo) Descriptor() ([]byte, []int)

Deprecated: Use SessionInfo.ProtoReflect.Descriptor instead.

func (*SessionInfo) GetId

func (x *SessionInfo) GetId() string

func (*SessionInfo) GetLastActive

func (x *SessionInfo) GetLastActive() int64

func (*SessionInfo) GetMessageCount

func (x *SessionInfo) GetMessageCount() int32

func (*SessionInfo) ProtoMessage

func (*SessionInfo) ProtoMessage()

func (*SessionInfo) ProtoReflect

func (x *SessionInfo) ProtoReflect() protoreflect.Message

func (*SessionInfo) Reset

func (x *SessionInfo) Reset()

func (*SessionInfo) String

func (x *SessionInfo) String() string

type SessionMessage

type SessionMessage struct {
	Role         string `protobuf:"bytes,1,opt,name=role,proto3" json:"role,omitempty"`                                      // "user" | "assistant"
	Content      string `protobuf:"bytes,2,opt,name=content,proto3" json:"content,omitempty"`                                // user: prompt text. assistant: JSON parts array.
	CreatedAt    int64  `protobuf:"varint,3,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`          // unix seconds
	BranchesJson string `protobuf:"bytes,4,opt,name=branches_json,json=branchesJson,proto3" json:"branches_json,omitempty"`  // assistant only: JSON array of alternative parts arrays
	ActiveBranch int32  `protobuf:"varint,5,opt,name=active_branch,json=activeBranch,proto3" json:"active_branch,omitempty"` // assistant only: index of currently-active branch
	// contains filtered or unexported fields
}

func (*SessionMessage) Descriptor deprecated

func (*SessionMessage) Descriptor() ([]byte, []int)

Deprecated: Use SessionMessage.ProtoReflect.Descriptor instead.

func (*SessionMessage) GetActiveBranch

func (x *SessionMessage) GetActiveBranch() int32

func (*SessionMessage) GetBranchesJson

func (x *SessionMessage) GetBranchesJson() string

func (*SessionMessage) GetContent

func (x *SessionMessage) GetContent() string

func (*SessionMessage) GetCreatedAt

func (x *SessionMessage) GetCreatedAt() int64

func (*SessionMessage) GetRole

func (x *SessionMessage) GetRole() string

func (*SessionMessage) ProtoMessage

func (*SessionMessage) ProtoMessage()

func (*SessionMessage) ProtoReflect

func (x *SessionMessage) ProtoReflect() protoreflect.Message

func (*SessionMessage) Reset

func (x *SessionMessage) Reset()

func (*SessionMessage) String

func (x *SessionMessage) String() string

type SetNoteInContextRequest

type SetNoteInContextRequest struct {
	Key       string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	InContext bool   `protobuf:"varint,2,opt,name=in_context,json=inContext,proto3" json:"in_context,omitempty"`
	// contains filtered or unexported fields
}

func (*SetNoteInContextRequest) Descriptor deprecated

func (*SetNoteInContextRequest) Descriptor() ([]byte, []int)

Deprecated: Use SetNoteInContextRequest.ProtoReflect.Descriptor instead.

func (*SetNoteInContextRequest) GetInContext

func (x *SetNoteInContextRequest) GetInContext() bool

func (*SetNoteInContextRequest) GetKey

func (x *SetNoteInContextRequest) GetKey() string

func (*SetNoteInContextRequest) ProtoMessage

func (*SetNoteInContextRequest) ProtoMessage()

func (*SetNoteInContextRequest) ProtoReflect

func (x *SetNoteInContextRequest) ProtoReflect() protoreflect.Message

func (*SetNoteInContextRequest) Reset

func (x *SetNoteInContextRequest) Reset()

func (*SetNoteInContextRequest) String

func (x *SetNoteInContextRequest) String() string

type SetNoteInContextResponse

type SetNoteInContextResponse struct {
	Note *Note `protobuf:"bytes,1,opt,name=note,proto3" json:"note,omitempty"`
	// contains filtered or unexported fields
}

func (*SetNoteInContextResponse) Descriptor deprecated

func (*SetNoteInContextResponse) Descriptor() ([]byte, []int)

Deprecated: Use SetNoteInContextResponse.ProtoReflect.Descriptor instead.

func (*SetNoteInContextResponse) GetNote

func (x *SetNoteInContextResponse) GetNote() *Note

func (*SetNoteInContextResponse) ProtoMessage

func (*SetNoteInContextResponse) ProtoMessage()

func (*SetNoteInContextResponse) ProtoReflect

func (x *SetNoteInContextResponse) ProtoReflect() protoreflect.Message

func (*SetNoteInContextResponse) Reset

func (x *SetNoteInContextResponse) Reset()

func (*SetNoteInContextResponse) String

func (x *SetNoteInContextResponse) String() string

type UnimplementedAgentRuntimeServer

type UnimplementedAgentRuntimeServer struct{}

UnimplementedAgentRuntimeServer must be embedded to have forward compatible implementations.

NOTE: this should be embedded by value instead of pointer to avoid a nil pointer dereference when methods are called.

func (UnimplementedAgentRuntimeServer) Chat

func (UnimplementedAgentRuntimeServer) ChatStream

func (UnimplementedAgentRuntimeServer) DeleteNote

func (UnimplementedAgentRuntimeServer) DeleteSession

func (UnimplementedAgentRuntimeServer) GetNote

func (UnimplementedAgentRuntimeServer) Health

func (UnimplementedAgentRuntimeServer) ListNotes

func (UnimplementedAgentRuntimeServer) ListSessions

func (UnimplementedAgentRuntimeServer) PromptObject

func (UnimplementedAgentRuntimeServer) Ready

func (UnimplementedAgentRuntimeServer) SaveNote

func (UnimplementedAgentRuntimeServer) SetNoteInContext

type UnsafeAgentRuntimeServer

type UnsafeAgentRuntimeServer interface {
	// contains filtered or unexported methods
}

UnsafeAgentRuntimeServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to AgentRuntimeServer will result in compilation errors.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL