Documentation
¶
Overview ¶
Package adminserver serves a small, read-only HTML dashboard for monitoring LLM activity during digest generation: a list of runs with token totals and a per-run view of every prompt/response that passed through the gateway.
It binds to localhost only and has no authentication, matching the project's other local HTTP servers (devserver).
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AdminServer ¶
type AdminServer struct {
// contains filtered or unexported fields
}
AdminServer renders the LLM monitoring pages from the store.
func NewAdminServer ¶
func NewAdminServer(store store.Store, port int) *AdminServer
NewAdminServer creates a monitoring server reading from the given store.
func (*AdminServer) Start ¶
func (a *AdminServer) Start() error
Start serves the dashboard on 127.0.0.1:<port> until the process exits.
Click to show internal directories.
Click to hide internal directories.