Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type HTTPServiceRestartE2EReport ¶
type HTTPServiceRestartE2EReport struct {
SQLiteRestartVerified bool `json:"sqlite_restart_verified"`
NetworkRequired bool `json:"network_required"`
ExternalProviderRequired bool `json:"external_provider_required"`
MessagesCreated int `json:"messages_created"`
SearchCountBeforeRestart int `json:"search_count_before_restart"`
SearchCountAfterRestart int `json:"search_count_after_restart"`
ContextHadProfileAfterRestart bool `json:"context_had_profile_after_restart"`
ContextHadConclusionAfterRestart bool `json:"context_had_conclusion_after_restart"`
ContextHadRecentMessageAfterRestart bool `json:"context_had_recent_message_after_restart"`
CompletionCondition string `json:"completion_condition"`
}
func RunHTTPServiceRestartE2E ¶
func RunHTTPServiceRestartE2E(ctx context.Context, cfg HTTPServiceRestartE2EConfig) (HTTPServiceRestartE2EReport, error)
type Route ¶
type Route struct {
Method string `json:"method"`
Path string `json:"path"`
OperationID string `json:"operation_id"`
Tag string `json:"tag"`
Status RouteStatus `json:"status"`
Target string `json:"target,omitempty"`
Residual string `json:"residual,omitempty"`
SourceRefs []string `json:"source_refs,omitempty"`
}
func OpenAPIRouteManifest ¶
func OpenAPIRouteManifest() []Route
func RowBackedRoutes ¶
func RowBackedRoutes() []Route
type RouteStatus ¶
type RouteStatus string
const ( RouteServiceBacked RouteStatus = "service_backed" RouteRowBacked RouteStatus = "row_backed" )
Click to show internal directories.
Click to hide internal directories.