admin

package
v0.2.0 Latest Latest
Warning

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

Go to latest
Published: Jun 1, 2026 License: Apache-2.0 Imports: 31 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type CredentialView

type CredentialView struct {
	credentialmgr.ManagedCredential
	ReadOnly bool `json:"read_only"`
}

type GatewaySessionView added in v0.1.0

type GatewaySessionView struct {
	ID                string                   `json:"id"`
	ServiceID         string                   `json:"service_id"`
	UpstreamSessionID string                   `json:"upstream_session_id,omitempty"`
	Transport         mcpservice.TransportType `json:"transport"`
	State             mcpservice.SessionState  `json:"state"`
	CreatedAt         time.Time                `json:"created_at"`
	LastUsedAt        time.Time                `json:"last_used_at"`
}

GatewaySessionView is the Admin API representation of a GatewaySession. The upstream_session_id field is masked to hide transport-internal identifiers.

type Handler

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

Handler handles Admin API requests under /admin/.

func NewHandler

func NewHandler(agentGateway *gateway.AgentGateway, logger *zap.Logger, adminUser, adminPasswordHash string) *Handler

NewHandler constructs an admin Handler. logger may be nil (a no-op logger is used in that case).

func (*Handler) Routes

func (h *Handler) Routes() []Route

Routes returns all admin API routes.

func (*Handler) ServeHTTP

func (h *Handler) ServeHTTP(w http.ResponseWriter, r *http.Request)

ServeHTTP dispatches admin API requests, including CORS preflight handling.

type LLMApiHandlerTypeView

type LLMApiHandlerTypeView struct {
	LLMApiHandlerType string `json:"llm_api_handler_type"`
}

type LLMRouteView added in v0.1.0

type LLMRouteView struct {
	ID           string                       `json:"id"`
	Kind         llmroutepkg.RouteKind        `json:"kind,omitempty"`
	Protocol     llmroutepkg.RouteProtocol    `json:"protocol,omitempty"`
	Description  string                       `json:"description,omitempty"`
	Disabled     bool                         `json:"disabled"`
	MatchPolicy  llmroutepkg.RouteMatchPolicy `json:"match_policy"`
	TargetPolicy json.RawMessage              `json:"target_policy"`
	AuthPolicy   llmroutepkg.RouteAuthPolicy  `json:"auth_policy"`
	CreatedAt    time.Time                    `json:"created_at"`
	UpdatedAt    time.Time                    `json:"updated_at"`
	Source       string                       `json:"source"`
	ReadOnly     bool                         `json:"read_only"`
}

func (LLMRouteView) LLMRouteConfig added in v0.1.0

func (v LLMRouteView) LLMRouteConfig() (llmroutepkg.LLMRouteConfig, error)

type MCPDispatcherRuntimeView added in v0.1.0

type MCPDispatcherRuntimeView struct {
	InFlight []mcpruntime.InFlightRequest      `json:"in_flight"`
	Progress []mcpruntime.ProgressNotification `json:"progress"`
}

type MCPPromptGetRequest added in v0.1.0

type MCPPromptGetRequest struct {
	Name      string         `json:"name"`
	Arguments map[string]any `json:"arguments,omitempty"`
}

type MCPResourceReadRequest added in v0.1.0

type MCPResourceReadRequest struct {
	URI string `json:"uri"`
}

type MCPRouteView added in v0.1.0

type MCPRouteView struct {
	mcproute.MCPRouteConfig
	Source   string `json:"source"`
	ReadOnly bool   `json:"read_only"`
}

type MCPServiceView added in v0.1.0

type MCPServiceView struct {
	mcpservice.MCPServiceConfig
	Source   string `json:"source"`
	ReadOnly bool   `json:"read_only"`
}

type MCPToolCallRequest added in v0.1.0

type MCPToolCallRequest struct {
	Name      string         `json:"name"`
	Arguments map[string]any `json:"arguments,omitempty"`
}

type ManagedConcreteModelView

type ManagedConcreteModelView struct {
	modelcatalog.ManagedModel
	ProviderType  string                      `json:"provider_type,omitempty"`
	DisplayName   string                      `json:"display_name,omitempty"`
	Description   string                      `json:"description,omitempty"`
	Capabilities  provider.ModelCapabilities  `json:"capabilities,omitempty"`
	SnapshotState modelcatalog.SnapshotStatus `json:"snapshot_status,omitempty"`
	FetchedAt     time.Time                   `json:"fetched_at,omitempty"`
	LastError     string                      `json:"last_error,omitempty"`
}

type ProviderTypeView

type ProviderTypeView struct {
	ProviderType string `json:"provider_type"`
	Enabled      bool   `json:"enabled"`
}

type ProviderView

type ProviderView struct {
	provider.ProviderConfig
	Source   string `json:"source"`
	ReadOnly bool   `json:"read_only"`
}

type Route

type Route struct {
	Method      string
	Path        string
	Handler     http.HandlerFunc
	RequireAuth bool
}

Route defines an admin API route.

type VirtualKeyView

type VirtualKeyView struct {
	virtualkeypkg.VirtualKey
	Source   string `json:"source"`
	ReadOnly bool   `json:"read_only"`
}

Jump to

Keyboard shortcuts

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