SYMBOL INDEX (15612 symbols across 597 files) FILE: backend/cmd/ctester/main.go function main (line 33) | func main() { function createProvider (line 125) | func createProvider(providerType string, cfg *config.Config) (provider.P... function parseAgentTypes (line 232) | func parseAgentTypes(agentStrings []string) []pconfig.ProviderOptionsType { function parseTestGroups (line 262) | func parseTestGroups(groupStrings []string) []testdata.TestGroup { function convertToAgentResults (line 283) | func convertToAgentResults(results tester.ProviderTestResults, prv provi... function loadCustomTests (line 362) | func loadCustomTests(path string) (*testdata.TestRegistry, error) { FILE: backend/cmd/ctester/models.go type TestResult (line 6) | type TestResult struct type AgentTestResult (line 19) | type AgentTestResult struct FILE: backend/cmd/ctester/report.go function PrintAgentResults (line 11) | func PrintAgentResults(result AgentTestResult) { function PrintSummaryReport (line 63) | func PrintSummaryReport(results []AgentTestResult) { function WriteReportToFile (line 104) | func WriteReportToFile(results []AgentTestResult, filePath string) error { FILE: backend/cmd/ctester/utils.go function TruncateString (line 10) | func TruncateString(s string, maxLength int) string { function EscapeMarkdown (line 22) | func EscapeMarkdown(text string) string { FILE: backend/cmd/etester/flush.go method flush (line 11) | func (t *Tester) flush() error { FILE: backend/cmd/etester/info.go method info (line 12) | func (t *Tester) info() error { function printTableHeader (line 195) | func printTableHeader(column1, column2 string) { function printTableRow (line 201) | func printTableRow(value string, count int) { FILE: backend/cmd/etester/main.go constant defaultEmbeddingTableName (line 23) | defaultEmbeddingTableName = "langchain_pg_embedding" constant defaultCollectionTableName (line 24) | defaultCollectionTableName = "langchain_pg_collection" function main (line 27) | func main() { function showHelp (line 114) | func showHelp() { FILE: backend/cmd/etester/reindex.go type Document (line 14) | type Document struct method reindex (line 20) | func (t *Tester) reindex() error { FILE: backend/cmd/etester/search.go type SearchOptions (line 16) | type SearchOptions struct function validateSearchOptions (line 27) | func validateSearchOptions(opts *SearchOptions) error { function parseSearchArgs (line 94) | func parseSearchArgs(args []string) (*SearchOptions, error) { method search (line 157) | func (t *Tester) search(args []string) error { method createVectorStore (line 253) | func (t *Tester) createVectorStore() (*pgvector.Store, error) { function printSearchUsage (line 272) | func printSearchUsage() { FILE: backend/cmd/etester/test.go constant testText (line 12) | testText = "This is a test text for embedding" constant testTexts (line 13) | testTexts = "This is a test text for embedding\nThis is another test tex... method test (line 17) | func (t *Tester) test() error { FILE: backend/cmd/etester/tester.go type Tester (line 14) | type Tester struct method executeCommand (line 47) | func (t *Tester) executeCommand(args []string) error { function NewTester (line 26) | func NewTester( function formatSize (line 65) | func formatSize(bytes int64) string { FILE: backend/cmd/ftester/main.go function main (line 30) | func main() { FILE: backend/cmd/ftester/mocks/logs.go type ProxyProviders (line 12) | type ProxyProviders interface type proxyProviders (line 22) | type proxyProviders struct method GetScreenshotProvider (line 43) | func (p *proxyProviders) GetScreenshotProvider() tools.ScreenshotProvi... method GetAgentLogProvider (line 47) | func (p *proxyProviders) GetAgentLogProvider() tools.AgentLogProvider { method GetMsgLogProvider (line 51) | func (p *proxyProviders) GetMsgLogProvider() tools.MsgLogProvider { method GetSearchLogProvider (line 55) | func (p *proxyProviders) GetSearchLogProvider() tools.SearchLogProvider { method GetTermLogProvider (line 59) | func (p *proxyProviders) GetTermLogProvider() tools.TermLogProvider { method GetVectorStoreLogProvider (line 63) | func (p *proxyProviders) GetVectorStoreLogProvider() tools.VectorStore... function NewProxyProviders (line 32) | func NewProxyProviders() ProxyProviders { type proxyScreenshotProvider (line 68) | type proxyScreenshotProvider struct method PutScreenshot (line 71) | func (p *proxyScreenshotProvider) PutScreenshot(ctx context.Context, n... type proxyAgentLogProvider (line 87) | type proxyAgentLogProvider struct method PutLog (line 90) | func (p *proxyAgentLogProvider) PutLog( type proxyMsgLogProvider (line 119) | type proxyMsgLogProvider struct method PutMsg (line 122) | func (p *proxyMsgLogProvider) PutMsg( method UpdateMsgResult (line 147) | func (p *proxyMsgLogProvider) UpdateMsgResult( type proxySearchLogProvider (line 166) | type proxySearchLogProvider struct method PutLog (line 169) | func (p *proxySearchLogProvider) PutLog( type proxyTermLogProvider (line 200) | type proxyTermLogProvider struct method PutMsg (line 203) | func (p *proxyTermLogProvider) PutMsg( type proxyVectorStoreLogProvider (line 229) | type proxyVectorStoreLogProvider struct method PutLog (line 232) | func (p *proxyVectorStoreLogProvider) PutLog( FILE: backend/cmd/ftester/mocks/tools.go function MockResponse (line 13) | func MockResponse(funcName string, args json.RawMessage) (string, error) { FILE: backend/cmd/ftester/worker/args.go type FunctionInfo (line 14) | type FunctionInfo struct type ArgumentInfo (line 21) | type ArgumentInfo struct type DescribeParams (line 31) | type DescribeParams struct function GetAvailableFunctions (line 49) | func GetAvailableFunctions() []FunctionInfo { function GetFunctionInfo (line 72) | func GetFunctionInfo(funcName string) (FunctionInfo, error) { function ParseFunctionArgs (line 176) | func ParseFunctionArgs(funcName string, args []string) (any, error) { function getStructTypeForFunction (line 287) | func getStructTypeForFunction(funcName string) (reflect.Type, error) { function isToolAvailableForCall (line 335) | func isToolAvailableForCall(toolName string) bool { FILE: backend/cmd/ftester/worker/executor.go type agentTool (line 24) | type agentTool struct method Handle (line 28) | func (at *agentTool) Handle(ctx context.Context, name string, args jso... method IsAvailable (line 35) | func (at *agentTool) IsAvailable() bool { type toolExecutor (line 40) | type toolExecutor struct method GetTool (line 112) | func (te *toolExecutor) GetTool(ctx context.Context, funcName string) ... method ExecuteFunctionWrapper (line 376) | func (te *toolExecutor) ExecuteFunctionWrapper(ctx context.Context, fu... method ExecuteRealFunction (line 389) | func (te *toolExecutor) ExecuteRealFunction(ctx context.Context, funcN... method ExecuteFunctionWithMode (line 409) | func (te *toolExecutor) ExecuteFunctionWithMode(ctx context.Context, f... method GetSummarizer (line 441) | func (te *toolExecutor) GetSummarizer() tools.SummarizeHandler { function newToolExecutor (line 56) | func newToolExecutor( FILE: backend/cmd/ftester/worker/interactive.go function InteractiveFillArgs (line 15) | func InteractiveFillArgs(ctx context.Context, funcName string, taskID, s... function fillStructFromMap (line 146) | func fillStructFromMap(structPtr any, data map[string]any) error { FILE: backend/cmd/ftester/worker/tester.go type Tester (line 23) | type Tester interface type tester (line 28) | type tester struct method initFlowProviderController (line 122) | func (t *tester) initFlowProviderController() error { method Execute (line 220) | func (t *tester) Execute(args []string) error { method executeDescribe (line 286) | func (t *tester) executeDescribe(ctx context.Context, params *Describe... method executeDescribeFlows (line 307) | func (t *tester) executeDescribeFlows(ctx context.Context, params *Des... method executeDescribeSubtask (line 350) | func (t *tester) executeDescribeSubtask(ctx context.Context, params *D... method executeDescribeTask (line 410) | func (t *tester) executeDescribeTask(ctx context.Context, params *Desc... method executeDescribeFlowTasks (line 481) | func (t *tester) executeDescribeFlowTasks(ctx context.Context, params ... method showGeneralHelp (line 559) | func (t *tester) showGeneralHelp() error { method getModeDescription (line 629) | func (t *tester) getModeDescription() string { method showFunctionHelp (line 637) | func (t *tester) showFunctionHelp(funcName string) error { method needsTeminalPrepare (line 663) | func (t *tester) needsTeminalPrepare(funcName string) bool { function NewTester (line 49) | func NewTester( function wrapErrorEndSpan (line 675) | func wrapErrorEndSpan(ctx context.Context, span langfuse.Span, msg strin... FILE: backend/cmd/installer/checker/checker.go constant DockerComposeFile (line 23) | DockerComposeFile = "docker-compose.yml" constant GraphitiComposeFile (line 24) | GraphitiComposeFile = "docker-compose-graphiti.yml" constant LangfuseComposeFile (line 25) | LangfuseComposeFile = "docker-compose-langfuse.yml" constant ObservabilityComposeFile (line 26) | ObservabilityComposeFile = "docker-compose-observability.yml" constant ExampleCustomConfigLLMFile (line 27) | ExampleCustomConfigLLMFile = "example.custom.provider.yml" constant ExampleOllamaConfigLLMFile (line 28) | ExampleOllamaConfigLLMFile = "example.ollama.provider.yml" constant PentagiScriptFile (line 29) | PentagiScriptFile = "/usr/local/bin/pentagi" constant PentagiContainerName (line 30) | PentagiContainerName = "pentagi" constant GraphitiContainerName (line 31) | GraphitiContainerName = "graphiti" constant Neo4jContainerName (line 32) | Neo4jContainerName = "neo4j" constant LangfuseWorkerContainerName (line 33) | LangfuseWorkerContainerName = "langfuse-worker" constant LangfuseWebContainerName (line 34) | LangfuseWebContainerName = "langfuse-web" constant GrafanaContainerName (line 35) | GrafanaContainerName = "grafana" constant OpenTelemetryContainerName (line 36) | OpenTelemetryContainerName = "otel" constant DefaultImage (line 37) | DefaultImage = "debian:latest" constant DefaultImageForPentest (line 38) | DefaultImageForPentest = "vxcontrol/kali-linux" constant DefaultGraphitiEndpoint (line 39) | DefaultGraphitiEndpoint = "http://graphiti:8000" constant DefaultLangfuseEndpoint (line 40) | DefaultLangfuseEndpoint = "http://langfuse-web:3000" constant DefaultObservabilityEndpoint (line 41) | DefaultObservabilityEndpoint = "otelcol:8148" constant DefaultLangfuseOtelEndpoint (line 42) | DefaultLangfuseOtelEndpoint = "http://otelcol:4318" constant DefaultUpdateServerEndpoint (line 43) | DefaultUpdateServerEndpoint = "https://update.pentagi.com" constant UpdatesCheckEndpoint (line 44) | UpdatesCheckEndpoint = "/api/v1/updates/check" constant MinFreeMemGB (line 45) | MinFreeMemGB = 0.5 constant MinFreeMemGBForPentagi (line 46) | MinFreeMemGBForPentagi = 0.5 constant MinFreeMemGBForGraphiti (line 47) | MinFreeMemGBForGraphiti = 2.0 constant MinFreeMemGBForLangfuse (line 48) | MinFreeMemGBForLangfuse = 1.5 constant MinFreeMemGBForObservability (line 49) | MinFreeMemGBForObservability = 1.5 constant MinFreeDiskGB (line 50) | MinFreeDiskGB = 5.0 constant MinFreeDiskGBForComponents (line 51) | MinFreeDiskGBForComponents = 10.0 constant MinFreeDiskGBPerComponents (line 52) | MinFreeDiskGBPerComponents = 2.0 constant MinFreeDiskGBForWorkerImages (line 53) | MinFreeDiskGBForWorkerImages = 25.0 type CheckResult (line 61) | type CheckResult struct method GatherAllInfo (line 134) | func (c *CheckResult) GatherAllInfo(ctx context.Context) error { method GatherDockerInfo (line 141) | func (c *CheckResult) GatherDockerInfo(ctx context.Context) error { method GatherWorkerInfo (line 148) | func (c *CheckResult) GatherWorkerInfo(ctx context.Context) error { method GatherPentagiInfo (line 155) | func (c *CheckResult) GatherPentagiInfo(ctx context.Context) error { method GatherGraphitiInfo (line 162) | func (c *CheckResult) GatherGraphitiInfo(ctx context.Context) error { method GatherLangfuseInfo (line 169) | func (c *CheckResult) GatherLangfuseInfo(ctx context.Context) error { method GatherObservabilityInfo (line 176) | func (c *CheckResult) GatherObservabilityInfo(ctx context.Context) err... method GatherSystemInfo (line 183) | func (c *CheckResult) GatherSystemInfo(ctx context.Context) error { method GatherUpdatesInfo (line 190) | func (c *CheckResult) GatherUpdatesInfo(ctx context.Context) error { method IsReadyToContinue (line 197) | func (c *CheckResult) IsReadyToContinue() bool { method CanStartAll (line 215) | func (c *CheckResult) CanStartAll() bool { method CanStopAll (line 232) | func (c *CheckResult) CanStopAll() bool { method CanRestartAll (line 237) | func (c *CheckResult) CanRestartAll() bool { return c.CanStopAll() } method CanDownloadWorker (line 240) | func (c *CheckResult) CanDownloadWorker() bool { return !c.WorkerImage... method CanUpdateWorker (line 243) | func (c *CheckResult) CanUpdateWorker() bool { return c.WorkerImageExi... method CanUpdateAll (line 246) | func (c *CheckResult) CanUpdateAll() bool { method CanUpdateInstaller (line 263) | func (c *CheckResult) CanUpdateInstaller() bool { method CanFactoryReset (line 268) | func (c *CheckResult) CanFactoryReset() bool { method CanRemoveAll (line 273) | func (c *CheckResult) CanRemoveAll() bool { return c.CanFactoryReset() } method CanPurgeAll (line 276) | func (c *CheckResult) CanPurgeAll() bool { return c.CanFactoryReset() } method CanResetPassword (line 279) | func (c *CheckResult) CanResetPassword() bool { return c.PentagiRunning } method CanInstallAll (line 282) | func (c *CheckResult) CanInstallAll() bool { return !c.PentagiInstalled } type CheckHandler (line 121) | type CheckHandler interface type defaultCheckHandler (line 285) | type defaultCheckHandler struct method GatherAllInfo (line 292) | func (h *defaultCheckHandler) GatherAllInfo(ctx context.Context, c *Ch... method GatherDockerInfo (line 331) | func (h *defaultCheckHandler) GatherDockerInfo(ctx context.Context, c ... method GatherWorkerInfo (line 363) | func (h *defaultCheckHandler) GatherWorkerInfo(ctx context.Context, c ... method GatherPentagiInfo (line 394) | func (h *defaultCheckHandler) GatherPentagiInfo(ctx context.Context, c... method GatherGraphitiInfo (line 418) | func (h *defaultCheckHandler) GatherGraphitiInfo(ctx context.Context, ... method GatherLangfuseInfo (line 447) | func (h *defaultCheckHandler) GatherLangfuseInfo(ctx context.Context, ... method GatherObservabilityInfo (line 478) | func (h *defaultCheckHandler) GatherObservabilityInfo(ctx context.Cont... method GatherSystemInfo (line 499) | func (h *defaultCheckHandler) GatherSystemInfo(ctx context.Context, c ... method GatherUpdatesInfo (line 553) | func (h *defaultCheckHandler) GatherUpdatesInfo(ctx context.Context, c... function Gather (line 656) | func Gather(ctx context.Context, appState state.State) (CheckResult, err... function GatherWithHandler (line 676) | func GatherWithHandler(ctx context.Context, handler CheckHandler) (Check... FILE: backend/cmd/installer/checker/helpers.go type DockerVersion (line 31) | type DockerVersion struct type ImageInfo (line 36) | type ImageInfo struct type CheckUpdatesRequest (line 42) | type CheckUpdatesRequest struct type CheckUpdatesResponse (line 80) | type CheckUpdatesResponse struct function checkFileExists (line 89) | func checkFileExists(path string) bool { function checkFileIsReadable (line 94) | func checkFileIsReadable(path string) bool { function checkDirIsWritable (line 104) | func checkDirIsWritable(dirPath string) bool { function getEnvVar (line 118) | func getEnvVar(appState state.State, key, defaultValue string) string { function getProxyURL (line 133) | func getProxyURL(appState state.State) string { function createDockerClient (line 140) | func createDockerClient(host, certPath string, tlsVerify bool) (*client.... function createDockerClientFromEnv (line 161) | func createDockerClientFromEnv(ctx context.Context) (*client.Client, Doc... type DockerErrorType (line 197) | type DockerErrorType constant DockerErrorNone (line 201) | DockerErrorNone DockerErrorType = "" constant DockerErrorNotInstalled (line 202) | DockerErrorNotInstalled DockerErrorType = "not_installed" constant DockerErrorNotRunning (line 203) | DockerErrorNotRunning DockerErrorType = "not_running" constant DockerErrorAPIError (line 204) | DockerErrorAPIError DockerErrorType = "api_error" constant DockerErrorPermission (line 205) | DockerErrorPermission DockerErrorType = "permission" function checkDockerVersion (line 208) | func checkDockerVersion(ctx context.Context, cli *client.Client) DockerV... function checkDockerCliVersion (line 220) | func checkDockerCliVersion() DockerVersion { function checkDockerComposeVersion (line 238) | func checkDockerComposeVersion() DockerVersion { function extractVersionFromOutput (line 255) | func extractVersionFromOutput(output string) string { function checkVersionCompatibility (line 264) | func checkVersionCompatibility(version, minVersion string) bool { function checkContainerExists (line 291) | func checkContainerExists(ctx context.Context, cli *client.Client, name ... function checkVolumesExist (line 310) | func checkVolumesExist(ctx context.Context, cli *client.Client, volumeNa... function checkCPUResources (line 340) | func checkCPUResources() bool { function determineComponentNeeds (line 345) | func determineComponentNeeds(c *CheckResult) (needsForPentagi, needsForG... function calculateRequiredMemoryGB (line 354) | func calculateRequiredMemoryGB(needsForPentagi, needsForGraphiti, needsF... function checkMemoryResources (line 371) | func checkMemoryResources(needsForPentagi, needsForGraphiti, needsForLan... function getAvailableMemoryGB (line 390) | func getAvailableMemoryGB() float64 { function getLinuxAvailableMemoryGB (line 402) | func getLinuxAvailableMemoryGB() float64 { function getDarwinAvailableMemoryGB (line 442) | func getDarwinAvailableMemoryGB() float64 { function checkLinuxMemory (line 492) | func checkLinuxMemory(requiredGB float64) bool { function checkDarwinMemory (line 532) | func checkDarwinMemory(requiredGB float64) bool { function calculateRequiredDiskGB (line 584) | func calculateRequiredDiskGB(workerImageExists bool, localComponents int... function countLocalComponentsToInstall (line 598) | func countLocalComponentsToInstall( function checkDiskSpaceWithContext (line 620) | func checkDiskSpaceWithContext( function getAvailableDiskGB (line 649) | func getAvailableDiskGB(ctx context.Context) float64 { function getLinuxAvailableDiskGB (line 661) | func getLinuxAvailableDiskGB(ctx context.Context) float64 { function getDarwinAvailableDiskGB (line 687) | func getDarwinAvailableDiskGB(ctx context.Context) float64 { function checkLinuxDiskSpace (line 711) | func checkLinuxDiskSpace(ctx context.Context, requiredGB float64) bool { function checkDarwinDiskSpace (line 736) | func checkDarwinDiskSpace(ctx context.Context, requiredGB float64) bool { function getNetworkFailures (line 760) | func getNetworkFailures(ctx context.Context, proxyURL string, dockerClie... function getContainerImageInfo (line 784) | func getContainerImageInfo(ctx context.Context, cli *client.Client, cont... function checkImageExists (line 801) | func checkImageExists(ctx context.Context, cli *client.Client, imageName... function getImageInfo (line 806) | func getImageInfo(ctx context.Context, cli *client.Client, imageName str... function parseImageRef (line 834) | func parseImageRef(imageRef, imageID string) *ImageInfo { function checkUpdatesServer (line 912) | func checkUpdatesServer( function checkDNSResolution (line 961) | func checkDNSResolution(hostname string) bool { function checkHTTPConnectivity (line 966) | func checkHTTPConnectivity(ctx context.Context, proxyURL string) bool { function checkDockerPullConnectivity (line 993) | func checkDockerPullConnectivity(ctx context.Context, dockerClient, work... function checkSingleDockerPull (line 1011) | func checkSingleDockerPull(ctx context.Context, cli *client.Client, imag... FILE: backend/cmd/installer/checker/helpers_test.go type mockState (line 18) | type mockState struct method GetVar (line 23) | func (m *mockState) GetVar(key string) (loader.EnvVar, bool) { method GetVars (line 30) | func (m *mockState) GetVars(names []string) (map[string]loader.EnvVar,... method GetEnvPath (line 34) | func (m *mockState) GetEnvPath() string { method Exists (line 38) | func (m *mockState) Exists() bool { return true } method Reset (line 39) | func (m *mockState) Reset() error { return nil } method Commit (line 40) | func (m *mockState) Commit() error { return nil } method IsDirty (line 41) | func (m *mockState) IsDirty() bool { return fal... method GetEulaConsent (line 42) | func (m *mockState) GetEulaConsent() bool { return true } method SetEulaConsent (line 43) | func (m *mockState) SetEulaConsent() error { return nil } method SetStack (line 44) | func (m *mockState) SetStack(stack []string) error { return nil } method GetStack (line 45) | func (m *mockState) GetStack() []string { return []s... method SetVar (line 46) | func (m *mockState) SetVar(name, value string) error { return nil } method ResetVar (line 47) | func (m *mockState) ResetVar(name string) error { return nil } method SetVars (line 48) | func (m *mockState) SetVars(vars map[string]string) error { return nil } method ResetVars (line 49) | func (m *mockState) ResetVars(names []string) error { return nil } method GetAllVars (line 50) | func (m *mockState) GetAllVars() map[string]loader.EnvVar { return m.v... function TestCheckFileExistsAndReadable (line 52) | func TestCheckFileExistsAndReadable(t *testing.T) { function TestGetEnvVar (line 83) | func TestGetEnvVar(t *testing.T) { function TestExtractVersionFromOutput (line 136) | func TestExtractVersionFromOutput(t *testing.T) { function TestCheckVersionCompatibility (line 160) | func TestCheckVersionCompatibility(t *testing.T) { function TestParseImageRef (line 190) | func TestParseImageRef(t *testing.T) { function TestCheckCPUResources (line 241) | func TestCheckCPUResources(t *testing.T) { function TestCheckMemoryResources (line 249) | func TestCheckMemoryResources(t *testing.T) { function TestCheckDiskSpaceWithContext (line 296) | func TestCheckDiskSpaceWithContext(t *testing.T) { function TestCheckUpdatesServer (line 375) | func TestCheckUpdatesServer(t *testing.T) { function TestCreateTempFileForTesting (line 512) | func TestCreateTempFileForTesting(t *testing.T) { function TestConstants (line 536) | func TestConstants(t *testing.T) { function TestCheckImageExistsEdgeCases (line 569) | func TestCheckImageExistsEdgeCases(t *testing.T) { function TestGetImageInfoEdgeCases (line 583) | func TestGetImageInfoEdgeCases(t *testing.T) { function TestCheckUpdatesRequestStructure (line 596) | func TestCheckUpdatesRequestStructure(t *testing.T) { function TestImageInfoStructure (line 627) | func TestImageInfoStructure(t *testing.T) { function TestCheckVolumesExist (line 646) | func TestCheckVolumesExist(t *testing.T) { type mockDockerVolume (line 681) | type mockDockerVolume struct function TestCheckVolumesExist_MatchingLogic (line 685) | func TestCheckVolumesExist_MatchingLogic(t *testing.T) { FILE: backend/cmd/installer/files/files.go type FileStatus (line 16) | type FileStatus constant FileStatusMissing (line 19) | FileStatusMissing FileStatus = "missing" constant FileStatusModified (line 20) | FileStatusModified FileStatus = "modified" constant FileStatusOK (line 21) | FileStatusOK FileStatus = "ok" type Files (line 25) | type Files interface type EmbeddedProvider (line 50) | type EmbeddedProvider interface function shouldCheckPermissions (line 64) | func shouldCheckPermissions() bool { type files (line 71) | type files struct method GetContent (line 82) | func (f *files) GetContent(name string) ([]byte, error) { method Exists (line 110) | func (f *files) Exists(name string) bool { method ExistsInFS (line 118) | func (f *files) ExistsInFS(name string) bool { method Stat (line 125) | func (f *files) Stat(name string) (fs.FileInfo, error) { method Copy (line 153) | func (f *files) Copy(src, dst string, rewrite bool) error { method Check (line 181) | func (f *files) Check(name string, workingDir string) FileStatus { method List (line 246) | func (f *files) List(prefix string) ([]string, error) { method getContentFromFS (line 256) | func (f *files) getContentFromFS(name string) ([]byte, error) { method statFromFS (line 262) | func (f *files) statFromFS(name string) (fs.FileInfo, error) { method copyFromFS (line 268) | func (f *files) copyFromFS(src, dst string, rewrite bool) error { method copyFileFromFS (line 285) | func (f *files) copyFileFromFS(src, dst string, rewrite bool) error { method copyDirFromFS (line 333) | func (f *files) copyDirFromFS(src, dst string, rewrite bool) error { method listFromFS (line 361) | func (f *files) listFromFS(prefix string) ([]string, error) { function NewFiles (line 75) | func NewFiles() Files { FILE: backend/cmd/installer/files/files_test.go function newTestFiles (line 12) | func newTestFiles(linksDir string) Files { function TestNewFiles (line 18) | func TestNewFiles(t *testing.T) { function TestGetContent_FromFS (line 25) | func TestGetContent_FromFS(t *testing.T) { function TestExistsInFS (line 46) | func TestExistsInFS(t *testing.T) { function TestStat_FromFS (line 65) | func TestStat_FromFS(t *testing.T) { function TestCopy_File (line 88) | func TestCopy_File(t *testing.T) { function TestCopy_PreservesExecutable_FromFS (line 119) | func TestCopy_PreservesExecutable_FromFS(t *testing.T) { function TestCheck_DetectsPermissionMismatch_FromFS (line 162) | func TestCheck_DetectsPermissionMismatch_FromFS(t *testing.T) { function TestCopy_Directory (line 233) | func TestCopy_Directory(t *testing.T) { function TestCopy_WithoutRewrite (line 264) | func TestCopy_WithoutRewrite(t *testing.T) { function TestCopy_WithRewrite (line 291) | func TestCopy_WithRewrite(t *testing.T) { function TestExists_WithoutEmbedded (line 329) | func TestExists_WithoutEmbedded(t *testing.T) { function TestCopy_FromEmbedded (line 338) | func TestCopy_FromEmbedded(t *testing.T) { function TestCheck_Missing (line 376) | func TestCheck_Missing(t *testing.T) { function TestCheck_OK (line 394) | func TestCheck_OK(t *testing.T) { function TestCheck_Modified (line 418) | func TestCheck_Modified(t *testing.T) { function TestList (line 443) | func TestList(t *testing.T) { function TestList_NonExistentPrefix (line 482) | func TestList_NonExistentPrefix(t *testing.T) { function TestCheck_HashComparison_Embedded (line 501) | func TestCheck_HashComparison_Embedded(t *testing.T) { function TestCheck_HashComparison_SameSize_DifferentContent (line 522) | func TestCheck_HashComparison_SameSize_DifferentContent(t *testing.T) { function TestCheck_HashComparison_DifferentSize (line 556) | func TestCheck_HashComparison_DifferentSize(t *testing.T) { function setupTestLinksInDir (line 581) | func setupTestLinksInDir(t *testing.T, linksDir string) { function setupTestLinksWithDirInDir (line 595) | func setupTestLinksWithDirInDir(t *testing.T, linksDir string) { FILE: backend/cmd/installer/files/generate.go type FileMetadata (line 19) | type FileMetadata struct type MetadataFile (line 27) | type MetadataFile struct function main (line 31) | func main() { function readSymlinkWindows (line 765) | func readSymlinkWindows(symlinkPath string) (string, error) { function resolveSymlink (line 782) | func resolveSymlink(entryPath string) (string, error) { function evalSymlink (line 790) | func evalSymlink(entryPath string) (string, error) { function readFileContentWithMetadata (line 798) | func readFileContentWithMetadata(filename string) (string, FileMetadata,... FILE: backend/cmd/installer/hardening/hardening.go type HardeningArea (line 18) | type HardeningArea constant HardeningAreaPentagi (line 21) | HardeningAreaPentagi HardeningArea = "pentagi" constant HardeningAreaLangfuse (line 22) | HardeningAreaLangfuse HardeningArea = "langfuse" constant HardeningAreaGraphiti (line 23) | HardeningAreaGraphiti HardeningArea = "graphiti" type HardeningPolicyType (line 26) | type HardeningPolicyType constant HardeningPolicyTypeDefault (line 29) | HardeningPolicyTypeDefault HardeningPolicyType = "default" constant HardeningPolicyTypeHex (line 30) | HardeningPolicyTypeHex HardeningPolicyType = "hex" constant HardeningPolicyTypeUUID (line 31) | HardeningPolicyTypeUUID HardeningPolicyType = "uuid" constant HardeningPolicyTypeBoolTrue (line 32) | HardeningPolicyTypeBoolTrue HardeningPolicyType = "bool_true" constant HardeningPolicyTypeBoolFalse (line 33) | HardeningPolicyTypeBoolFalse HardeningPolicyType = "bool_false" type HardeningPolicy (line 36) | type HardeningPolicy struct function DoHardening (line 130) | func DoHardening(s state.State, c checker.CheckResult) error { function syncValueToState (line 210) | func syncValueToState(s state.State, curVar loader.EnvVar, newValue stri... function syncScraperState (line 222) | func syncScraperState(s state.State, vars map[string]loader.EnvVar) (boo... function syncLangfuseState (line 254) | func syncLangfuseState(s state.State, vars map[string]loader.EnvVar) (bo... function replaceDefaultValues (line 283) | func replaceDefaultValues( function updateDefaultValues (line 311) | func updateDefaultValues(vars map[string]loader.EnvVar) { function randomString (line 320) | func randomString(policy HardeningPolicy) (string, error) { function randStringAlpha (line 337) | func randStringAlpha(length int) (string, error) { function randStringHex (line 352) | func randStringHex(length int) (string, error) { function randStringUUID (line 364) | func randStringUUID(prefix string) (string, error) { FILE: backend/cmd/installer/hardening/hardening_test.go type mockState (line 17) | type mockState struct method GetVar (line 22) | func (m *mockState) GetVar(key string) (loader.EnvVar, bool) { method GetVars (line 29) | func (m *mockState) GetVars(names []string) (map[string]loader.EnvVar,... method GetEnvPath (line 44) | func (m *mockState) GetEnvPath() string { return m.e... method Exists (line 45) | func (m *mockState) Exists() bool { return true } method Reset (line 46) | func (m *mockState) Reset() error { return nil } method IsDirty (line 47) | func (m *mockState) IsDirty() bool { return fal... method GetEulaConsent (line 48) | func (m *mockState) GetEulaConsent() bool { return true } method SetEulaConsent (line 49) | func (m *mockState) SetEulaConsent() error { return nil } method SetStack (line 50) | func (m *mockState) SetStack(stack []string) error { return nil } method GetStack (line 51) | func (m *mockState) GetStack() []string { return []s... method ResetVar (line 52) | func (m *mockState) ResetVar(name string) error { return nil } method ResetVars (line 53) | func (m *mockState) ResetVars(names []string) error { return nil } method GetAllVars (line 54) | func (m *mockState) GetAllVars() map[string]loader.EnvVar { return m.v... method Commit (line 55) | func (m *mockState) Commit() error { return nil } method SetVar (line 57) | func (m *mockState) SetVar(name, value string) error { method SetVars (line 69) | func (m *mockState) SetVars(vars map[string]string) error { function getEnvExamplePath (line 79) | func getEnvExamplePath() string { function createTempEnvFile (line 87) | func createTempEnvFile(t *testing.T, content string) string { function TestRandomString (line 102) | func TestRandomString(t *testing.T) { function TestRandStringAlpha (line 168) | func TestRandStringAlpha(t *testing.T) { function TestRandStringHex (line 195) | func TestRandStringHex(t *testing.T) { function TestRandStringUUID (line 223) | func TestRandStringUUID(t *testing.T) { function TestUpdateDefaultValues (line 252) | func TestUpdateDefaultValues(t *testing.T) { function TestReplaceDefaultValues (line 309) | func TestReplaceDefaultValues(t *testing.T) { function TestSyncValueToState (line 398) | func TestSyncValueToState(t *testing.T) { function TestVarsExistInEnvExample (line 458) | func TestVarsExistInEnvExample(t *testing.T) { function TestDefaultValuesMatchEnvExample (line 482) | func TestDefaultValuesMatchEnvExample(t *testing.T) { function TestDoHardening (line 518) | func TestDoHardening(t *testing.T) { function TestDoHardening_ScraperURLLogic (line 718) | func TestDoHardening_ScraperURLLogic(t *testing.T) { function TestSyncLangfuseState (line 865) | func TestSyncLangfuseState(t *testing.T) { function TestSyncScraperState (line 1030) | func TestSyncScraperState(t *testing.T) { function TestDoHardening_IntegrationWithRealEnvFile (line 1243) | func TestDoHardening_IntegrationWithRealEnvFile(t *testing.T) { function validateHardenedValue (line 1471) | func validateHardenedValue(varName, value string) error { function verifyLangfuseSyncRelationships (line 1525) | func verifyLangfuseSyncRelationships(t *testing.T, state *mockState) { function verifyScraperURLConsistency (line 1542) | func verifyScraperURLConsistency(t *testing.T, state *mockState) { function isAlphanumeric (line 1565) | func isAlphanumeric(s string) bool { function isHexString (line 1574) | func isHexString(s string) bool { FILE: backend/cmd/installer/hardening/migrations.go type checkPathType (line 12) | type checkPathType constant directory (line 15) | directory checkPathType = "directory" constant file (line 16) | file checkPathType = "file" function DoMigrateSettings (line 19) | func DoMigrateSettings(s state.State) error { function checkPathInHostFS (line 74) | func checkPathInHostFS(path string, pathType checkPathType) bool { FILE: backend/cmd/installer/hardening/migrations_test.go function TestDoMigrateSettings_SuccessfulMigrations (line 14) | func TestDoMigrateSettings_SuccessfulMigrations(t *testing.T) { function TestDoMigrateSettings_VariableNotSet (line 121) | func TestDoMigrateSettings_VariableNotSet(t *testing.T) { function TestDoMigrateSettings_EmptyVariable (line 163) | func TestDoMigrateSettings_EmptyVariable(t *testing.T) { function TestDoMigrateSettings_PathNotExist (line 216) | func TestDoMigrateSettings_PathNotExist(t *testing.T) { function TestDoMigrateSettings_AlreadyDefaultValue (line 273) | func TestDoMigrateSettings_AlreadyDefaultValue(t *testing.T) { function TestDoMigrateSettings_EmbeddedConfigs (line 342) | func TestDoMigrateSettings_EmbeddedConfigs(t *testing.T) { function TestDoMigrateSettings_WrongPathType (line 404) | func TestDoMigrateSettings_WrongPathType(t *testing.T) { function TestDoMigrateSettings_ErrorHandling (line 488) | func TestDoMigrateSettings_ErrorHandling(t *testing.T) { function TestDoMigrateSettings_CombinedMigrations (line 610) | func TestDoMigrateSettings_CombinedMigrations(t *testing.T) { function TestCheckPathInHostFS (line 846) | func TestCheckPathInHostFS(t *testing.T) { FILE: backend/cmd/installer/hardening/network.go function DoSyncNetworkSettings (line 10) | func DoSyncNetworkSettings(s state.State) error { FILE: backend/cmd/installer/hardening/network_test.go type mockStateWithErrors (line 15) | type mockStateWithErrors struct method GetVar (line 22) | func (m *mockStateWithErrors) GetVar(key string) (loader.EnvVar, bool) { method GetVars (line 29) | func (m *mockStateWithErrors) GetVars(names []string) (map[string]load... method SetVar (line 44) | func (m *mockStateWithErrors) SetVar(name, value string) error { method SetVars (line 62) | func (m *mockStateWithErrors) SetVars(vars map[string]string) error { method GetEnvPath (line 75) | func (m *mockStateWithErrors) GetEnvPath() string { ... method Exists (line 76) | func (m *mockStateWithErrors) Exists() bool { ... method Reset (line 77) | func (m *mockStateWithErrors) Reset() error { ... method Commit (line 78) | func (m *mockStateWithErrors) Commit() error { ... method IsDirty (line 79) | func (m *mockStateWithErrors) IsDirty() bool { ... method GetEulaConsent (line 80) | func (m *mockStateWithErrors) GetEulaConsent() bool { ... method SetEulaConsent (line 81) | func (m *mockStateWithErrors) SetEulaConsent() error { ... method SetStack (line 82) | func (m *mockStateWithErrors) SetStack(stack []string) error { ... method GetStack (line 83) | func (m *mockStateWithErrors) GetStack() []string { ... method ResetVar (line 84) | func (m *mockStateWithErrors) ResetVar(name string) error { ... method ResetVars (line 85) | func (m *mockStateWithErrors) ResetVars(names []string) error { ... method GetAllVars (line 86) | func (m *mockStateWithErrors) GetAllVars() map[string]loader.EnvVar { ... function TestDoSyncNetworkSettings_ProxySettings (line 89) | func TestDoSyncNetworkSettings_ProxySettings(t *testing.T) { function TestDoSyncNetworkSettings_DockerEnvVars (line 222) | func TestDoSyncNetworkSettings_DockerEnvVars(t *testing.T) { function TestDoSyncNetworkSettings_CombinedScenarios (line 423) | func TestDoSyncNetworkSettings_CombinedScenarios(t *testing.T) { function TestDoSyncNetworkSettings_ErrorHandling (line 580) | func TestDoSyncNetworkSettings_ErrorHandling(t *testing.T) { function TestDoSyncNetworkSettings_EdgeCases (line 655) | func TestDoSyncNetworkSettings_EdgeCases(t *testing.T) { function TestDoSyncNetworkSettings_DockerCertPathMigration (line 768) | func TestDoSyncNetworkSettings_DockerCertPathMigration(t *testing.T) { function TestDoSyncNetworkSettings_PreventOverrideExistingSettings (line 894) | func TestDoSyncNetworkSettings_PreventOverrideExistingSettings(t *testin... FILE: backend/cmd/installer/loader/example_test.go function ExampleEnvFile_workflow (line 10) | func ExampleEnvFile_workflow() { FILE: backend/cmd/installer/loader/file.go type EnvVar (line 12) | type EnvVar struct method IsDefault (line 21) | func (e *EnvVar) IsDefault() bool { method IsPresent (line 25) | func (e *EnvVar) IsPresent() bool { type EnvFile (line 29) | type EnvFile interface type envFile (line 39) | type envFile struct method Del (line 46) | func (e *envFile) Del(name string) { method Set (line 53) | func (e *envFile) Set(name, value string) { method Get (line 74) | func (e *envFile) Get(name string) (EnvVar, bool) { method GetAll (line 88) | func (e *envFile) GetAll() map[string]EnvVar { method SetAll (line 100) | func (e *envFile) SetAll(vars map[string]EnvVar) { method Save (line 110) | func (e *envFile) Save(path string) error { method Clone (line 155) | func (e *envFile) Clone() EnvFile { method patchRaw (line 174) | func (e *envFile) patchRaw() { function trim (line 241) | func trim(value string) string { FILE: backend/cmd/installer/loader/loader.go function LoadEnvFile (line 17) | func LoadEnvFile(path string) (EnvFile, error) { function loadVars (line 44) | func loadVars(raw string) map[string]*EnvVar { function stripComments (line 74) | func stripComments(value string) string { function setDefaultVars (line 83) | func setDefaultVars(envFile *envFile) error { FILE: backend/cmd/installer/loader/loader_test.go function containsLine (line 11) | func containsLine(content, line string) bool { function TestLoadEnvFile (line 21) | func TestLoadEnvFile(t *testing.T) { function TestLoadEnvFileErrors (line 79) | func TestLoadEnvFileErrors(t *testing.T) { function TestEnvVarMethods (line 98) | func TestEnvVarMethods(t *testing.T) { function TestEnvFileSetGet (line 125) | func TestEnvFileSetGet(t *testing.T) { function TestEnvFileSave (line 288) | func TestEnvFileSave(t *testing.T) { function TestEnvFileSaveNewFile (line 351) | func TestEnvFileSaveNewFile(t *testing.T) { function TestEnvFileSaveErrors (line 381) | func TestEnvFileSaveErrors(t *testing.T) { function TestEnvFileClone (line 449) | func TestEnvFileClone(t *testing.T) { function TestLoadVarsEdgeCases (line 491) | func TestLoadVarsEdgeCases(t *testing.T) { function TestPatchRaw (line 547) | func TestPatchRaw(t *testing.T) { function TestEnvFileDelInSave (line 588) | func TestEnvFileDelInSave(t *testing.T) { function TestSetDefaultVarsNilURL (line 640) | func TestSetDefaultVarsNilURL(t *testing.T) { function TestSetDefaultVars (line 660) | func TestSetDefaultVars(t *testing.T) { function createTempFile (line 683) | func createTempFile(t *testing.T, content string) string { FILE: backend/cmd/installer/main.go type Config (line 21) | type Config struct function main (line 26) | func main() { function parseFlags (line 75) | func parseFlags(args []string) Config { function setupSignalHandler (line 101) | func setupSignalHandler(cancel context.CancelFunc) { function validateEnvPath (line 112) | func validateEnvPath(envPath string) (string, error) { function createInitialEnvFile (line 144) | func createInitialEnvFile(path string) error { function initializeState (line 167) | func initializeState(envPath string) (state.State, error) { function gatherSystemFacts (line 176) | func gatherSystemFacts(ctx context.Context, appState state.State) (check... function printStartupInfo (line 185) | func printStartupInfo(envPath string, checkResult checker.CheckResult) { function runApplication (line 196) | func runApplication(ctx context.Context, appState state.State, checkResu... function cleanup (line 200) | func cleanup(appState state.State) { FILE: backend/cmd/installer/main_test.go function TestParseFlags (line 11) | func TestParseFlags(t *testing.T) { function TestValidateEnvPath (line 58) | func TestValidateEnvPath(t *testing.T) { function TestCreateEmptyEnvFile (line 126) | func TestCreateEmptyEnvFile(t *testing.T) { function TestInitializeState (line 155) | func TestInitializeState(t *testing.T) { function containsString (line 184) | func containsString(s, substr string) bool { FILE: backend/cmd/installer/navigator/navigator.go type Navigator (line 12) | type Navigator interface type navigator (line 22) | type navigator struct method Push (line 63) | func (n *navigator) Push(screenID models.ScreenID) { method Pop (line 69) | func (n *navigator) Pop() models.ScreenID { method Current (line 82) | func (n *navigator) Current() models.ScreenID { method CanGoBack (line 89) | func (n *navigator) CanGoBack() bool { method GetStack (line 93) | func (n *navigator) GetStack() NavigatorStack { method String (line 97) | func (n *navigator) String() string { type NavigatorStack (line 27) | type NavigatorStack method Strings (line 29) | func (s NavigatorStack) Strings() []string { method String (line 37) | func (s NavigatorStack) String() string { function NewNavigator (line 41) | func NewNavigator(state state.State, checkResult checker.CheckResult) Na... FILE: backend/cmd/installer/navigator/navigator_test.go type mockState (line 13) | type mockState struct method Exists (line 17) | func (m *mockState) Exists() bool { return true } method Reset (line 18) | func (m *mockState) Reset() error { return nil } method Commit (line 19) | func (m *mockState) Commit() error { return nil } method IsDirty (line 20) | func (m *mockState) IsDirty() bool { return false } method GetEulaConsent (line 21) | func (m *mockState) GetEulaConsent() bool { return false } method SetEulaConsent (line 22) | func (m *mockState) SetEulaConsent() error { return nil } method GetStack (line 23) | func (m *mockState) GetStack() []string { return m.st... method SetStack (line 24) | func (m *mockState) SetStack(stack []string) error { m.stack = s... method GetVar (line 25) | func (m *mockState) GetVar(string) (loader.EnvVar, bool) { return load... method SetVar (line 26) | func (m *mockState) SetVar(string, string) error { return nil } method ResetVar (line 27) | func (m *mockState) ResetVar(string) error { return nil } method GetVars (line 28) | func (m *mockState) GetVars([]string) (map[string]loader.EnvVar, map[s... method SetVars (line 31) | func (m *mockState) SetVars(map[string]string) error { return nil } method ResetVars (line 32) | func (m *mockState) ResetVars([]string) error { return nil } method GetAllVars (line 33) | func (m *mockState) GetAllVars() map[string]loader.EnvVar { return nil } method GetEnvPath (line 34) | func (m *mockState) GetEnvPath() string { return "" } function newMockCheckResult (line 36) | func newMockCheckResult() checker.CheckResult { function newTestNavigator (line 52) | func newTestNavigator() (Navigator, *mockState) { function TestNewNavigator (line 58) | func TestNewNavigator(t *testing.T) { function TestPushSingleScreen (line 74) | func TestPushSingleScreen(t *testing.T) { function TestPushMultipleScreens (line 89) | func TestPushMultipleScreens(t *testing.T) { function TestCanGoBack (line 117) | func TestCanGoBack(t *testing.T) { function TestPopNormalCase (line 135) | func TestPopNormalCase(t *testing.T) { function TestPopEmptyStack (line 158) | func TestPopEmptyStack(t *testing.T) { function TestPopSingleScreen (line 172) | func TestPopSingleScreen(t *testing.T) { function TestCurrentEmptyStack (line 187) | func TestCurrentEmptyStack(t *testing.T) { function TestGetStack (line 195) | func TestGetStack(t *testing.T) { function TestNavigatorStackStrings (line 216) | func TestNavigatorStackStrings(t *testing.T) { function TestNavigatorStackString (line 231) | func TestNavigatorStackString(t *testing.T) { function TestNavigatorStackStringEmpty (line 242) | func TestNavigatorStackStringEmpty(t *testing.T) { function TestNavigatorString (line 253) | func TestNavigatorString(t *testing.T) { function TestComplexNavigationFlow (line 267) | func TestComplexNavigationFlow(t *testing.T) { function TestStateIntegrationWithExistingStack (line 306) | func TestStateIntegrationWithExistingStack(t *testing.T) { FILE: backend/cmd/installer/processor/compose.go constant composeFilePentagi (line 13) | composeFilePentagi = "docker-compose.yml" constant composeFileGraphiti (line 14) | composeFileGraphiti = "docker-compose-graphiti.yml" constant composeFileLangfuse (line 15) | composeFileLangfuse = "docker-compose-langfuse.yml" constant composeFileObservability (line 16) | composeFileObservability = "docker-compose-observability.yml" type composeOperationsImpl (line 28) | type composeOperationsImpl struct method startStack (line 37) | func (c *composeOperationsImpl) startStack(ctx context.Context, stack ... method stopStack (line 42) | func (c *composeOperationsImpl) stopStack(ctx context.Context, stack P... method restartStack (line 47) | func (c *composeOperationsImpl) restartStack(ctx context.Context, stac... method updateStack (line 63) | func (c *composeOperationsImpl) updateStack(ctx context.Context, stack... method downloadStack (line 67) | func (c *composeOperationsImpl) downloadStack(ctx context.Context, sta... method removeStack (line 71) | func (c *composeOperationsImpl) removeStack(ctx context.Context, stack... method purgeStack (line 75) | func (c *composeOperationsImpl) purgeStack(ctx context.Context, stack ... method purgeImagesStack (line 80) | func (c *composeOperationsImpl) purgeImagesStack(ctx context.Context, ... method performStackOperation (line 84) | func (c *composeOperationsImpl) performStackOperation( method wrapPerformStackCommand (line 117) | func (c *composeOperationsImpl) wrapPerformStackCommand( method performStackCommand (line 133) | func (c *composeOperationsImpl) performStackCommand( method determineComposeFile (line 166) | func (c *composeOperationsImpl) determineComposeFile(stack ProductStac... method getMessages (line 181) | func (c *composeOperationsImpl) getMessages(stack ProductStack, operat... function newComposeOperations (line 32) | func newComposeOperations(p *processor) composeOperations { FILE: backend/cmd/installer/processor/docker.go type dockerOperationsImpl (line 19) | type dockerOperationsImpl struct method pullWorkerImage (line 27) | func (d *dockerOperationsImpl) pullWorkerImage(ctx context.Context, st... method pullDefaultImage (line 31) | func (d *dockerOperationsImpl) pullDefaultImage(ctx context.Context, s... method pullImage (line 35) | func (d *dockerOperationsImpl) pullImage(ctx context.Context, state *o... method removeWorkerContainers (line 50) | func (d *dockerOperationsImpl) removeWorkerContainers(ctx context.Cont... method removeWorkerImages (line 102) | func (d *dockerOperationsImpl) removeWorkerImages(ctx context.Context,... method purgeWorkerImages (line 109) | func (d *dockerOperationsImpl) purgeWorkerImages(ctx context.Context, ... method removeImages (line 116) | func (d *dockerOperationsImpl) removeImages( method createMainDockerClient (line 148) | func (d *dockerOperationsImpl) createMainDockerClient() (*client.Clien... method checkMainDockerNetwork (line 156) | func (d *dockerOperationsImpl) checkMainDockerNetwork(ctx context.Cont... method createMainDockerNetwork (line 170) | func (d *dockerOperationsImpl) createMainDockerNetwork(ctx context.Con... method ensureMainDockerNetworks (line 229) | func (d *dockerOperationsImpl) ensureMainDockerNetworks(ctx context.Co... method removeMainDockerNetwork (line 258) | func (d *dockerOperationsImpl) removeMainDockerNetwork(ctx context.Con... method removeMainImages (line 288) | func (d *dockerOperationsImpl) removeMainImages(ctx context.Context, s... method removeWorkerVolumes (line 315) | func (d *dockerOperationsImpl) removeWorkerVolumes(ctx context.Context... method createWorkerDockerClient (line 334) | func (d *dockerOperationsImpl) createWorkerDockerClient() (*client.Cli... method getWorkerDockerEnv (line 377) | func (d *dockerOperationsImpl) getWorkerDockerEnv() []string { method getWorkerImageName (line 410) | func (d *dockerOperationsImpl) getWorkerImageName() string { method getDefaultImageName (line 421) | func (d *dockerOperationsImpl) getDefaultImageName() string { function newDockerOperations (line 23) | func newDockerOperations(p *processor) dockerOperations { FILE: backend/cmd/installer/processor/fs.go constant observabilityDirectory (line 17) | observabilityDirectory = "observability" constant pentagiExampleCustomConfigLLM (line 18) | pentagiExampleCustomConfigLLM = "example.custom.provider.yml" constant pentagiExampleOllamaConfigLLM (line 19) | pentagiExampleOllamaConfigLLM = "example.ollama.provider.yml" type fileSystemOperationsImpl (line 36) | type fileSystemOperationsImpl struct method ensureStackIntegrity (line 44) | func (fs *fileSystemOperationsImpl) ensureStackIntegrity(ctx context.C... method verifyStackIntegrity (line 80) | func (fs *fileSystemOperationsImpl) verifyStackIntegrity(ctx context.C... method checkStackIntegrity (line 115) | func (fs *fileSystemOperationsImpl) checkStackIntegrity(ctx context.Co... method cleanupStackFiles (line 153) | func (fs *fileSystemOperationsImpl) cleanupStackFiles(ctx context.Cont... method ensureFileFromEmbed (line 198) | func (fs *fileSystemOperationsImpl) ensureFileFromEmbed(filename strin... method ensureDirectoryFromEmbed (line 216) | func (fs *fileSystemOperationsImpl) ensureDirectoryFromEmbed(dirname s... method checkFileIntegrity (line 233) | func (fs *fileSystemOperationsImpl) checkFileIntegrity(filename string... method checkDirectoryIntegrity (line 238) | func (fs *fileSystemOperationsImpl) checkDirectoryIntegrity(dirname st... method checkDirectoryContentIntegrity (line 244) | func (fs *fileSystemOperationsImpl) checkDirectoryContentIntegrity(emb... method verifyFileIntegrity (line 278) | func (fs *fileSystemOperationsImpl) verifyFileIntegrity(filename strin... method verifyDirectoryIntegrity (line 301) | func (fs *fileSystemOperationsImpl) verifyDirectoryIntegrity(dirname s... method verifyDirectoryContentIntegrity (line 319) | func (fs *fileSystemOperationsImpl) verifyDirectoryContentIntegrity(em... method isExcludedFromVerification (line 395) | func (fs *fileSystemOperationsImpl) isExcludedFromVerification(path st... method fileExists (line 405) | func (fs *fileSystemOperationsImpl) fileExists(path string) bool { method directoryExists (line 410) | func (fs *fileSystemOperationsImpl) directoryExists(path string) bool { method validateYamlFile (line 415) | func (fs *fileSystemOperationsImpl) validateYamlFile(path string) error { function newFileSystemOperations (line 40) | func newFileSystemOperations(p *processor) fileSystemOperations { FILE: backend/cmd/installer/processor/fs_test.go function testStackIntegrityOperation (line 14) | func testStackIntegrityOperation(t *testing.T, operation func(*fileSyste... function TestFileSystemOperationsImpl_EnsureStackIntegrity (line 48) | func TestFileSystemOperationsImpl_EnsureStackIntegrity(t *testing.T) { function TestFileSystemOperationsImpl_VerifyStackIntegrity (line 52) | func TestFileSystemOperationsImpl_VerifyStackIntegrity(t *testing.T) { function TestFileSystemOperationsImpl_CleanupStackFiles (line 56) | func TestFileSystemOperationsImpl_CleanupStackFiles(t *testing.T) { function TestFileSystemOperationsImpl_EnsureFileFromEmbed (line 60) | func TestFileSystemOperationsImpl_EnsureFileFromEmbed(t *testing.T) { function TestFileSystemOperationsImpl_VerifyDirectoryContentIntegrity (line 120) | func TestFileSystemOperationsImpl_VerifyDirectoryContentIntegrity(t *tes... function TestFileSystemOperationsImpl_ExcludedFilesHandling (line 232) | func TestFileSystemOperationsImpl_ExcludedFilesHandling(t *testing.T) { function TestFileSystemOperationsImpl_FileExists (line 340) | func TestFileSystemOperationsImpl_FileExists(t *testing.T) { function TestFileSystemOperationsImpl_DirectoryExists (line 373) | func TestFileSystemOperationsImpl_DirectoryExists(t *testing.T) { function TestFileSystemOperationsImpl_ValidateYamlFile (line 406) | func TestFileSystemOperationsImpl_ValidateYamlFile(t *testing.T) { function TestCheckStackIntegrity (line 463) | func TestCheckStackIntegrity(t *testing.T) { function TestCheckStackIntegrity_RealFiles (line 606) | func TestCheckStackIntegrity_RealFiles(t *testing.T) { function TestFileSystemOperations_IntegrityWithForceMode (line 648) | func TestFileSystemOperations_IntegrityWithForceMode(t *testing.T) { function TestFileSystemOperations_StackSpecificBehavior (line 682) | func TestFileSystemOperations_StackSpecificBehavior(t *testing.T) { FILE: backend/cmd/installer/processor/locale.go constant MsgPullingImage (line 5) | MsgPullingImage = "Pulling image: %s" constant MsgImagePullCompleted (line 6) | MsgImagePullCompleted = "Completed pulling %s" constant MsgImagePullFailed (line 7) | MsgImagePullFailed = "Failed to pull image %s: %v" constant MsgRemovingWorkerContainers (line 8) | MsgRemovingWorkerContainers = "Removing worker containers" constant MsgStoppingContainer (line 9) | MsgStoppingContainer = "Stopping container %s" constant MsgRemovingContainer (line 10) | MsgRemovingContainer = "Removing container %s" constant MsgContainerRemoved (line 11) | MsgContainerRemoved = "Removed container %s" constant MsgNoWorkerContainersFound (line 12) | MsgNoWorkerContainersFound = "No worker containers found" constant MsgWorkerContainersRemoved (line 13) | MsgWorkerContainersRemoved = "Removed %d worker containers" constant MsgRemovingImage (line 14) | MsgRemovingImage = "Removing image: %s" constant MsgImageRemoved (line 15) | MsgImageRemoved = "Successfully removed image %s" constant MsgImageNotFound (line 16) | MsgImageNotFound = "Image %s not found (already removed)" constant MsgWorkerImagesRemoveCompleted (line 17) | MsgWorkerImagesRemoveCompleted = "Worker images removal completed" constant MsgEnsuringDockerNetworks (line 18) | MsgEnsuringDockerNetworks = "Ensuring docker networks exist" constant MsgDockerNetworkExists (line 19) | MsgDockerNetworkExists = "Docker network exists: %s" constant MsgCreatingDockerNetwork (line 20) | MsgCreatingDockerNetwork = "Creating docker network: %s" constant MsgDockerNetworkCreated (line 21) | MsgDockerNetworkCreated = "Docker network created: %s" constant MsgDockerNetworkCreateFailed (line 22) | MsgDockerNetworkCreateFailed = "Failed to create docker network %s: %v" constant MsgRecreatingDockerNetwork (line 23) | MsgRecreatingDockerNetwork = "Recreating docker network with compose... constant MsgDockerNetworkRemoved (line 24) | MsgDockerNetworkRemoved = "Docker network removed: %s" constant MsgDockerNetworkRemoveFailed (line 25) | MsgDockerNetworkRemoveFailed = "Failed to remove docker network %s: %v" constant MsgDockerNetworkInUse (line 26) | MsgDockerNetworkInUse = "Docker network %s is in use by contain... constant MsgExtractingDockerCompose (line 31) | MsgExtractingDockerCompose = "Extracting docker-compose.yml" constant MsgExtractingLangfuseCompose (line 32) | MsgExtractingLangfuseCompose = "Extracting docker-compose-langfus... constant MsgExtractingObservabilityCompose (line 33) | MsgExtractingObservabilityCompose = "Extracting docker-compose-observa... constant MsgExtractingObservabilityDirectory (line 34) | MsgExtractingObservabilityDirectory = "Extracting observability directory" constant MsgSkippingExternalLangfuse (line 35) | MsgSkippingExternalLangfuse = "Skipping external Langfuse deploy... constant MsgSkippingExternalObservability (line 36) | MsgSkippingExternalObservability = "Skipping external Observability d... constant MsgPatchingComposeFile (line 37) | MsgPatchingComposeFile = "Patching docker-compose file: %s" constant MsgComposePatchCompleted (line 38) | MsgComposePatchCompleted = "Docker-compose file patching comp... constant MsgCleaningUpStackFiles (line 39) | MsgCleaningUpStackFiles = "Cleaning up stack files for %s" constant MsgStackFilesCleanupCompleted (line 40) | MsgStackFilesCleanupCompleted = "Stack files cleanup completed" constant MsgEnsurngStackIntegrity (line 41) | MsgEnsurngStackIntegrity = "Ensuring %s stack integrity" constant MsgVerifyingStackIntegrity (line 42) | MsgVerifyingStackIntegrity = "Verifying %s stack integrity" constant MsgStackIntegrityVerified (line 43) | MsgStackIntegrityVerified = "Stack %s integrity verified" constant MsgUpdatingExistingFile (line 44) | MsgUpdatingExistingFile = "Updating existing file: %s" constant MsgCreatingMissingFile (line 45) | MsgCreatingMissingFile = "Creating missing file: %s" constant MsgFileIntegrityValid (line 46) | MsgFileIntegrityValid = "File integrity valid: %s" constant MsgSkippingModifiedFile (line 47) | MsgSkippingModifiedFile = "Skipping modified files: %s" constant MsgDirectoryCheckedWithModified (line 48) | MsgDirectoryCheckedWithModified = "Directory checked with modified f... constant MsgCheckingUpdates (line 53) | MsgCheckingUpdates = "Checking for updates" constant MsgDownloadingInstaller (line 54) | MsgDownloadingInstaller = "Downloading installer update" constant MsgInstallerDownloadCompleted (line 55) | MsgInstallerDownloadCompleted = "Installer download completed" constant MsgUpdatingInstaller (line 56) | MsgUpdatingInstaller = "Updating installer" constant MsgRemovingInstaller (line 57) | MsgRemovingInstaller = "Removing installer" constant MsgInstallerUpdateCompleted (line 58) | MsgInstallerUpdateCompleted = "Installer update completed" constant MsgVerifyingBinaryChecksum (line 59) | MsgVerifyingBinaryChecksum = "Verifying binary checksum" constant MsgReplacingInstallerBinary (line 60) | MsgReplacingInstallerBinary = "Replacing installer binary" constant MsgRemovingStack (line 65) | MsgRemovingStack = "Removing stack: %s" constant MsgStackRemovalCompleted (line 66) | MsgStackRemovalCompleted = "Stack removal completed for %s" constant MsgPurgingStack (line 67) | MsgPurgingStack = "Purging stack: %s" constant MsgStackPurgeCompleted (line 68) | MsgStackPurgeCompleted = "Stack purge completed for %s" constant MsgExecutingDockerCompose (line 69) | MsgExecutingDockerCompose = "Executing docker-compose command: %s" constant MsgDockerComposeCompleted (line 70) | MsgDockerComposeCompleted = "Docker-compose command completed" constant MsgFactoryResetStarting (line 71) | MsgFactoryResetStarting = "Starting factory reset" constant MsgFactoryResetCompleted (line 72) | MsgFactoryResetCompleted = "Factory reset completed" constant MsgRestoringDefaultEnv (line 73) | MsgRestoringDefaultEnv = "Restoring default .env from embedded" constant MsgDefaultEnvRestored (line 74) | MsgDefaultEnvRestored = "Default .env restored" type Subsystem (line 77) | type Subsystem constant SubsystemDocker (line 80) | SubsystemDocker Subsystem = "docker" constant SubsystemCompose (line 81) | SubsystemCompose Subsystem = "compose" constant SubsystemFileSystem (line 82) | SubsystemFileSystem Subsystem = "file-system" constant SubsystemUpdate (line 83) | SubsystemUpdate Subsystem = "update" type SubsystemOperationMessage (line 86) | type SubsystemOperationMessage struct FILE: backend/cmd/installer/processor/logic.go constant minTerminalWidthForCompose (line 19) | minTerminalWidthForCompose = 56 method validateOperation (line 23) | func (p *processor) validateOperation(stack ProductStack, operation Proc... method isEmbeddedDeployment (line 48) | func (p *processor) isEmbeddedDeployment(stack ProductStack) bool { method runCommand (line 90) | func (p *processor) runCommand(cmd *exec.Cmd, stack ProductStack, state ... method appendLog (line 122) | func (p *processor) appendLog(msg string, stack ProductStack, state *ope... method isFileExists (line 131) | func (p *processor) isFileExists(path string) error { method applyChanges (line 143) | func (p *processor) applyChanges(ctx context.Context, state *operationSt... method applyObservabilityChanges (line 202) | func (p *processor) applyObservabilityChanges(ctx context.Context, state... method applyLangfuseChanges (line 239) | func (p *processor) applyLangfuseChanges(ctx context.Context, state *ope... method applyGraphitiChanges (line 276) | func (p *processor) applyGraphitiChanges(ctx context.Context, state *ope... method applyPentagiChanges (line 313) | func (p *processor) applyPentagiChanges(ctx context.Context, state *oper... method checkFiles (line 343) | func (p *processor) checkFiles( method factoryReset (line 384) | func (p *processor) factoryReset(ctx context.Context, state *operationSt... method install (line 440) | func (p *processor) install(ctx context.Context, state *operationState) ... method update (line 494) | func (p *processor) update(ctx context.Context, stack ProductStack, stat... method download (line 591) | func (p *processor) download(ctx context.Context, stack ProductStack, st... method remove (line 657) | func (p *processor) remove(ctx context.Context, stack ProductStack, stat... method purge (line 728) | func (p *processor) purge(ctx context.Context, stack ProductStack, state... method start (line 813) | func (p *processor) start(ctx context.Context, stack ProductStack, state... method stop (line 832) | func (p *processor) stop(ctx context.Context, stack ProductStack, state ... method restart (line 851) | func (p *processor) restart(ctx context.Context, stack ProductStack, sta... method resetPassword (line 870) | func (p *processor) resetPassword(ctx context.Context, stack ProductStac... FILE: backend/cmd/installer/processor/logic_test.go function newProcessorForLogicTests (line 15) | func newProcessorForLogicTests(t *testing.T) (*processor, *baseMockCompo... function newProcessorForLogicTestsWithConfig (line 33) | func newProcessorForLogicTestsWithConfig(t *testing.T, configFunc func(*... function injectComposeError (line 56) | func injectComposeError(p *processor, errorMethods map[string]error) { function injectDockerError (line 64) | func injectDockerError(p *processor, errorMethods map[string]error) { function injectFSError (line 72) | func injectFSError(p *processor, errorMethods map[string]error) { function testStackOperation (line 80) | func testStackOperation(t *testing.T, function TestStart (line 118) | func TestStart(t *testing.T) { function TestStop (line 122) | func TestStop(t *testing.T) { function TestRestart (line 126) | func TestRestart(t *testing.T) { function TestUpdate (line 130) | func TestUpdate(t *testing.T) { function TestRemove (line 324) | func TestRemove(t *testing.T) { function TestApplyChanges_ErrorPropagation_FromEnsureNetworks (line 328) | func TestApplyChanges_ErrorPropagation_FromEnsureNetworks(t *testing.T) { function TestPurge_StrictAndDockerCleanup (line 348) | func TestPurge_StrictAndDockerCleanup(t *testing.T) { function TestApplyChanges_Embedded_AllStacksUpdated (line 382) | func TestApplyChanges_Embedded_AllStacksUpdated(t *testing.T) { function TestApplyChanges_Disabled_RemovesInstalled (line 436) | func TestApplyChanges_Disabled_RemovesInstalled(t *testing.T) { function TestDownload_ComposeStacks (line 469) | func TestDownload_ComposeStacks(t *testing.T) { function TestDownload_AllStacks (line 506) | func TestDownload_AllStacks(t *testing.T) { function TestDownload_WorkerStack (line 543) | func TestDownload_WorkerStack(t *testing.T) { function TestDownload_InvalidStack (line 557) | func TestDownload_InvalidStack(t *testing.T) { function TestValidateOperation_ErrorCases (line 566) | func TestValidateOperation_ErrorCases(t *testing.T) { function TestIsEmbeddedDeployment (line 602) | func TestIsEmbeddedDeployment(t *testing.T) { function TestFactoryReset_FullSequence (line 644) | func TestFactoryReset_FullSequence(t *testing.T) { function TestApplyChanges_StateMachine_PhaseErrors (line 671) | func TestApplyChanges_StateMachine_PhaseErrors(t *testing.T) { function TestApplyChanges_CleanState_NoOp (line 754) | func TestApplyChanges_CleanState_NoOp(t *testing.T) { function TestInstall_FullScenario (line 777) | func TestInstall_FullScenario(t *testing.T) { function TestPreviewFilesStatus_Behavior (line 860) | func TestPreviewFilesStatus_Behavior(t *testing.T) { function TestDownload_EdgeCases (line 925) | func TestDownload_EdgeCases(t *testing.T) { function TestPurge_AllStacks_Detailed (line 954) | func TestPurge_AllStacks_Detailed(t *testing.T) { function TestRemove_PreservesData (line 1005) | func TestRemove_PreservesData(t *testing.T) { function TestApplyChanges_ComplexScenarios (line 1046) | func TestApplyChanges_ComplexScenarios(t *testing.T) { FILE: backend/cmd/installer/processor/mock_test.go type mockState (line 21) | type mockState struct method Exists (line 41) | func (m *mockState) Exists() bool { return... method Reset (line 42) | func (m *mockState) Reset() error { m.dirt... method Commit (line 43) | func (m *mockState) Commit() error { m.dirt... method IsDirty (line 44) | func (m *mockState) IsDirty() bool { return... method GetEulaConsent (line 45) | func (m *mockState) GetEulaConsent() bool { return... method SetEulaConsent (line 46) | func (m *mockState) SetEulaConsent() error { return... method SetStack (line 47) | func (m *mockState) SetStack(stack []string) error { m.stac... method GetStack (line 48) | func (m *mockState) GetStack() []string { return... method GetVar (line 49) | func (m *mockState) GetVar(name string) (loader.EnvVar, bool) { v, ok ... method SetVar (line 50) | func (m *mockState) SetVar(name, value string) error { method ResetVar (line 55) | func (m *mockState) ResetVar(name string) error { delete(m.vars, name)... method GetVars (line 56) | func (m *mockState) GetVars(names []string) (map[string]loader.EnvVar,... method SetVars (line 66) | func (m *mockState) SetVars(vars map[string]string) error { method ResetVars (line 73) | func (m *mockState) ResetVars(names []string) error { method GetAllVars (line 79) | func (m *mockState) GetAllVars() map[string]loader.EnvVar { return m.v... method GetEnvPath (line 80) | func (m *mockState) GetEnvPath() string { return m.e... function newMockState (line 28) | func newMockState() *mockState { type mockFiles (line 83) | type mockFiles struct method GetContent (line 101) | func (m *mockFiles) GetContent(name string) ([]byte, error) { method Exists (line 108) | func (m *mockFiles) Exists(name string) bool { method ExistsInFS (line 119) | func (m *mockFiles) ExistsInFS(name string) bool { method Stat (line 123) | func (m *mockFiles) Stat(name string) (fs.FileInfo, error) { method Copy (line 135) | func (m *mockFiles) Copy(src, dst string, rewrite bool) error { method Check (line 144) | func (m *mockFiles) Check(name string, workingDir string) files.FileSt... method List (line 152) | func (m *mockFiles) List(prefix string) ([]string, error) { method AddFile (line 160) | func (m *mockFiles) AddFile(name string, content []byte) { function newMockFiles (line 93) | func newMockFiles() *mockFiles { type mockFileInfo (line 165) | type mockFileInfo struct method Name (line 170) | func (m *mockFileInfo) Name() string { return m.name } method Size (line 171) | func (m *mockFileInfo) Size() int64 { return 100 } method Mode (line 172) | func (m *mockFileInfo) Mode() fs.FileMode { return 0644 } method ModTime (line 173) | func (m *mockFileInfo) ModTime() time.Time { return time.Now() } method IsDir (line 174) | func (m *mockFileInfo) IsDir() bool { return m.isDir } method Sys (line 175) | func (m *mockFileInfo) Sys() interface{} { return nil } type call (line 178) | type call struct type baseMockFileSystemOperations (line 187) | type baseMockFileSystemOperations struct method record (line 200) | func (m *baseMockFileSystemOperations) record(method string, stack Pro... method checkError (line 207) | func (m *baseMockFileSystemOperations) checkError(method string, stack... method getCalls (line 222) | func (m *baseMockFileSystemOperations) getCalls() []call { method setError (line 230) | func (m *baseMockFileSystemOperations) setError(method string, err err... method ensureStackIntegrity (line 239) | func (m *baseMockFileSystemOperations) ensureStackIntegrity(ctx contex... method verifyStackIntegrity (line 247) | func (m *baseMockFileSystemOperations) verifyStackIntegrity(ctx contex... method checkStackIntegrity (line 255) | func (m *baseMockFileSystemOperations) checkStackIntegrity(ctx context... method cleanupStackFiles (line 265) | func (m *baseMockFileSystemOperations) cleanupStackFiles(ctx context.C... function newBaseMockFileSystemOperations (line 193) | func newBaseMockFileSystemOperations() *baseMockFileSystemOperations { type baseMockDockerOperations (line 274) | type baseMockDockerOperations struct method record (line 287) | func (m *baseMockDockerOperations) record(method string, name string, ... method checkError (line 294) | func (m *baseMockDockerOperations) checkError(method string) error { method getCalls (line 303) | func (m *baseMockDockerOperations) getCalls() []call { method setError (line 311) | func (m *baseMockDockerOperations) setError(method string, err error) { method pullWorkerImage (line 320) | func (m *baseMockDockerOperations) pullWorkerImage(ctx context.Context... method pullDefaultImage (line 328) | func (m *baseMockDockerOperations) pullDefaultImage(ctx context.Contex... method removeWorkerContainers (line 336) | func (m *baseMockDockerOperations) removeWorkerContainers(ctx context.... method removeWorkerImages (line 344) | func (m *baseMockDockerOperations) removeWorkerImages(ctx context.Cont... method purgeWorkerImages (line 352) | func (m *baseMockDockerOperations) purgeWorkerImages(ctx context.Conte... method ensureMainDockerNetworks (line 360) | func (m *baseMockDockerOperations) ensureMainDockerNetworks(ctx contex... method removeMainDockerNetwork (line 368) | func (m *baseMockDockerOperations) removeMainDockerNetwork(ctx context... method removeMainImages (line 376) | func (m *baseMockDockerOperations) removeMainImages(ctx context.Contex... method removeWorkerVolumes (line 384) | func (m *baseMockDockerOperations) removeWorkerVolumes(ctx context.Con... function newBaseMockDockerOperations (line 280) | func newBaseMockDockerOperations() *baseMockDockerOperations { type baseMockComposeOperations (line 393) | type baseMockComposeOperations struct method record (line 406) | func (m *baseMockComposeOperations) record(method string, stack Produc... method checkError (line 413) | func (m *baseMockComposeOperations) checkError(method string) error { method getCalls (line 424) | func (m *baseMockComposeOperations) getCalls() []call { method setError (line 432) | func (m *baseMockComposeOperations) setError(method string, err error) { method startStack (line 445) | func (m *baseMockComposeOperations) startStack(ctx context.Context, st... method stopStack (line 453) | func (m *baseMockComposeOperations) stopStack(ctx context.Context, sta... method restartStack (line 461) | func (m *baseMockComposeOperations) restartStack(ctx context.Context, ... method updateStack (line 469) | func (m *baseMockComposeOperations) updateStack(ctx context.Context, s... method downloadStack (line 477) | func (m *baseMockComposeOperations) downloadStack(ctx context.Context,... method removeStack (line 485) | func (m *baseMockComposeOperations) removeStack(ctx context.Context, s... method purgeStack (line 493) | func (m *baseMockComposeOperations) purgeStack(ctx context.Context, st... method purgeImagesStack (line 501) | func (m *baseMockComposeOperations) purgeImagesStack(ctx context.Conte... method determineComposeFile (line 509) | func (m *baseMockComposeOperations) determineComposeFile(stack Product... method performStackCommand (line 518) | func (m *baseMockComposeOperations) performStackCommand(ctx context.Co... function newBaseMockComposeOperations (line 399) | func newBaseMockComposeOperations() *baseMockComposeOperations { type baseMockUpdateOperations (line 527) | type baseMockUpdateOperations struct method record (line 540) | func (m *baseMockUpdateOperations) record(method string, err error) er... method checkError (line 547) | func (m *baseMockUpdateOperations) checkError(method string) error { method getCalls (line 556) | func (m *baseMockUpdateOperations) getCalls() []call { method setError (line 564) | func (m *baseMockUpdateOperations) setError(method string, err error) { method checkUpdates (line 573) | func (m *baseMockUpdateOperations) checkUpdates(ctx context.Context, s... method downloadInstaller (line 582) | func (m *baseMockUpdateOperations) downloadInstaller(ctx context.Conte... method updateInstaller (line 590) | func (m *baseMockUpdateOperations) updateInstaller(ctx context.Context... method removeInstaller (line 598) | func (m *baseMockUpdateOperations) removeInstaller(ctx context.Context... function newBaseMockUpdateOperations (line 533) | func newBaseMockUpdateOperations() *baseMockUpdateOperations { function testState (line 607) | func testState(t *testing.T) *mockState { function defaultCheckResult (line 621) | func defaultCheckResult() *checker.CheckResult { function createCheckResultWithHandler (line 659) | func createCheckResultWithHandler(handler *mockCheckHandler) *checker.Ch... type defaultStateHandler (line 666) | type defaultStateHandler struct method GatherAllInfo (line 671) | func (h *defaultStateHandler) GatherAllInfo(ctx context.Context, c *ch... method GatherDockerInfo (line 681) | func (h *defaultStateHandler) GatherDockerInfo(ctx context.Context, c ... method GatherWorkerInfo (line 688) | func (h *defaultStateHandler) GatherWorkerInfo(ctx context.Context, c ... method GatherPentagiInfo (line 695) | func (h *defaultStateHandler) GatherPentagiInfo(ctx context.Context, c... method GatherGraphitiInfo (line 702) | func (h *defaultStateHandler) GatherGraphitiInfo(ctx context.Context, ... method GatherLangfuseInfo (line 709) | func (h *defaultStateHandler) GatherLangfuseInfo(ctx context.Context, ... method GatherObservabilityInfo (line 716) | func (h *defaultStateHandler) GatherObservabilityInfo(ctx context.Cont... method GatherSystemInfo (line 723) | func (h *defaultStateHandler) GatherSystemInfo(ctx context.Context, c ... method GatherUpdatesInfo (line 730) | func (h *defaultStateHandler) GatherUpdatesInfo(ctx context.Context, c... function createTestProcessor (line 738) | func createTestProcessor() *processor { function createProcessorWithState (line 744) | func createProcessorWithState(state *mockState, checkResult *checker.Che... type stackTestCase (line 784) | type stackTestCase struct function generateStackTestCases (line 792) | func generateStackTestCases(operation ProcessorOperation) []stackTestCase { function testOperationState (line 835) | func testOperationState(t *testing.T) *operationState { function assertNoError (line 841) | func assertNoError(t *testing.T, err error) { function assertError (line 849) | func assertError(t *testing.T, err error, expectErr bool, expectedMsg st... type mockCheckHandler (line 865) | type mockCheckHandler struct method setConfig (line 956) | func (m *mockCheckHandler) setConfig(config mockCheckConfig) { method setGatherError (line 962) | func (m *mockCheckHandler) setGatherError(err error) { method getCalls (line 968) | func (m *mockCheckHandler) getCalls() []string { method recordCall (line 976) | func (m *mockCheckHandler) recordCall(method string) { method GatherAllInfo (line 982) | func (m *mockCheckHandler) GatherAllInfo(ctx context.Context, c *check... method GatherDockerInfo (line 1018) | func (m *mockCheckHandler) GatherDockerInfo(ctx context.Context, c *ch... method GatherWorkerInfo (line 1038) | func (m *mockCheckHandler) GatherWorkerInfo(ctx context.Context, c *ch... method GatherPentagiInfo (line 1053) | func (m *mockCheckHandler) GatherPentagiInfo(ctx context.Context, c *c... method GatherGraphitiInfo (line 1070) | func (m *mockCheckHandler) GatherGraphitiInfo(ctx context.Context, c *... method GatherLangfuseInfo (line 1088) | func (m *mockCheckHandler) GatherLangfuseInfo(ctx context.Context, c *... method GatherObservabilityInfo (line 1106) | func (m *mockCheckHandler) GatherObservabilityInfo(ctx context.Context... method GatherSystemInfo (line 1124) | func (m *mockCheckHandler) GatherSystemInfo(ctx context.Context, c *ch... method GatherUpdatesInfo (line 1141) | func (m *mockCheckHandler) GatherUpdatesInfo(ctx context.Context, c *c... type mockCheckConfig (line 873) | type mockCheckConfig struct function newMockCheckHandler (line 928) | func newMockCheckHandler() *mockCheckHandler { function TestMockCheckHandler_BasicFunctionality (line 1162) | func TestMockCheckHandler_BasicFunctionality(t *testing.T) { function TestMockCheckHandler_CustomConfiguration (line 1201) | func TestMockCheckHandler_CustomConfiguration(t *testing.T) { function TestMockCheckHandler_ErrorInjection (line 1237) | func TestMockCheckHandler_ErrorInjection(t *testing.T) { function TestMockCheckHandler_GatherAllInfo (line 1265) | func TestMockCheckHandler_GatherAllInfo(t *testing.T) { function TestMockOperations_CallAccumulation (line 1317) | func TestMockOperations_CallAccumulation(t *testing.T) { function TestMockOperations_ErrorIsolation (line 1376) | func TestMockOperations_ErrorIsolation(t *testing.T) { function TestMockState_ComplexOperations (line 1418) | func TestMockState_ComplexOperations(t *testing.T) { function TestMockFiles_ComplexOperations (line 1500) | func TestMockFiles_ComplexOperations(t *testing.T) { function TestMockOperations_ConcurrentAccess (line 1598) | func TestMockOperations_ConcurrentAccess(t *testing.T) { function TestMockState_EdgeCases (line 1667) | func TestMockState_EdgeCases(t *testing.T) { function TestMockFiles_EdgeCases (line 1713) | func TestMockFiles_EdgeCases(t *testing.T) { function TestMockCheckHandler_CompleteScenarios (line 1752) | func TestMockCheckHandler_CompleteScenarios(t *testing.T) { type mockCtxStateFunc (line 1826) | type mockCtxStateFunc type mockCtxStackStateFunc (line 1827) | type mockCtxStackStateFunc type mockBaseTest (line 1829) | type mockBaseTest struct function TestBaseMockFileSystemOperations (line 1835) | func TestBaseMockFileSystemOperations(t *testing.T) { function TestBaseMockDockerOperations (line 1883) | func TestBaseMockDockerOperations(t *testing.T) { function TestBaseMockDockerOperations_WithParameters (line 1941) | func TestBaseMockDockerOperations_WithParameters(t *testing.T) { function TestBaseMockComposeOperations (line 1985) | func TestBaseMockComposeOperations(t *testing.T) { function TestBaseMockComposeOperations_SpecialMethods (line 2060) | func TestBaseMockComposeOperations_SpecialMethods(t *testing.T) { function TestBaseMockUpdateOperations (line 2110) | func TestBaseMockUpdateOperations(t *testing.T) { FILE: backend/cmd/installer/processor/model.go type processorModel (line 15) | type processorModel struct method ApplyChanges (line 85) | func (pm *processorModel) ApplyChanges(ctx context.Context, opts ...Op... method CheckFiles (line 92) | func (pm *processorModel) CheckFiles(ctx context.Context, stack Produc... method FactoryReset (line 100) | func (pm *processorModel) FactoryReset(ctx context.Context, opts ...Op... method Install (line 107) | func (pm *processorModel) Install(ctx context.Context, opts ...Operati... method Update (line 114) | func (pm *processorModel) Update(ctx context.Context, stack ProductSta... method Download (line 121) | func (pm *processorModel) Download(ctx context.Context, stack ProductS... method Remove (line 128) | func (pm *processorModel) Remove(ctx context.Context, stack ProductSta... method Purge (line 135) | func (pm *processorModel) Purge(ctx context.Context, stack ProductStac... method Start (line 142) | func (pm *processorModel) Start(ctx context.Context, stack ProductStac... method Stop (line 149) | func (pm *processorModel) Stop(ctx context.Context, stack ProductStack... method Restart (line 156) | func (pm *processorModel) Restart(ctx context.Context, stack ProductSt... method ResetPassword (line 163) | func (pm *processorModel) ResetPassword(ctx context.Context, stack Pro... method HandleMsg (line 170) | func (pm *processorModel) HandleMsg(msg tea.Msg) tea.Cmd { type ProcessorModel (line 19) | type ProcessorModel interface function NewProcessorModel (line 35) | func NewProcessorModel(state state.State, checker *checker.CheckResult, ... function wrapCommand (line 52) | func wrapCommand( FILE: backend/cmd/installer/processor/pg.go constant PostgreSQLHost (line 14) | PostgreSQLHost = "127.0.0.1" constant PostgreSQLPort (line 15) | PostgreSQLPort = "5432" constant DefaultPostgreSQLUser (line 18) | DefaultPostgreSQLUser = "postgres" constant DefaultPostgreSQLPassword (line 19) | DefaultPostgreSQLPassword = "postgres" constant DefaultPostgreSQLDatabase (line 20) | DefaultPostgreSQLDatabase = "pentagidb" constant AdminEmail (line 23) | AdminEmail = "admin@pentagi.com" constant EnvPostgreSQLUser (line 26) | EnvPostgreSQLUser = "PENTAGI_POSTGRES_USER" constant EnvPostgreSQLPassword (line 27) | EnvPostgreSQLPassword = "PENTAGI_POSTGRES_PASSWORD" constant EnvPostgreSQLDatabase (line 28) | EnvPostgreSQLDatabase = "PENTAGI_POSTGRES_DB" method performPasswordReset (line 32) | func (p *processor) performPasswordReset(ctx context.Context, newPasswor... FILE: backend/cmd/installer/processor/processor.go type ProductStack (line 13) | type ProductStack constant ProductStackPentagi (line 16) | ProductStackPentagi ProductStack = "pentagi" constant ProductStackGraphiti (line 17) | ProductStackGraphiti ProductStack = "graphiti" constant ProductStackLangfuse (line 18) | ProductStackLangfuse ProductStack = "langfuse" constant ProductStackObservability (line 19) | ProductStackObservability ProductStack = "observability" constant ProductStackCompose (line 20) | ProductStackCompose ProductStack = "compose" constant ProductStackWorker (line 21) | ProductStackWorker ProductStack = "worker" constant ProductStackInstaller (line 22) | ProductStackInstaller ProductStack = "installer" constant ProductStackAll (line 23) | ProductStackAll ProductStack = "all" type ProcessorOperation (line 26) | type ProcessorOperation constant ProcessorOperationApplyChanges (line 29) | ProcessorOperationApplyChanges ProcessorOperation = "apply_changes" constant ProcessorOperationCheckFiles (line 30) | ProcessorOperationCheckFiles ProcessorOperation = "check_files" constant ProcessorOperationFactoryReset (line 31) | ProcessorOperationFactoryReset ProcessorOperation = "factory_reset" constant ProcessorOperationInstall (line 32) | ProcessorOperationInstall ProcessorOperation = "install" constant ProcessorOperationUpdate (line 33) | ProcessorOperationUpdate ProcessorOperation = "update" constant ProcessorOperationDownload (line 34) | ProcessorOperationDownload ProcessorOperation = "download" constant ProcessorOperationRemove (line 35) | ProcessorOperationRemove ProcessorOperation = "remove" constant ProcessorOperationPurge (line 36) | ProcessorOperationPurge ProcessorOperation = "purge" constant ProcessorOperationStart (line 37) | ProcessorOperationStart ProcessorOperation = "start" constant ProcessorOperationStop (line 38) | ProcessorOperationStop ProcessorOperation = "stop" constant ProcessorOperationRestart (line 39) | ProcessorOperationRestart ProcessorOperation = "restart" constant ProcessorOperationResetPassword (line 40) | ProcessorOperationResetPassword ProcessorOperation = "reset_password" type ProductDockerNetwork (line 43) | type ProductDockerNetwork constant ProductDockerNetworkPentagi (line 46) | ProductDockerNetworkPentagi ProductDockerNetwork = "pentagi-network" constant ProductDockerNetworkObservability (line 47) | ProductDockerNetworkObservability ProductDockerNetwork = "observability-... constant ProductDockerNetworkLangfuse (line 48) | ProductDockerNetworkLangfuse ProductDockerNetwork = "langfuse-network" type FilesCheckResult (line 51) | type FilesCheckResult type Processor (line 53) | type Processor interface function WithForce (line 69) | func WithForce() OperationOption { function WithTerminal (line 74) | func WithTerminal(term terminal.Terminal) OperationOption { function WithPasswordValue (line 83) | func WithPasswordValue(password string) OperationOption { type fileSystemOperations (line 90) | type fileSystemOperations interface type dockerOperations (line 97) | type dockerOperations interface type composeOperations (line 109) | type composeOperations interface type updateOperations (line 122) | type updateOperations interface type processor (line 129) | type processor struct method ApplyChanges (line 159) | func (p *processor) ApplyChanges(ctx context.Context, opts ...Operatio... method CheckFiles (line 167) | func (p *processor) CheckFiles(ctx context.Context, stack ProductStack... method FactoryReset (line 175) | func (p *processor) FactoryReset(ctx context.Context, opts ...Operatio... method Install (line 183) | func (p *processor) Install(ctx context.Context, opts ...OperationOpti... method Update (line 191) | func (p *processor) Update(ctx context.Context, stack ProductStack, op... method Download (line 199) | func (p *processor) Download(ctx context.Context, stack ProductStack, ... method Remove (line 207) | func (p *processor) Remove(ctx context.Context, stack ProductStack, op... method Purge (line 215) | func (p *processor) Purge(ctx context.Context, stack ProductStack, opt... method Start (line 223) | func (p *processor) Start(ctx context.Context, stack ProductStack, opt... method Stop (line 231) | func (p *processor) Stop(ctx context.Context, stack ProductStack, opts... method Restart (line 239) | func (p *processor) Restart(ctx context.Context, stack ProductStack, o... method ResetPassword (line 247) | func (p *processor) ResetPassword(ctx context.Context, stack ProductSt... function NewProcessor (line 142) | func NewProcessor(state state.State, checker *checker.CheckResult, files... FILE: backend/cmd/installer/processor/state.go type operationState (line 15) | type operationState struct method sendOutput (line 129) | func (state *operationState) sendOutput(output string, isPartial bool,... method sendCompletion (line 152) | func (state *operationState) sendCompletion(stack ProductStack, err er... method sendStarted (line 167) | func (state *operationState) sendStarted(stack ProductStack) { method sendFilesCheck (line 181) | func (state *operationState) sendFilesCheck(stack ProductStack, result... type ProcessorOutputMsg (line 30) | type ProcessorOutputMsg struct type ProcessorCompletionMsg (line 42) | type ProcessorCompletionMsg struct type ProcessorStartedMsg (line 54) | type ProcessorStartedMsg struct type ProcessorWaitMsg (line 65) | type ProcessorWaitMsg struct type ProcessorFilesCheckMsg (line 77) | type ProcessorFilesCheckMsg struct type OperationOption (line 88) | type OperationOption function withID (line 90) | func withID(id string) OperationOption { function withOperation (line 94) | func withOperation(operation ProcessorOperation) OperationOption { function withContext (line 98) | func withContext(ctx context.Context) OperationOption { function newOperationState (line 103) | func newOperationState(opts []OperationOption) *operationState { FILE: backend/cmd/installer/processor/update.go constant updateServerURL (line 18) | updateServerURL = "https://update.pentagi.com" type updateOperationsImpl (line 20) | type updateOperationsImpl struct method checkUpdates (line 28) | func (u *updateOperationsImpl) checkUpdates(ctx context.Context, state... method downloadInstaller (line 43) | func (u *updateOperationsImpl) downloadInstaller(ctx context.Context, ... method updateInstaller (line 68) | func (u *updateOperationsImpl) updateInstaller(ctx context.Context, st... method removeInstaller (line 97) | func (u *updateOperationsImpl) removeInstaller(ctx context.Context, st... method buildUpdateCheckRequest (line 105) | func (u *updateOperationsImpl) buildUpdateCheckRequest() checker.Check... method callUpdateServer (line 126) | func (u *updateOperationsImpl) callUpdateServer( method getInstallerDownloadURL (line 147) | func (u *updateOperationsImpl) getInstallerDownloadURL(ctx context.Con... method downloadBinaryToTemp (line 160) | func (u *updateOperationsImpl) downloadBinaryToTemp(ctx context.Contex... method verifyBinaryChecksum (line 189) | func (u *updateOperationsImpl) verifyBinaryChecksum(filePath string) e... method replaceInstallerBinary (line 204) | func (u *updateOperationsImpl) replaceInstallerBinary(newBinaryPath st... method getUpdateServerURL (line 228) | func (u *updateOperationsImpl) getUpdateServerURL() string { method getProxyURL (line 236) | func (u *updateOperationsImpl) getProxyURL() string { method copyFile (line 244) | func (u *updateOperationsImpl) copyFile(src, dst string) error { method callExistingUpdateChecker (line 264) | func (u *updateOperationsImpl) callExistingUpdateChecker( function newUpdateOperations (line 24) | func newUpdateOperations(p *processor) updateOperations { FILE: backend/cmd/installer/state/example_test.go function ExampleState_transactionWorkflow (line 10) | func ExampleState_transactionWorkflow() { function ExampleState_rollbackWorkflow (line 99) | func ExampleState_rollbackWorkflow() { function ExampleState_persistenceWorkflow (line 148) | func ExampleState_persistenceWorkflow() { function countChangedVars (line 200) | func countChangedVars(state State) int { function showCurrentConfig (line 210) | func showCurrentConfig(state State) { FILE: backend/cmd/installer/state/state.go constant EULAConsentFile (line 14) | EULAConsentFile = "eula-consent" type State (line 16) | type State interface type stateData (line 40) | type stateData struct type state (line 45) | type state struct method Exists (line 86) | func (s *state) Exists() bool { method Reset (line 95) | func (s *state) Reset() error { method Commit (line 102) | func (s *state) Commit() error { method IsDirty (line 113) | func (s *state) IsDirty() bool { method GetEulaConsent (line 135) | func (s *state) GetEulaConsent() bool { method SetEulaConsent (line 147) | func (s *state) SetEulaConsent() error { method SetStack (line 160) | func (s *state) SetStack(stack []string) error { method GetStack (line 169) | func (s *state) GetStack() []string { method GetVar (line 176) | func (s *state) GetVar(name string) (loader.EnvVar, bool) { method SetVar (line 183) | func (s *state) SetVar(name, value string) error { method ResetVar (line 192) | func (s *state) ResetVar(name string) error { method GetVars (line 196) | func (s *state) GetVars(names []string) (map[string]loader.EnvVar, map... method SetVars (line 212) | func (s *state) SetVars(vars map[string]string) error { method ResetVars (line 223) | func (s *state) ResetVars(names []string) error { method GetAllVars (line 245) | func (s *state) GetAllVars() map[string]loader.EnvVar { method GetEnvPath (line 252) | func (s *state) GetEnvPath() string { method loadState (line 256) | func (s *state) loadState(stateFile string) error { method flushState (line 275) | func (s *state) flushState() error { method resetState (line 294) | func (s *state) resetState() error { function NewState (line 54) | func NewState(envPath string) (State, error) { FILE: backend/cmd/installer/state/state_test.go function TestNewState (line 10) | func TestNewState(t *testing.T) { function TestStateExists (line 67) | func TestStateExists(t *testing.T) { function TestStateStepManagement (line 100) | func TestStateStepManagement(t *testing.T) { function TestStateVariableManagement (line 142) | func TestStateVariableManagement(t *testing.T) { function TestStateCommit (line 348) | func TestStateCommit(t *testing.T) { function TestStateReset (line 422) | func TestStateReset(t *testing.T) { function TestStatePersistence (line 477) | func TestStatePersistence(t *testing.T) { function TestStateErrors (line 525) | func TestStateErrors(t *testing.T) { function containsLine (line 693) | func containsLine(content, line string) bool { FILE: backend/cmd/installer/wizard/app.go constant BaseHeaderHeight (line 25) | BaseHeaderHeight = 2 constant BaseFooterHeight (line 26) | BaseFooterHeight = 1 constant MinHeaderHeight (line 27) | MinHeaderHeight = 1 type App (line 31) | type App struct method initHotkeysLocale (line 73) | func (app *App) initHotkeysLocale() { method updateScreenMargins (line 90) | func (app *App) updateScreenMargins() { method Init (line 95) | func (app *App) Init() tea.Cmd { method Update (line 103) | func (app *App) Update(msg tea.Msg) (tea.Model, tea.Cmd) { method View (line 154) | func (app *App) View() string { method forwardMsgToCurrentModel (line 175) | func (app *App) forwardMsgToCurrentModel(msg tea.Msg) tea.Cmd { method renderHeader (line 188) | func (app *App) renderHeader() string { method renderFooter (line 202) | func (app *App) renderFooter() string { method getScreenTitle (line 238) | func (app *App) getScreenTitle() string { function NewApp (line 43) | func NewApp(appState state.State, checkResult checker.CheckResult, files... function Run (line 245) | func Run(ctx context.Context, appState state.State, checkResult checker.... FILE: backend/cmd/installer/wizard/controller/controller.go constant EmbeddedLLMConfigsPath (line 18) | EmbeddedLLMConfigsPath = "providers-configs" constant DefaultDockerCertPath (line 19) | DefaultDockerCertPath = "/opt/pentagi/docker/ssl" constant DefaultCustomConfigsPath (line 20) | DefaultCustomConfigsPath = "/opt/pentagi/conf/custom.provider.yml" constant DefaultOllamaConfigsPath (line 21) | DefaultOllamaConfigsPath = "/opt/pentagi/conf/ollama.provider.yml" constant DefaultLLMConfigsPath (line 22) | DefaultLLMConfigsPath = "/opt/pentagi/conf/" constant DefaultScraperBaseURL (line 23) | DefaultScraperBaseURL = "https://scraper/" constant DefaultScraperDomain (line 24) | DefaultScraperDomain = "scraper" constant DefaultScraperSchema (line 25) | DefaultScraperSchema = "https" type Controller (line 28) | type Controller interface type LLMProviderConfigController (line 48) | type LLMProviderConfigController interface type LangfuseConfigController (line 55) | type LangfuseConfigController interface type GraphitiConfigController (line 61) | type GraphitiConfigController interface type ObservabilityConfigController (line 67) | type ObservabilityConfigController interface type SummarizerConfigController (line 73) | type SummarizerConfigController interface type EmbedderConfigController (line 79) | type EmbedderConfigController interface type AIAgentsConfigController (line 85) | type AIAgentsConfigController interface type ScraperConfigController (line 91) | type ScraperConfigController interface type SearchEnginesConfigController (line 97) | type SearchEnginesConfigController interface type DockerConfigController (line 103) | type DockerConfigController interface type ChangesConfigController (line 109) | type ChangesConfigController interface type ServerSettingsConfigController (line 113) | type ServerSettingsConfigController interface type controller (line 120) | type controller struct method GetState (line 135) | func (c *controller) GetState() state.State { method GetChecker (line 140) | func (c *controller) GetChecker() *checker.CheckResult { method GetLLMProviders (line 194) | func (c *controller) GetLLMProviders() map[string]*LLMProviderConfig { method GetLLMProviderConfig (line 210) | func (c *controller) GetLLMProviderConfig(providerID string) *LLMProvi... method UpdateLLMProviderConfig (line 314) | func (c *controller) UpdateLLMProviderConfig(providerID string, config... method ResetLLMProviderConfig (line 488) | func (c *controller) ResetLLMProviderConfig(providerID string) map[str... method GetLangfuseConfig (line 568) | func (c *controller) GetLangfuseConfig() *LangfuseConfig { method UpdateLangfuseConfig (line 646) | func (c *controller) UpdateLangfuseConfig(config *LangfuseConfig) error { method ResetLangfuseConfig (line 716) | func (c *controller) ResetLangfuseConfig() *LangfuseConfig { method GetGraphitiConfig (line 766) | func (c *controller) GetGraphitiConfig() *GraphitiConfig { method UpdateGraphitiConfig (line 831) | func (c *controller) UpdateGraphitiConfig(config *GraphitiConfig) error { method ResetGraphitiConfig (line 892) | func (c *controller) ResetGraphitiConfig() *GraphitiConfig { method GetObservabilityConfig (line 929) | func (c *controller) GetObservabilityConfig() *ObservabilityConfig { method UpdateObservabilityConfig (line 982) | func (c *controller) UpdateObservabilityConfig(config *ObservabilityCo... method ResetObservabilityConfig (line 1033) | func (c *controller) ResetObservabilityConfig() *ObservabilityConfig { method GetSummarizerConfig (line 1081) | func (c *controller) GetSummarizerConfig(summarizerType SummarizerType... method UpdateSummarizerConfig (line 1114) | func (c *controller) UpdateSummarizerConfig(config *SummarizerConfig) ... method ResetSummarizerConfig (line 1159) | func (c *controller) ResetSummarizerConfig(summarizerType SummarizerTy... method GetEmbedderConfig (line 1207) | func (c *controller) GetEmbedderConfig() *EmbedderConfig { method UpdateEmbedderConfig (line 1238) | func (c *controller) UpdateEmbedderConfig(config *EmbedderConfig) error { method ResetEmbedderConfig (line 1266) | func (c *controller) ResetEmbedderConfig() *EmbedderConfig { method GetAIAgentsConfig (line 1297) | func (c *controller) GetAIAgentsConfig() *AIAgentsConfig { method UpdateAIAgentsConfig (line 1312) | func (c *controller) UpdateAIAgentsConfig(config *AIAgentsConfig) error { method ResetAIAgentsConfig (line 1345) | func (c *controller) ResetAIAgentsConfig() *AIAgentsConfig { method GetScraperConfig (line 1380) | func (c *controller) GetScraperConfig() *ScraperConfig { method determineScraperMode (line 1409) | func (c *controller) determineScraperMode(privateURL, publicURL string... method extractCredentialsFromURL (line 1429) | func (c *controller) extractCredentialsFromURL(urlStr string) (usernam... method UpdateScraperConfig (line 1450) | func (c *controller) UpdateScraperConfig(config *ScraperConfig) error { method addCredentialsToURL (line 1524) | func (c *controller) addCredentialsToURL(urlStr, username, password st... method ResetScraperConfig (line 1547) | func (c *controller) ResetScraperConfig() *ScraperConfig { method GetSearchEnginesConfig (line 1599) | func (c *controller) GetSearchEnginesConfig() *SearchEnginesConfig { method UpdateSearchEnginesConfig (line 1676) | func (c *controller) UpdateSearchEnginesConfig(config *SearchEnginesCo... method ResetSearchEnginesConfig (line 1744) | func (c *controller) ResetSearchEnginesConfig() *SearchEnginesConfig { method GetDockerConfig (line 1798) | func (c *controller) GetDockerConfig() *DockerConfig { method UpdateDockerConfig (line 1842) | func (c *controller) UpdateDockerConfig(config *DockerConfig) error { method ResetDockerConfig (line 1880) | func (c *controller) ResetDockerConfig() *DockerConfig { method GetServerSettingsConfig (line 1927) | func (c *controller) GetServerSettingsConfig() *ServerSettingsConfig { method UpdateServerSettingsConfig (line 1989) | func (c *controller) UpdateServerSettingsConfig(config *ServerSettings... method ResetServerSettingsConfig (line 2024) | func (c *controller) ResetServerSettingsConfig() *ServerSettingsConfig { method GetApplyChangesConfig (line 2072) | func (c *controller) GetApplyChangesConfig() *ApplyChangesConfig { method getVariableDescription (line 2122) | func (c *controller) getVariableDescription(varName string) string { method isVariableMasked (line 2374) | func (c *controller) isVariableMasked(varName string) bool { method isCriticalVariable (line 2539) | func (c *controller) isCriticalVariable(varName string) bool { function NewController (line 126) | func NewController(state state.State, files files.Files, checker checker... type LLMProviderConfig (line 145) | type LLMProviderConfig struct function GetEmbeddedLLMConfigsPath (line 180) | func GetEmbeddedLLMConfigsPath(files files.Files) []string { type LangfuseConfig (line 541) | type LangfuseConfig struct type GraphitiConfig (line 746) | type GraphitiConfig struct type ObservabilityConfig (line 912) | type ObservabilityConfig struct type SummarizerType (line 1053) | type SummarizerType constant SummarizerTypeGeneral (line 1056) | SummarizerTypeGeneral SummarizerType = "general" constant SummarizerTypeAssistant (line 1057) | SummarizerTypeAssistant SummarizerType = "assistant" type SummarizerConfig (line 1061) | type SummarizerConfig struct type EmbedderConfig (line 1191) | type EmbedderConfig struct type AIAgentsConfig (line 1284) | type AIAgentsConfig struct type ScraperConfig (line 1359) | type ScraperConfig struct type SearchEnginesConfig (line 1565) | type SearchEnginesConfig struct type DockerConfig (line 1776) | type DockerConfig struct type ServerSettingsConfig (line 1906) | type ServerSettingsConfig struct type ChangeInfo (line 2048) | type ChangeInfo struct type ApplyChangesConfig (line 2056) | type ApplyChangesConfig struct function RemoveCredentialsFromURL (line 2544) | func RemoveCredentialsFromURL(urlStr string) string { FILE: backend/cmd/installer/wizard/locale/locale.go constant UIStatistics (line 6) | UIStatistics = "Statistics" constant UIStatus (line 7) | UIStatus = "Status: " constant UIMode (line 8) | UIMode = "Mode: " constant UINoConfigSelected (line 9) | UINoConfigSelected = "No configuration selected" constant UILoading (line 10) | UILoading = "Loading..." constant UINotImplemented (line 11) | UINotImplemented = "Not implemented yet" constant UIUnsavedChanges (line 12) | UIUnsavedChanges = "Unsaved changes" constant UIConfigSaved (line 13) | UIConfigSaved = "Configuration saved" constant StatusEnabled (line 16) | StatusEnabled = "Enabled" constant StatusDisabled (line 17) | StatusDisabled = "Disabled" constant StatusConfigured (line 18) | StatusConfigured = "Configured" constant StatusNotConfigured (line 19) | StatusNotConfigured = "Not configured" constant StatusEmbedded (line 20) | StatusEmbedded = "Embedded" constant StatusExternal (line 21) | StatusExternal = "External" constant MessageSearchEnginesNone (line 24) | MessageSearchEnginesNone = "⚠ No search engines configured" constant MessageSearchEnginesConfigured (line 25) | MessageSearchEnginesConfigured = "✓ %d search engines configured" constant MessageDockerConfigured (line 26) | MessageDockerConfigured = "✓ Docker environment configured" constant MessageDockerNotConfigured (line 27) | MessageDockerNotConfigured = "⚠ Docker environment not configured" constant LegendConfigured (line 32) | LegendConfigured = "✓ Configured" constant LegendNotConfigured (line 33) | LegendNotConfigured = "✗ Not configured" constant NavBack (line 38) | NavBack = "Esc: Back" constant NavExit (line 39) | NavExit = "Ctrl+Q: Exit" constant NavUpDown (line 40) | NavUpDown = "↑/↓: Scroll/Select" constant NavLeftRight (line 41) | NavLeftRight = "←/→: Move" constant NavPgUpPgDown (line 42) | NavPgUpPgDown = "PgUp/PgDn: Page" constant NavHomeEnd (line 43) | NavHomeEnd = "Home/End: Start/End" constant NavEnter (line 44) | NavEnter = "Enter: Continue" constant NavYn (line 45) | NavYn = "Y/N: Accept/Reject" constant NavCtrlC (line 46) | NavCtrlC = "Ctrl+C: Cancel" constant NavCtrlS (line 47) | NavCtrlS = "Ctrl+S: Save" constant NavCtrlR (line 48) | NavCtrlR = "Ctrl+R: Reset" constant NavCtrlH (line 49) | NavCtrlH = "Ctrl+H: Show/Hide" constant NavTab (line 50) | NavTab = "Tab: Complete" constant NavSeparator (line 51) | NavSeparator = " • " constant WelcomeFormTitle (line 57) | WelcomeFormTitle = "Welcome to PentAGI" constant WelcomeFormDescription (line 58) | WelcomeFormDescription = "PentAGI is an autonomous penetration testing p... constant WelcomeFormName (line 59) | WelcomeFormName = "Welcome" constant WelcomeFormOverview (line 60) | WelcomeFormOverview = `System checks verify: constant WelcomeConfigurationFailed (line 72) | WelcomeConfigurationFailed = "⚠ Failed checks: %s" constant WelcomeConfigurationPassed (line 73) | WelcomeConfigurationPassed = "✓ All system checks passed" constant WelcomeWorkflowTitle (line 76) | WelcomeWorkflowTitle = "Installation Workflow:" constant WelcomeWorkflowStep1 (line 77) | WelcomeWorkflowStep1 = "1. Accept End User License Agreement" constant WelcomeWorkflowStep2 (line 78) | WelcomeWorkflowStep2 = "2. Configure LLM providers (OpenAI, Anthropic, e... constant WelcomeWorkflowStep3 (line 79) | WelcomeWorkflowStep3 = "3. Set up integrations (Langfuse, Observability)" constant WelcomeWorkflowStep4 (line 80) | WelcomeWorkflowStep4 = "4. Configure security settings" constant WelcomeWorkflowStep5 (line 81) | WelcomeWorkflowStep5 = "5. Deploy and start PentAGI services" constant WelcomeSystemReady (line 82) | WelcomeSystemReady = "✓ System ready - Press Enter to continue" constant TroubleshootTitle (line 87) | TroubleshootTitle = "System Requirements Not Met" constant TroubleshootEnvFileTitle (line 90) | TroubleshootEnvFileTitle = "Environment Configuration Missing" constant TroubleshootEnvFileDesc (line 91) | TroubleshootEnvFileDesc = "The .env file is required for PentAGI config... constant TroubleshootEnvFileFix (line 92) | TroubleshootEnvFileFix = `To fix: constant TroubleshootWritePermTitle (line 101) | TroubleshootWritePermTitle = "Write Permissions Required" constant TroubleshootWritePermDesc (line 102) | TroubleshootWritePermDesc = "The installer needs write access to the co... constant TroubleshootWritePermFix (line 103) | TroubleshootWritePermFix = `To fix: constant TroubleshootDockerNotInstalledTitle (line 110) | TroubleshootDockerNotInstalledTitle = "Docker Not Installed" constant TroubleshootDockerNotInstalledDesc (line 111) | TroubleshootDockerNotInstalledDesc = "Docker is not installed on this s... constant TroubleshootDockerNotInstalledFix (line 112) | TroubleshootDockerNotInstalledFix = `To fix: constant TroubleshootDockerNotRunningTitle (line 119) | TroubleshootDockerNotRunningTitle = "Docker Daemon Not Running" constant TroubleshootDockerNotRunningDesc (line 120) | TroubleshootDockerNotRunningDesc = "Docker is installed but the daemon ... constant TroubleshootDockerNotRunningFix (line 121) | TroubleshootDockerNotRunningFix = `To fix: constant TroubleshootDockerPermissionTitle (line 128) | TroubleshootDockerPermissionTitle = "Docker Permission Denied" constant TroubleshootDockerPermissionDesc (line 129) | TroubleshootDockerPermissionDesc = "Your user account lacks permission ... constant TroubleshootDockerPermissionFix (line 130) | TroubleshootDockerPermissionFix = `To fix: constant TroubleshootDockerAPITitle (line 137) | TroubleshootDockerAPITitle = "Docker API Connection Failed" constant TroubleshootDockerAPIDesc (line 138) | TroubleshootDockerAPIDesc = "Cannot establish connection to Docker API.... constant TroubleshootDockerAPIFix (line 139) | TroubleshootDockerAPIFix = `To fix: constant TroubleshootDockerVersionTitle (line 147) | TroubleshootDockerVersionTitle = "Docker Version Too Old" constant TroubleshootDockerVersionDesc (line 148) | TroubleshootDockerVersionDesc = "Your Docker version is incompatible. P... constant TroubleshootDockerVersionFix (line 149) | TroubleshootDockerVersionFix = `To fix: constant TroubleshootComposeTitle (line 157) | TroubleshootComposeTitle = "Docker Compose Not Found" constant TroubleshootComposeDesc (line 158) | TroubleshootComposeDesc = "Docker Compose is required but not installed... constant TroubleshootComposeFix (line 159) | TroubleshootComposeFix = `To fix: constant TroubleshootComposeVersionTitle (line 166) | TroubleshootComposeVersionTitle = "Docker Compose Version Too Old" constant TroubleshootComposeVersionDesc (line 167) | TroubleshootComposeVersionDesc = "Your Docker Compose version is incomp... constant TroubleshootComposeVersionFix (line 168) | TroubleshootComposeVersionFix = `Current version: %s constant TroubleshootWorkerTitle (line 177) | TroubleshootWorkerTitle = "Worker Docker Environment Not Accessible" constant TroubleshootWorkerDesc (line 178) | TroubleshootWorkerDesc = "Cannot connect to the Docker environment for ... constant TroubleshootWorkerFix (line 179) | TroubleshootWorkerFix = `To fix: constant TroubleshootCPUTitle (line 190) | TroubleshootCPUTitle = "Insufficient CPU Cores" constant TroubleshootCPUDesc (line 191) | TroubleshootCPUDesc = "PentAGI requires at least 2 CPU cores for proper... constant TroubleshootCPUFix (line 192) | TroubleshootCPUFix = `Your system has %d CPU core(s), but 2+ are requi... constant TroubleshootMemoryTitle (line 202) | TroubleshootMemoryTitle = "Insufficient Memory" constant TroubleshootMemoryDesc (line 203) | TroubleshootMemoryDesc = "Not enough free memory for selected components." constant TroubleshootMemoryFix (line 204) | TroubleshootMemoryFix = `Memory requirements: constant TroubleshootDiskTitle (line 219) | TroubleshootDiskTitle = "Insufficient Disk Space" constant TroubleshootDiskDesc (line 220) | TroubleshootDiskDesc = "Not enough free disk space for installation and... constant TroubleshootDiskFix (line 221) | TroubleshootDiskFix = `Disk requirements: constant TroubleshootNetworkTitle (line 236) | TroubleshootNetworkTitle = "Network Connectivity Failed" constant TroubleshootNetworkDesc (line 237) | TroubleshootNetworkDesc = "Cannot reach required external services. Thi... constant TroubleshootNetworkFix (line 238) | TroubleshootNetworkFix = `Failed checks: constant TroubleshootFixHint (line 253) | TroubleshootFixHint = "\nResolve the issues above and run the installer ... constant NetworkFailureDNS (line 256) | NetworkFailureDNS = "• DNS resolution failed for docker.io" constant NetworkFailureHTTPS (line 257) | NetworkFailureHTTPS = "• Cannot reach external services via HTTPS" constant NetworkFailureDockerPull (line 258) | NetworkFailureDockerPull = "• Cannot pull Docker images from registry" constant ChecksTitle (line 263) | ChecksTitle = "System Checks" constant ChecksWarningFailed (line 264) | ChecksWarningFailed = "⚠ Some checks failed" constant CheckEnvironmentFile (line 265) | CheckEnvironmentFile = "Environment file" constant CheckWritePermissions (line 266) | CheckWritePermissions = "Write permissions" constant CheckDockerAPI (line 267) | CheckDockerAPI = "Docker API" constant CheckDockerVersion (line 268) | CheckDockerVersion = "Docker version" constant CheckDockerCompose (line 269) | CheckDockerCompose = "Docker Compose" constant CheckDockerComposeVersion (line 270) | CheckDockerComposeVersion = "Docker Compose version" constant CheckWorkerEnvironment (line 271) | CheckWorkerEnvironment = "Worker environment" constant CheckSystemResources (line 272) | CheckSystemResources = "System resources" constant CheckNetworkConnectivity (line 273) | CheckNetworkConnectivity = "Network connectivity" constant EULAFormDescription (line 279) | EULAFormDescription = "Legal terms and conditions for PentAGI usage" constant EULAFormName (line 280) | EULAFormName = "EULA" constant EULAFormOverview (line 281) | EULAFormOverview = `Review and accept the End User License Agreement ... constant EULAErrorLoadingTitle (line 295) | EULAErrorLoadingTitle = "# Error Loading EULA\n\nFailed to load EULA... constant EULAContentFallback (line 296) | EULAContentFallback = "# EULA Content\n\n%s\n\n---\n\n*Note: Markd... constant EULAConfigurationRead (line 297) | EULAConfigurationRead = "✓ EULA reviewed" constant EULAConfigurationAccepted (line 298) | EULAConfigurationAccepted = "✓ EULA accepted" constant EULAConfigurationPending (line 299) | EULAConfigurationPending = "⚠ EULA not reviewed" constant EULALoading (line 300) | EULALoading = "Loading EULA..." constant EULAProgress (line 301) | EULAProgress = "Progress: %d%%" constant EULAProgressComplete (line 302) | EULAProgressComplete = " • Complete" constant MainMenuTitle (line 307) | MainMenuTitle = "PentAGI Configuration" constant MainMenuDescription (line 308) | MainMenuDescription = "Configure all PentAGI components and settings" constant MainMenuName (line 309) | MainMenuName = "Main Menu" constant MainMenuOverview (line 310) | MainMenuOverview = `Welcome to PentAGI Configuration Center. constant MenuTitle (line 320) | MenuTitle = "Configuration Menu" constant MenuSystemStatus (line 321) | MenuSystemStatus = "System Status" constant MainMenuStatusPentagiRunning (line 326) | MainMenuStatusPentagiRunning = "PentAGI is already running" constant MainMenuStatusPentagiNotRunning (line 327) | MainMenuStatusPentagiNotRunning = "Ready to start PentAGI services" constant MainMenuStatusUpToDate (line 328) | MainMenuStatusUpToDate = "PentAGI is up to date" constant MainMenuStatusUpdatesAvailable (line 329) | MainMenuStatusUpdatesAvailable = "Updates are available" constant MainMenuStatusReadyToStart (line 330) | MainMenuStatusReadyToStart = "Ready to start" constant MainMenuStatusAllServicesRunning (line 331) | MainMenuStatusAllServicesRunning = "All services are running" constant MainMenuStatusNoUpdatesAvailable (line 332) | MainMenuStatusNoUpdatesAvailable = "No updates available" constant LLMProvidersTitle (line 337) | LLMProvidersTitle = "LLM Providers Configuration" constant LLMProvidersDescription (line 338) | LLMProvidersDescription = "Configure Large Language Model providers for ... constant LLMProvidersName (line 339) | LLMProvidersName = "LLM Providers" constant LLMProvidersOverview (line 340) | LLMProvidersOverview = `PentAGI uses specialized AI agents (researche... constant LLMProviderOpenAI (line 357) | LLMProviderOpenAI = "OpenAI" constant LLMProviderAnthropic (line 358) | LLMProviderAnthropic = "Anthropic" constant LLMProviderGemini (line 359) | LLMProviderGemini = "Google Gemini" constant LLMProviderBedrock (line 360) | LLMProviderBedrock = "AWS Bedrock" constant LLMProviderOllama (line 361) | LLMProviderOllama = "Ollama" constant LLMProviderDeepSeek (line 362) | LLMProviderDeepSeek = "DeepSeek" constant LLMProviderGLM (line 363) | LLMProviderGLM = "GLM Zhipu AI" constant LLMProviderKimi (line 364) | LLMProviderKimi = "Kimi Moonshot AI" constant LLMProviderQwen (line 365) | LLMProviderQwen = "Qwen Alibaba Cloud" constant LLMProviderCustom (line 366) | LLMProviderCustom = "Custom" constant LLMProviderOpenAIDesc (line 367) | LLMProviderOpenAIDesc = "Industry-leading GPT models with excellent g... constant LLMProviderAnthropicDesc (line 368) | LLMProviderAnthropicDesc = "Claude models with superior reasoning and sa... constant LLMProviderGeminiDesc (line 369) | LLMProviderGeminiDesc = "Google's advanced multimodal models with bro... constant LLMProviderBedrockDesc (line 370) | LLMProviderBedrockDesc = "Enterprise AWS access to multiple foundation... constant LLMProviderOllamaDesc (line 371) | LLMProviderOllamaDesc = "Local and cloud open-source models for priva... constant LLMProviderDeepSeekDesc (line 372) | LLMProviderDeepSeekDesc = "Advanced Chinese AI models with strong reaso... constant LLMProviderGLMDesc (line 373) | LLMProviderGLMDesc = "Zhipu AI's GLM models for Chinese and Englis... constant LLMProviderKimiDesc (line 374) | LLMProviderKimiDesc = "Moonshot AI's long-context models for docume... constant LLMProviderQwenDesc (line 375) | LLMProviderQwenDesc = "Alibaba Cloud's Qwen models for multilingual... constant LLMProviderCustomDesc (line 376) | LLMProviderCustomDesc = "Custom OpenAI-compatible endpoint for maximu... constant LLMFormOpenAIHelp (line 381) | LLMFormOpenAIHelp = `OpenAI delivers industry-leading models with cuttin... constant LLMFormAnthropicHelp (line 399) | LLMFormAnthropicHelp = `Anthropic Claude models excel in safety-consciou... constant LLMFormGeminiHelp (line 417) | LLMFormGeminiHelp = `Google Gemini combines multimodal capabilities with... constant LLMFormBedrockHelp (line 436) | LLMFormBedrockHelp = `AWS Bedrock provides enterprise-grade access to 20... constant LLMFormOllamaHelp (line 462) | LLMFormOllamaHelp = `Ollama supports two deployment scenarios for comple... constant LLMFormDeepSeekHelp (line 492) | LLMFormDeepSeekHelp = `DeepSeek provides advanced AI models with strong ... constant LLMFormGLMHelp (line 515) | LLMFormGLMHelp = `GLM from Zhipu AI provides advanced language models wi... constant LLMFormKimiHelp (line 543) | LLMFormKimiHelp = `Kimi from Moonshot AI provides ultra-long context mod... constant LLMFormQwenHelp (line 570) | LLMFormQwenHelp = `Qwen from Alibaba Cloud Model Studio (DashScope) prov... constant LLMFormCustomHelp (line 600) | LLMFormCustomHelp = `Configure any OpenAI-compatible API endpoint for ma... constant LLMFormFieldBaseURL (line 629) | LLMFormFieldBaseURL = "Base URL" constant LLMFormFieldAPIKey (line 630) | LLMFormFieldAPIKey = "API Key" constant LLMFormFieldDefaultAuth (line 631) | LLMFormFieldDefaultAuth = "Use Default AWS Auth" constant LLMFormFieldBearerToken (line 632) | LLMFormFieldBearerToken = "Bearer Token" constant LLMFormFieldAccessKey (line 633) | LLMFormFieldAccessKey = "Access Key ID" constant LLMFormFieldSecretKey (line 634) | LLMFormFieldSecretKey = "Secret Access Key" constant LLMFormFieldSessionToken (line 635) | LLMFormFieldSessionToken = "Session Token" constant LLMFormFieldRegion (line 636) | LLMFormFieldRegion = "Region" constant LLMFormFieldModel (line 637) | LLMFormFieldModel = "Model" constant LLMFormFieldConfigPath (line 638) | LLMFormFieldConfigPath = "Config Path" constant LLMFormFieldLegacyReasoning (line 639) | LLMFormFieldLegacyReasoning = "Legacy Reasoning" constant LLMFormFieldPreserveReasoning (line 640) | LLMFormFieldPreserveReasoning = "Preserve Reasoning" constant LLMFormFieldProviderName (line 641) | LLMFormFieldProviderName = "Provider Name" constant LLMFormFieldPullTimeout (line 642) | LLMFormFieldPullTimeout = "Model Pull Timeout" constant LLMFormFieldPullEnabled (line 643) | LLMFormFieldPullEnabled = "Auto-pull Models" constant LLMFormFieldLoadModelsEnabled (line 644) | LLMFormFieldLoadModelsEnabled = "Load Models from Server" constant LLMFormBaseURLDesc (line 645) | LLMFormBaseURLDesc = "API endpoint URL for the provider" constant LLMFormAPIKeyDesc (line 646) | LLMFormAPIKeyDesc = "Your API key for authentication" constant LLMFormDefaultAuthDesc (line 647) | LLMFormDefaultAuthDesc = "Use AWS SDK default credential chain (e... constant LLMFormBearerTokenDesc (line 648) | LLMFormBearerTokenDesc = "Bearer token for authentication - takes... constant LLMFormAccessKeyDesc (line 649) | LLMFormAccessKeyDesc = "AWS Access Key ID for static credential... constant LLMFormSecretKeyDesc (line 650) | LLMFormSecretKeyDesc = "AWS Secret Access Key for static creden... constant LLMFormSessionTokenDesc (line 651) | LLMFormSessionTokenDesc = "AWS Session Token for temporary credent... constant LLMFormRegionDesc (line 652) | LLMFormRegionDesc = "AWS region for Bedrock service" constant LLMFormModelDesc (line 653) | LLMFormModelDesc = "Default model to use for this provider" constant LLMFormConfigPathDesc (line 654) | LLMFormConfigPathDesc = "Path to configuration file (optional)" constant LLMFormLegacyReasoningDesc (line 655) | LLMFormLegacyReasoningDesc = "Enable legacy reasoning mode (true/false)" constant LLMFormPreserveReasoningDesc (line 656) | LLMFormPreserveReasoningDesc = "Preserve reasoning content in multi-tur... constant LLMFormProviderNameDesc (line 657) | LLMFormProviderNameDesc = "Provider name prefix for model names (u... constant LLMFormPullTimeoutDesc (line 658) | LLMFormPullTimeoutDesc = "Timeout in seconds for downloading mode... constant LLMFormPullEnabledDesc (line 659) | LLMFormPullEnabledDesc = "Automatically download required models ... constant LLMFormLoadModelsEnabledDesc (line 660) | LLMFormLoadModelsEnabledDesc = "Load available models list from Ollama ... constant LLMFormOllamaAPIKeyDesc (line 661) | LLMFormOllamaAPIKeyDesc = "Ollama Cloud API key (optional, leave e... constant LLMProviderFormTitle (line 666) | LLMProviderFormTitle = "LLM Provider %s Configuration" constant LLMProviderFormDescription (line 667) | LLMProviderFormDescription = "Configure your Large Language Model provid... constant LLMProviderFormName (line 668) | LLMProviderFormName = "LLM Provider %s" constant LLMProviderFormOverview (line 669) | LLMProviderFormOverview = `Agent Role Assignment: constant MonitoringTitle (line 686) | MonitoringTitle = "Monitoring Configuration" constant MonitoringDescription (line 687) | MonitoringDescription = "Configure monitoring and observability platform... constant MonitoringName (line 688) | MonitoringName = "Monitoring" constant MonitoringOverview (line 689) | MonitoringOverview = `Comprehensive monitoring and observability for ... constant MonitoringLangfuseFormTitle (line 709) | MonitoringLangfuseFormTitle = "Langfuse Configuration" constant MonitoringLangfuseFormDescription (line 710) | MonitoringLangfuseFormDescription = "Configuration of Langfuse integrati... constant MonitoringLangfuseFormName (line 711) | MonitoringLangfuseFormName = "Langfuse" constant MonitoringLangfuseFormOverview (line 712) | MonitoringLangfuseFormOverview = `Langfuse provides: constant MonitoringLangfuseEmbedded (line 722) | MonitoringLangfuseEmbedded = "Embedded Server" constant MonitoringLangfuseExternal (line 723) | MonitoringLangfuseExternal = "External Server" constant MonitoringLangfuseDisabled (line 724) | MonitoringLangfuseDisabled = "Disabled" constant MonitoringLangfuseDeploymentType (line 727) | MonitoringLangfuseDeploymentType = "Deployment Type" constant MonitoringLangfuseDeploymentTypeDesc (line 728) | MonitoringLangfuseDeploymentTypeDesc = "Select the deployment type for L... constant MonitoringLangfuseBaseURL (line 729) | MonitoringLangfuseBaseURL = "Server URL" constant MonitoringLangfuseBaseURLDesc (line 730) | MonitoringLangfuseBaseURLDesc = "Address of the Langfuse server (... constant MonitoringLangfuseProjectID (line 731) | MonitoringLangfuseProjectID = "Project ID" constant MonitoringLangfuseProjectIDDesc (line 732) | MonitoringLangfuseProjectIDDesc = "Project identifier in Langfuse" constant MonitoringLangfusePublicKey (line 733) | MonitoringLangfusePublicKey = "Public Key" constant MonitoringLangfusePublicKeyDesc (line 734) | MonitoringLangfusePublicKeyDesc = "Public API key for project access" constant MonitoringLangfuseSecretKey (line 735) | MonitoringLangfuseSecretKey = "Secret Key" constant MonitoringLangfuseSecretKeyDesc (line 736) | MonitoringLangfuseSecretKeyDesc = "Secret API key for project access" constant MonitoringLangfuseListenIP (line 737) | MonitoringLangfuseListenIP = "Listen IP" constant MonitoringLangfuseListenIPDesc (line 738) | MonitoringLangfuseListenIPDesc = "Bind address used by Docker port... constant MonitoringLangfuseListenPort (line 739) | MonitoringLangfuseListenPort = "Listen Port" constant MonitoringLangfuseListenPortDesc (line 740) | MonitoringLangfuseListenPortDesc = "External TCP port exposed by Doc... constant MonitoringLangfuseAdminEmail (line 743) | MonitoringLangfuseAdminEmail = "Admin Email" constant MonitoringLangfuseAdminEmailDesc (line 744) | MonitoringLangfuseAdminEmailDesc = "Email for accessing the Langfuse ... constant MonitoringLangfuseAdminPassword (line 745) | MonitoringLangfuseAdminPassword = "Admin Password" constant MonitoringLangfuseAdminPasswordDesc (line 746) | MonitoringLangfuseAdminPasswordDesc = "Password for accessing the Langfu... constant MonitoringLangfuseAdminName (line 747) | MonitoringLangfuseAdminName = "Admin Username" constant MonitoringLangfuseAdminNameDesc (line 748) | MonitoringLangfuseAdminNameDesc = "Administrator username in Langfuse" constant MonitoringLangfuseLicenseKey (line 749) | MonitoringLangfuseLicenseKey = "Enterprise License Key" constant MonitoringLangfuseLicenseKeyDesc (line 750) | MonitoringLangfuseLicenseKeyDesc = "Langfuse Enterprise license key (... constant MonitoringLangfuseModeGuide (line 753) | MonitoringLangfuseModeGuide = "Choose deployment: Embedded (local con... constant MonitoringLangfuseEmbeddedHelp (line 754) | MonitoringLangfuseEmbeddedHelp = `Embedded deploys complete Langfuse stack: constant MonitoringLangfuseExternalHelp (line 772) | MonitoringLangfuseExternalHelp = `External connects to cloud.langfuse.co... constant MonitoringLangfuseDisabledHelp (line 786) | MonitoringLangfuseDisabledHelp = `Langfuse is disabled. Without LLM obse... constant MonitoringGraphitiFormTitle (line 802) | MonitoringGraphitiFormTitle = "Graphiti Configuration (beta)" constant MonitoringGraphitiFormDescription (line 803) | MonitoringGraphitiFormDescription = "Configuration of Graphiti knowledge... constant MonitoringGraphitiFormName (line 804) | MonitoringGraphitiFormName = "Graphiti (beta)" constant MonitoringGraphitiFormOverview (line 805) | MonitoringGraphitiFormOverview = `⚠️ BETA FEATURE: This functionalit... constant MonitoringGraphitiEmbedded (line 818) | MonitoringGraphitiEmbedded = "Embedded Stack" constant MonitoringGraphitiExternal (line 819) | MonitoringGraphitiExternal = "External Service" constant MonitoringGraphitiDisabled (line 820) | MonitoringGraphitiDisabled = "Disabled" constant MonitoringGraphitiDeploymentType (line 823) | MonitoringGraphitiDeploymentType = "Deployment Type" constant MonitoringGraphitiDeploymentTypeDesc (line 824) | MonitoringGraphitiDeploymentTypeDesc = "Select the deployment type for G... constant MonitoringGraphitiURL (line 825) | MonitoringGraphitiURL = "Graphiti Server URL" constant MonitoringGraphitiURLDesc (line 826) | MonitoringGraphitiURLDesc = "Address of the Graphiti API server" constant MonitoringGraphitiTimeout (line 827) | MonitoringGraphitiTimeout = "Request Timeout" constant MonitoringGraphitiTimeoutDesc (line 828) | MonitoringGraphitiTimeoutDesc = "Timeout in seconds for Graphiti ... constant MonitoringGraphitiModelName (line 829) | MonitoringGraphitiModelName = "Extraction Model" constant MonitoringGraphitiModelNameDesc (line 830) | MonitoringGraphitiModelNameDesc = "LLM model for entity extraction ... constant MonitoringGraphitiNeo4jUser (line 831) | MonitoringGraphitiNeo4jUser = "Neo4j Username" constant MonitoringGraphitiNeo4jUserDesc (line 832) | MonitoringGraphitiNeo4jUserDesc = "Username for Neo4j database access" constant MonitoringGraphitiNeo4jPassword (line 833) | MonitoringGraphitiNeo4jPassword = "Neo4j Password" constant MonitoringGraphitiNeo4jPasswordDesc (line 834) | MonitoringGraphitiNeo4jPasswordDesc = "Password for Neo4j database access" constant MonitoringGraphitiNeo4jDatabase (line 835) | MonitoringGraphitiNeo4jDatabase = "Neo4j Database" constant MonitoringGraphitiNeo4jDatabaseDesc (line 836) | MonitoringGraphitiNeo4jDatabaseDesc = "Neo4j database name" constant MonitoringGraphitiModeGuide (line 839) | MonitoringGraphitiModeGuide = "Choose deployment: Embedded (local Neo... constant MonitoringGraphitiEmbeddedHelp (line 840) | MonitoringGraphitiEmbeddedHelp = `⚠️ BETA: This feature is under active... constant MonitoringGraphitiExternalHelp (line 861) | MonitoringGraphitiExternalHelp = `⚠️ BETA: This feature is under active... constant MonitoringGraphitiDisabledHelp (line 877) | MonitoringGraphitiDisabledHelp = `Graphiti is disabled. You will not have: constant MonitoringObservabilityFormTitle (line 893) | MonitoringObservabilityFormTitle = "Observability Configuration" constant MonitoringObservabilityFormDescription (line 894) | MonitoringObservabilityFormDescription = "Configuration of monitoring an... constant MonitoringObservabilityFormName (line 895) | MonitoringObservabilityFormName = "Observability" constant MonitoringObservabilityFormOverview (line 896) | MonitoringObservabilityFormOverview = `Observability stack includes: constant MonitoringObservabilityEmbedded (line 906) | MonitoringObservabilityEmbedded = "Embedded Stack" constant MonitoringObservabilityExternal (line 907) | MonitoringObservabilityExternal = "External Collector" constant MonitoringObservabilityDisabled (line 908) | MonitoringObservabilityDisabled = "Disabled" constant MonitoringObservabilityDeploymentType (line 911) | MonitoringObservabilityDeploymentType = "Deployment Type" constant MonitoringObservabilityDeploymentTypeDesc (line 912) | MonitoringObservabilityDeploymentTypeDesc = "Select the deployment type ... constant MonitoringObservabilityOTelHost (line 913) | MonitoringObservabilityOTelHost = "OpenTelemetry Host" constant MonitoringObservabilityOTelHostDesc (line 914) | MonitoringObservabilityOTelHostDesc = "Address of the external Ope... constant MonitoringObservabilityGrafanaListenIP (line 917) | MonitoringObservabilityGrafanaListenIP = "Grafana Listen IP" constant MonitoringObservabilityGrafanaListenIPDesc (line 918) | MonitoringObservabilityGrafanaListenIPDesc = "Bind address used by Do... constant MonitoringObservabilityGrafanaListenPort (line 919) | MonitoringObservabilityGrafanaListenPort = "Grafana Listen Port" constant MonitoringObservabilityGrafanaListenPortDesc (line 920) | MonitoringObservabilityGrafanaListenPortDesc = "External TCP port expos... constant MonitoringObservabilityOTelGrpcListenIP (line 921) | MonitoringObservabilityOTelGrpcListenIP = "OTel gRPC Listen IP" constant MonitoringObservabilityOTelGrpcListenIPDesc (line 922) | MonitoringObservabilityOTelGrpcListenIPDesc = "Bind address used by Do... constant MonitoringObservabilityOTelGrpcListenPort (line 923) | MonitoringObservabilityOTelGrpcListenPort = "OTel gRPC Listen Port" constant MonitoringObservabilityOTelGrpcListenPortDesc (line 924) | MonitoringObservabilityOTelGrpcListenPortDesc = "External TCP port expos... constant MonitoringObservabilityOTelHttpListenIP (line 925) | MonitoringObservabilityOTelHttpListenIP = "OTel HTTP Listen IP" constant MonitoringObservabilityOTelHttpListenIPDesc (line 926) | MonitoringObservabilityOTelHttpListenIPDesc = "Bind address used by Do... constant MonitoringObservabilityOTelHttpListenPort (line 927) | MonitoringObservabilityOTelHttpListenPort = "OTel HTTP Listen Port" constant MonitoringObservabilityOTelHttpListenPortDesc (line 928) | MonitoringObservabilityOTelHttpListenPortDesc = "External TCP port expos... constant MonitoringObservabilityModeGuide (line 931) | MonitoringObservabilityModeGuide = "Choose monitoring: Embedded (full... constant MonitoringObservabilityEmbeddedHelp (line 932) | MonitoringObservabilityEmbeddedHelp = `Embedded deploys complete monitor... constant MonitoringObservabilityExternalHelp (line 952) | MonitoringObservabilityExternalHelp = `External sends telemetry to your ... constant MonitoringObservabilityDisabledHelp (line 972) | MonitoringObservabilityDisabledHelp = `Observability is disabled. You wi... constant SummarizerTitle (line 988) | SummarizerTitle = "Summarizer Configuration" constant SummarizerDescription (line 989) | SummarizerDescription = "Enable conversation summarization to reduce LLM... constant SummarizerName (line 990) | SummarizerName = "Summarizer" constant SummarizerOverview (line 991) | SummarizerOverview = `Optimize context usage, reduce LLM costs, and m... constant SummarizerTypeGeneralName (line 1007) | SummarizerTypeGeneralName = "General Summarization" constant SummarizerTypeGeneralDesc (line 1008) | SummarizerTypeGeneralDesc = "Global summarization settings for conversat... constant SummarizerTypeGeneralInfo (line 1010) | SummarizerTypeGeneralInfo = `Choose this for maximum cost control and sh... constant SummarizerTypeAssistantName (line 1029) | SummarizerTypeAssistantName = "Assistant Summarization" constant SummarizerTypeAssistantDesc (line 1030) | SummarizerTypeAssistantDesc = "Specialized summarization settings for AI... constant SummarizerTypeAssistantInfo (line 1032) | SummarizerTypeAssistantInfo = `Choose this for optimal conversation qual... constant SummarizerFormGeneralTitle (line 1055) | SummarizerFormGeneralTitle = "General Summarizer Configuration" constant SummarizerFormAssistantTitle (line 1056) | SummarizerFormAssistantTitle = "Assistant Summarizer Configuration" constant SummarizerFormDescription (line 1057) | SummarizerFormDescription = "Configure %s Settings" constant SummarizerFormPreserveLast (line 1060) | SummarizerFormPreserveLast = "Size Management" constant SummarizerFormPreserveLastDesc (line 1061) | SummarizerFormPreserveLastDesc = "Controls last section compression. Ena... constant SummarizerFormUseQA (line 1063) | SummarizerFormUseQA = "QA Summarization" constant SummarizerFormUseQADesc (line 1064) | SummarizerFormUseQADesc = "Enables question-answer pair compression when... constant SummarizerFormSumHumanInQA (line 1066) | SummarizerFormSumHumanInQA = "Compress User Messages" constant SummarizerFormSumHumanInQADesc (line 1067) | SummarizerFormSumHumanInQADesc = "Include user messages in QA compressio... constant SummarizerFormLastSecBytes (line 1069) | SummarizerFormLastSecBytes = "Section Size Limit" constant SummarizerFormLastSecBytesDesc (line 1070) | SummarizerFormLastSecBytesDesc = "Maximum bytes per recent section when ... constant SummarizerFormMaxBPBytes (line 1072) | SummarizerFormMaxBPBytes = "Response Size Limit" constant SummarizerFormMaxBPBytesDesc (line 1073) | SummarizerFormMaxBPBytesDesc = "Maximum bytes for individual AI response... constant SummarizerFormMaxQASections (line 1075) | SummarizerFormMaxQASections = "QA Section Limit" constant SummarizerFormMaxQASectionsDesc (line 1076) | SummarizerFormMaxQASectionsDesc = "Maximum question-answer sections befo... constant SummarizerFormMaxQABytes (line 1078) | SummarizerFormMaxQABytes = "Total QA Memory" constant SummarizerFormMaxQABytesDesc (line 1079) | SummarizerFormMaxQABytesDesc = "Maximum bytes for all QA sections combin... constant SummarizerFormKeepQASections (line 1081) | SummarizerFormKeepQASections = "Recent Sections" constant SummarizerFormKeepQASectionsDesc (line 1082) | SummarizerFormKeepQASectionsDesc = "Number of most recent conversation s... constant SummarizerFormGeneralHelp (line 1085) | SummarizerFormGeneralHelp = `Context estimation: 4K-22K tokens (typical)... constant SummarizerFormAssistantHelp (line 1112) | SummarizerFormAssistantHelp = `Optimized for interactive conversations r... constant SummarizerContextEstimatedSize (line 1138) | SummarizerContextEstimatedSize = "Estimated context size: %s\n%s" constant SummarizerContextTokenRange (line 1139) | SummarizerContextTokenRange = "~%s tokens" constant SummarizerContextTokenRangeMinMax (line 1140) | SummarizerContextTokenRangeMinMax = "~%s-%s tokens" constant SummarizerContextRequires256K (line 1141) | SummarizerContextRequires256K = "Requires 256K+ context model" constant SummarizerContextRequires128K (line 1142) | SummarizerContextRequires128K = "Requires 128K+ context model" constant SummarizerContextRequires64K (line 1143) | SummarizerContextRequires64K = "Requires 64K+ context model" constant SummarizerContextRequires32K (line 1144) | SummarizerContextRequires32K = "Requires 32K+ context model" constant SummarizerContextRequires16K (line 1145) | SummarizerContextRequires16K = "Requires 16K+ context model" constant SummarizerContextFitsIn8K (line 1146) | SummarizerContextFitsIn8K = "Fits in 8K+ context model" constant ToolsTitle (line 1151) | ToolsTitle = "Tools Configuration" constant ToolsDescription (line 1152) | ToolsDescription = "Enhance agent capabilities with additional tools and... constant ToolsName (line 1153) | ToolsName = "Tools" constant ToolsOverview (line 1154) | ToolsOverview = `Configure additional tools and capabilities for AI a... constant ServerSettingsFormTitle (line 1168) | ServerSettingsFormTitle = "Server Settings" constant ServerSettingsFormDescription (line 1169) | ServerSettingsFormDescription = "Configure PentAGI server network access... constant ServerSettingsFormName (line 1170) | ServerSettingsFormName = "Server Settings" constant ServerSettingsFormOverview (line 1171) | ServerSettingsFormOverview = `• Network binding - control which inter... constant ServerSettingsLicenseKey (line 1179) | ServerSettingsLicenseKey = "License Key" constant ServerSettingsLicenseKeyDesc (line 1180) | ServerSettingsLicenseKeyDesc = "PentAGI License Key in format of XXXX-XX... constant ServerSettingsHost (line 1182) | ServerSettingsHost = "Server Host (Listen IP)" constant ServerSettingsHostDesc (line 1183) | ServerSettingsHostDesc = "Bind address used by Docker port mapping (e.g.... constant ServerSettingsPort (line 1185) | ServerSettingsPort = "Server Port (Listen Port)" constant ServerSettingsPortDesc (line 1186) | ServerSettingsPortDesc = "External TCP port exposed by Docker for PentAG... constant ServerSettingsPublicURL (line 1188) | ServerSettingsPublicURL = "Public URL" constant ServerSettingsPublicURLDesc (line 1189) | ServerSettingsPublicURLDesc = "Base public URL for redirects and links (... constant ServerSettingsCORSOrigins (line 1191) | ServerSettingsCORSOrigins = "CORS Origins" constant ServerSettingsCORSOriginsDesc (line 1192) | ServerSettingsCORSOriginsDesc = "Comma-separated list of allowed origins... constant ServerSettingsProxyURL (line 1194) | ServerSettingsProxyURL = "HTTP/HTTPS Proxy" constant ServerSettingsProxyURLDesc (line 1195) | ServerSettingsProxyURLDesc = "Proxy for outbound requests to LLMs and ex... constant ServerSettingsProxyUsername (line 1197) | ServerSettingsProxyUsername = "Proxy Username" constant ServerSettingsProxyUsernameDesc (line 1198) | ServerSettingsProxyUsernameDesc = "Username for proxy authentication (op... constant ServerSettingsProxyPassword (line 1199) | ServerSettingsProxyPassword = "Proxy Password" constant ServerSettingsProxyPasswordDesc (line 1200) | ServerSettingsProxyPasswordDesc = "Password for proxy authentication (op... constant ServerSettingsHTTPClientTimeout (line 1202) | ServerSettingsHTTPClientTimeout = "HTTP Client Timeout" constant ServerSettingsHTTPClientTimeoutDesc (line 1203) | ServerSettingsHTTPClientTimeoutDesc = "Timeout in seconds for external A... constant ServerSettingsExternalSSLCAPath (line 1205) | ServerSettingsExternalSSLCAPath = "Custom CA Certificate Path" constant ServerSettingsExternalSSLCAPathDesc (line 1206) | ServerSettingsExternalSSLCAPathDesc = "Path inside container to custom r... constant ServerSettingsExternalSSLInsecure (line 1208) | ServerSettingsExternalSSLInsecure = "Skip SSL Verification" constant ServerSettingsExternalSSLInsecureDesc (line 1209) | ServerSettingsExternalSSLInsecureDesc = "Disable SSL/TLS certificate val... constant ServerSettingsSSLDir (line 1211) | ServerSettingsSSLDir = "SSL Directory" constant ServerSettingsSSLDirDesc (line 1212) | ServerSettingsSSLDirDesc = "Directory containing server.crt and server.k... constant ServerSettingsDataDir (line 1214) | ServerSettingsDataDir = "Data Directory" constant ServerSettingsDataDirDesc (line 1215) | ServerSettingsDataDirDesc = "Directory for all agent-generated files; co... constant ServerSettingsCookieSigningSalt (line 1217) | ServerSettingsCookieSigningSalt = "Cookie Signing Salt" constant ServerSettingsCookieSigningSaltDesc (line 1218) | ServerSettingsCookieSigningSaltDesc = "Secret used to sign cookies (keep... constant ServerSettingsLicenseKeyHint (line 1221) | ServerSettingsLicenseKeyHint = "License Key" constant ServerSettingsHostHint (line 1222) | ServerSettingsHostHint = "Listen IP" constant ServerSettingsPortHint (line 1223) | ServerSettingsPortHint = "Listen Port" constant ServerSettingsPublicURLHint (line 1224) | ServerSettingsPublicURLHint = "Public URL" constant ServerSettingsCORSOriginsHint (line 1225) | ServerSettingsCORSOriginsHint = "CORS Origins" constant ServerSettingsProxyURLHint (line 1226) | ServerSettingsProxyURLHint = "Proxy URL" constant ServerSettingsProxyUsernameHint (line 1227) | ServerSettingsProxyUsernameHint = "Proxy Username" constant ServerSettingsProxyPasswordHint (line 1228) | ServerSettingsProxyPasswordHint = "Proxy Password" constant ServerSettingsHTTPClientTimeoutHint (line 1229) | ServerSettingsHTTPClientTimeoutHint = "HTTP Timeout" constant ServerSettingsExternalSSLCAPathHint (line 1230) | ServerSettingsExternalSSLCAPathHint = "Custom CA Path" constant ServerSettingsExternalSSLInsecureHint (line 1231) | ServerSettingsExternalSSLInsecureHint = "Skip SSL Verification" constant ServerSettingsSSLDirHint (line 1232) | ServerSettingsSSLDirHint = "SSL Directory" constant ServerSettingsDataDirHint (line 1233) | ServerSettingsDataDirHint = "Data Directory" constant ServerSettingsGeneralHelp (line 1236) | ServerSettingsGeneralHelp = `PentAGI exposes its web UI via Docker with ... constant ServerSettingsLicenseKeyHelp (line 1242) | ServerSettingsLicenseKeyHelp = `PentAGI License Key in format of XXXX-XX... constant ServerSettingsHostHelp (line 1244) | ServerSettingsHostHelp = `Bind address for published port in docker-comp... constant ServerSettingsPortHelp (line 1250) | ServerSettingsPortHelp = `External port for PentAGI UI. Must be availabl... constant ServerSettingsPublicURLHelp (line 1252) | ServerSettingsPublicURLHelp = `Set the public base URL used in redirects... constant ServerSettingsCORSOriginsHelp (line 1259) | ServerSettingsCORSOriginsHelp = `Comma-separated allowed origins for bro... constant ServerSettingsProxyURLHelp (line 1261) | ServerSettingsProxyURLHelp = `HTTP or HTTPS proxy for outbound requests ... constant ServerSettingsHTTPClientTimeoutHelp (line 1263) | ServerSettingsHTTPClientTimeoutHelp = `Timeout in seconds for all extern... constant ServerSettingsExternalSSLCAPathHelp (line 1273) | ServerSettingsExternalSSLCAPathHelp = `Path to custom CA certificate fil... constant ServerSettingsExternalSSLInsecureHelp (line 1283) | ServerSettingsExternalSSLInsecureHelp = `Disable SSL/TLS certificate val... constant ServerSettingsSSLDirHelp (line 1289) | ServerSettingsSSLDirHelp = `Path to directory with server.crt and server... constant ServerSettingsDataDirHelp (line 1291) | ServerSettingsDataDirHelp = `Host directory for persistent data. PentAGI... constant ServerSettingsCookieSigningSaltHelp (line 1293) | ServerSettingsCookieSigningSaltHelp = `Secret salt used to sign cookies.... constant ToolsAIAgentsSettingsFormTitle (line 1299) | ToolsAIAgentsSettingsFormTitle = "AI Agents Settings" constant ToolsAIAgentsSettingsFormDescription (line 1300) | ToolsAIAgentsSettingsFormDescription = "Configure global behavior for AI... constant ToolsAIAgentsSettingsFormName (line 1301) | ToolsAIAgentsSettingsFormName = "AI Agents Settings" constant ToolsAIAgentsSettingsFormOverview (line 1302) | ToolsAIAgentsSettingsFormOverview = `This section configures global b... constant ToolsAIAgentsSettingHumanInTheLoop (line 1323) | ToolsAIAgentsSettingHumanInTheLoop = "Enable User Interaction" constant ToolsAIAgentsSettingHumanInTheLoopDesc (line 1324) | ToolsAIAgentsSettingHumanInTheLoopDesc = "Allow agents to ask for u... constant ToolsAIAgentsSettingUseAgents (line 1325) | ToolsAIAgentsSettingUseAgents = "Use Multi-Agent Mode" constant ToolsAIAgentsSettingUseAgentsDesc (line 1326) | ToolsAIAgentsSettingUseAgentsDesc = "Enable assistant to orche... constant ToolsAIAgentsSettingExecutionMonitor (line 1327) | ToolsAIAgentsSettingExecutionMonitor = "Enable Execution Monitori... constant ToolsAIAgentsSettingExecutionMonitorDesc (line 1328) | ToolsAIAgentsSettingExecutionMonitorDesc = "Automatically invoke ment... constant ToolsAIAgentsSettingSameToolLimit (line 1329) | ToolsAIAgentsSettingSameToolLimit = "Same Tool Call Threshold" constant ToolsAIAgentsSettingSameToolLimitDesc (line 1330) | ToolsAIAgentsSettingSameToolLimitDesc = "Consecutive identical too... constant ToolsAIAgentsSettingTotalToolLimit (line 1331) | ToolsAIAgentsSettingTotalToolLimit = "Total Tool Call Threshold" constant ToolsAIAgentsSettingTotalToolLimitDesc (line 1332) | ToolsAIAgentsSettingTotalToolLimitDesc = "Total tool calls before m... constant ToolsAIAgentsSettingMaxGeneralToolCalls (line 1333) | ToolsAIAgentsSettingMaxGeneralToolCalls = "Max Tool Calls (General A... constant ToolsAIAgentsSettingMaxGeneralToolCallsDesc (line 1334) | ToolsAIAgentsSettingMaxGeneralToolCallsDesc = "Maximum tool calls for As... constant ToolsAIAgentsSettingMaxLimitedToolCalls (line 1335) | ToolsAIAgentsSettingMaxLimitedToolCalls = "Max Tool Calls (Limited A... constant ToolsAIAgentsSettingMaxLimitedToolCallsDesc (line 1336) | ToolsAIAgentsSettingMaxLimitedToolCallsDesc = "Maximum tool calls for Se... constant ToolsAIAgentsSettingTaskPlanning (line 1337) | ToolsAIAgentsSettingTaskPlanning = "Enable Task Planning (beta)" constant ToolsAIAgentsSettingTaskPlanningDesc (line 1338) | ToolsAIAgentsSettingTaskPlanningDesc = "Generate structured execu... constant ToolsAIAgentsSettingsHelp (line 1341) | ToolsAIAgentsSettingsHelp = `AI Agents Settings define how agents collab... constant ToolsSearchEnginesFormTitle (line 1371) | ToolsSearchEnginesFormTitle = "Search Engines Configuration" constant ToolsSearchEnginesFormDescription (line 1372) | ToolsSearchEnginesFormDescription = "Configure search engines for AI age... constant ToolsSearchEnginesFormName (line 1373) | ToolsSearchEnginesFormName = "Search Engines" constant ToolsSearchEnginesFormOverview (line 1374) | ToolsSearchEnginesFormOverview = `Available search engines: constant ToolsSearchEnginesDuckDuckGo (line 1389) | ToolsSearchEnginesDuckDuckGo = "DuckDuckGo Search" constant ToolsSearchEnginesDuckDuckGoDesc (line 1390) | ToolsSearchEnginesDuckDuckGoDesc = "Enable DuckDuckGo search (... constant ToolsSearchEnginesDuckDuckGoRegion (line 1391) | ToolsSearchEnginesDuckDuckGoRegion = "DuckDuckGo Region" constant ToolsSearchEnginesDuckDuckGoRegionDesc (line 1392) | ToolsSearchEnginesDuckDuckGoRegionDesc = "DuckDuckGo region code (e.... constant ToolsSearchEnginesDuckDuckGoSafeSearch (line 1393) | ToolsSearchEnginesDuckDuckGoSafeSearch = "DuckDuckGo Safe Search" constant ToolsSearchEnginesDuckDuckGoSafeSearchDesc (line 1394) | ToolsSearchEnginesDuckDuckGoSafeSearchDesc = "DuckDuckGo safe search (st... constant ToolsSearchEnginesDuckDuckGoTimeRange (line 1395) | ToolsSearchEnginesDuckDuckGoTimeRange = "DuckDuckGo Time Range" constant ToolsSearchEnginesDuckDuckGoTimeRangeDesc (line 1396) | ToolsSearchEnginesDuckDuckGoTimeRangeDesc = "DuckDuckGo time range (d: ... constant ToolsSearchEnginesSploitus (line 1397) | ToolsSearchEnginesSploitus = "Sploitus Search" constant ToolsSearchEnginesSploitusDesc (line 1398) | ToolsSearchEnginesSploitusDesc = "Enable Sploitus search for... constant ToolsSearchEnginesPerplexityKey (line 1399) | ToolsSearchEnginesPerplexityKey = "Perplexity API Key" constant ToolsSearchEnginesPerplexityKeyDesc (line 1400) | ToolsSearchEnginesPerplexityKeyDesc = "API key for Perplexity AI ... constant ToolsSearchEnginesTavilyKey (line 1401) | ToolsSearchEnginesTavilyKey = "Tavily API Key" constant ToolsSearchEnginesTavilyKeyDesc (line 1402) | ToolsSearchEnginesTavilyKeyDesc = "API key for Tavily search ... constant ToolsSearchEnginesTraversaalKey (line 1403) | ToolsSearchEnginesTraversaalKey = "Traversaal API Key" constant ToolsSearchEnginesTraversaalKeyDesc (line 1404) | ToolsSearchEnginesTraversaalKeyDesc = "API key for Traversaal web... constant ToolsSearchEnginesGoogleKey (line 1405) | ToolsSearchEnginesGoogleKey = "Google Search API Key" constant ToolsSearchEnginesGoogleKeyDesc (line 1406) | ToolsSearchEnginesGoogleKeyDesc = "Google Custom Search API key" constant ToolsSearchEnginesGoogleCX (line 1407) | ToolsSearchEnginesGoogleCX = "Google Search Engine ID" constant ToolsSearchEnginesGoogleCXDesc (line 1408) | ToolsSearchEnginesGoogleCXDesc = "Google Custom Search Engin... constant ToolsSearchEnginesGoogleLR (line 1409) | ToolsSearchEnginesGoogleLR = "Google Language Restriction" constant ToolsSearchEnginesGoogleLRDesc (line 1410) | ToolsSearchEnginesGoogleLRDesc = "Google Search Engine langu... constant ToolsSearchEnginesSearxngURL (line 1411) | ToolsSearchEnginesSearxngURL = "Searxng Search URL" constant ToolsSearchEnginesSearxngURLDesc (line 1412) | ToolsSearchEnginesSearxngURLDesc = "Searxng search engine URL" constant ToolsSearchEnginesSearxngCategories (line 1413) | ToolsSearchEnginesSearxngCategories = "Searxng Search Categories" constant ToolsSearchEnginesSearxngCategoriesDesc (line 1414) | ToolsSearchEnginesSearxngCategoriesDesc = "Searxng search engine cate... constant ToolsSearchEnginesSearxngLanguage (line 1415) | ToolsSearchEnginesSearxngLanguage = "Searxng Search Language" constant ToolsSearchEnginesSearxngLanguageDesc (line 1416) | ToolsSearchEnginesSearxngLanguageDesc = "Searxng search engine lang... constant ToolsSearchEnginesSearxngSafeSearch (line 1417) | ToolsSearchEnginesSearxngSafeSearch = "Searxng Safe Search" constant ToolsSearchEnginesSearxngSafeSearchDesc (line 1418) | ToolsSearchEnginesSearxngSafeSearchDesc = "Searxng search engine safe... constant ToolsSearchEnginesSearxngTimeRange (line 1419) | ToolsSearchEnginesSearxngTimeRange = "Searxng Time Range" constant ToolsSearchEnginesSearxngTimeRangeDesc (line 1420) | ToolsSearchEnginesSearxngTimeRangeDesc = "Searxng search engine time... constant ToolsSearchEnginesSearxngTimeout (line 1421) | ToolsSearchEnginesSearxngTimeout = "Searxng Timeout" constant ToolsSearchEnginesSearxngTimeoutDesc (line 1422) | ToolsSearchEnginesSearxngTimeoutDesc = "Searxng request timeout in... constant ToolsScraperFormTitle (line 1427) | ToolsScraperFormTitle = "Scraper Configuration" constant ToolsScraperFormDescription (line 1428) | ToolsScraperFormDescription = "Configure web scraping service" constant ToolsScraperFormName (line 1429) | ToolsScraperFormName = "Scraper" constant ToolsScraperFormOverview (line 1430) | ToolsScraperFormOverview = `Web scraper service for content extractio... constant ToolsScraperModeTitle (line 1445) | ToolsScraperModeTitle = "Scraper Mode" constant ToolsScraperModeDesc (line 1446) | ToolsScraperModeDesc = "Select how the scraper service ... constant ToolsScraperEmbedded (line 1447) | ToolsScraperEmbedded = "Embedded Container" constant ToolsScraperExternal (line 1448) | ToolsScraperExternal = "External Service" constant ToolsScraperDisabled (line 1449) | ToolsScraperDisabled = "Disabled" constant ToolsScraperPublicURL (line 1450) | ToolsScraperPublicURL = "Public Scraper URL" constant ToolsScraperPublicURLDesc (line 1451) | ToolsScraperPublicURLDesc = "URL for scraping public/externa... constant ToolsScraperPublicURLEmbeddedDesc (line 1452) | ToolsScraperPublicURLEmbeddedDesc = "URL for embedded scraper (optio... constant ToolsScraperPrivateURL (line 1453) | ToolsScraperPrivateURL = "Private Scraper URL" constant ToolsScraperPrivateURLDesc (line 1454) | ToolsScraperPrivateURLDesc = "URL for scraping private/intern... constant ToolsScraperPublicUsername (line 1455) | ToolsScraperPublicUsername = "Public URL Username" constant ToolsScraperPublicUsernameDesc (line 1456) | ToolsScraperPublicUsernameDesc = "Username for public scraper acc... constant ToolsScraperPublicPassword (line 1457) | ToolsScraperPublicPassword = "Public URL Password" constant ToolsScraperPublicPasswordDesc (line 1458) | ToolsScraperPublicPasswordDesc = "Password for public scraper acc... constant ToolsScraperPrivateUsername (line 1459) | ToolsScraperPrivateUsername = "Private URL Username" constant ToolsScraperPrivateUsernameDesc (line 1460) | ToolsScraperPrivateUsernameDesc = "Username for private scraper ac... constant ToolsScraperPrivatePassword (line 1461) | ToolsScraperPrivatePassword = "Private URL Password" constant ToolsScraperPrivatePasswordDesc (line 1462) | ToolsScraperPrivatePasswordDesc = "Password for private scraper ac... constant ToolsScraperLocalUsername (line 1463) | ToolsScraperLocalUsername = "Local URL Username" constant ToolsScraperLocalUsernameDesc (line 1464) | ToolsScraperLocalUsernameDesc = "Username for embedded scraper s... constant ToolsScraperLocalPassword (line 1465) | ToolsScraperLocalPassword = "Local URL Password" constant ToolsScraperLocalPasswordDesc (line 1466) | ToolsScraperLocalPasswordDesc = "Password for embedded scraper s... constant ToolsScraperMaxConcurrentSessions (line 1467) | ToolsScraperMaxConcurrentSessions = "Max Concurrent Sessions" constant ToolsScraperMaxConcurrentSessionsDesc (line 1468) | ToolsScraperMaxConcurrentSessionsDesc = "Maximum number of concurrent sc... constant ToolsScraperEmbeddedHelp (line 1469) | ToolsScraperEmbeddedHelp = "Embedded mode runs a local scra... constant ToolsScraperExternalHelp (line 1470) | ToolsScraperExternalHelp = "External mode uses separate scr... constant ToolsScraperDisabledHelp (line 1471) | ToolsScraperDisabledHelp = "Scraper is disabled. Web conten... constant ToolsDockerFormTitle (line 1476) | ToolsDockerFormTitle = "Docker Environment Configuration" constant ToolsDockerFormDescription (line 1477) | ToolsDockerFormDescription = "Configure Docker environment for worker co... constant ToolsDockerFormName (line 1478) | ToolsDockerFormName = "Docker Environment" constant ToolsDockerFormOverview (line 1479) | ToolsDockerFormOverview = `• Worker Isolation - Containers provide se... constant ToolsDockerGeneralHelp (line 1488) | ToolsDockerGeneralHelp = `Each AI agent task runs in an isolated Docker ... constant ToolsDockerInside (line 1499) | ToolsDockerInside = "Docker Access" constant ToolsDockerInsideDesc (line 1500) | ToolsDockerInsideDesc = "Allow workers to manage Docker containers" constant ToolsDockerNetAdmin (line 1501) | ToolsDockerNetAdmin = "Network Admin" constant ToolsDockerNetAdminDesc (line 1502) | ToolsDockerNetAdminDesc = "Grant NET_ADMIN capability for network scanni... constant ToolsDockerSocket (line 1505) | ToolsDockerSocket = "Docker Socket" constant ToolsDockerSocketDesc (line 1506) | ToolsDockerSocketDesc = "Path to Docker socket on host filesystem" constant ToolsDockerNetwork (line 1507) | ToolsDockerNetwork = "Docker Network" constant ToolsDockerNetworkDesc (line 1508) | ToolsDockerNetworkDesc = "Custom network name for worker containers" constant ToolsDockerPublicIP (line 1509) | ToolsDockerPublicIP = "Public IP Address" constant ToolsDockerPublicIPDesc (line 1510) | ToolsDockerPublicIPDesc = "Public IP for reverse connections in OOB atta... constant ToolsDockerWorkDir (line 1513) | ToolsDockerWorkDir = "Work Directory" constant ToolsDockerWorkDirDesc (line 1514) | ToolsDockerWorkDirDesc = "Host directory for worker filesystems (default... constant ToolsDockerDefaultImage (line 1517) | ToolsDockerDefaultImage = "Default Image" constant ToolsDockerDefaultImageDesc (line 1518) | ToolsDockerDefaultImageDesc = "Default Docker image for genera... constant ToolsDockerDefaultImageForPentest (line 1519) | ToolsDockerDefaultImageForPentest = "Pentesting Image" constant ToolsDockerDefaultImageForPentestDesc (line 1520) | ToolsDockerDefaultImageForPentestDesc = "Default Docker image for securi... constant ToolsDockerHost (line 1523) | ToolsDockerHost = "Docker Host" constant ToolsDockerHostDesc (line 1524) | ToolsDockerHostDesc = "Docker daemon connection (unix:// or tcp://)" constant ToolsDockerTLSVerify (line 1525) | ToolsDockerTLSVerify = "TLS Verification" constant ToolsDockerTLSVerifyDesc (line 1526) | ToolsDockerTLSVerifyDesc = "Enable TLS verification for Docker connection" constant ToolsDockerCertPath (line 1527) | ToolsDockerCertPath = "TLS Certificates" constant ToolsDockerCertPathDesc (line 1528) | ToolsDockerCertPathDesc = "Directory containing ca.pem, cert.pem, key.p... constant ToolsDockerInsideHelp (line 1531) | ToolsDockerInsideHelp = `Docker Access enables workers to spawn addition... constant ToolsDockerNetAdminHelp (line 1535) | ToolsDockerNetAdminHelp = `Network Admin capability allows workers to pe... constant ToolsDockerSocketHelp (line 1545) | ToolsDockerSocketHelp = `Docker Socket path defines how workers access t... constant ToolsDockerNetworkHelp (line 1552) | ToolsDockerNetworkHelp = `Custom Docker Network provides isolation for w... constant ToolsDockerPublicIPHelp (line 1560) | ToolsDockerPublicIPHelp = `Public IP Address enables out-of-band (OOB) a... constant ToolsDockerWorkDirHelp (line 1566) | ToolsDockerWorkDirHelp = `Work Directory specifies host filesystem locat... constant ToolsDockerDefaultImageHelp (line 1578) | ToolsDockerDefaultImageHelp = `Default Image provides fallback for worke... constant ToolsDockerDefaultImageForPentestHelp (line 1582) | ToolsDockerDefaultImageForPentestHelp = `Pentesting Image serves as defa... constant ToolsDockerHostHelp (line 1586) | ToolsDockerHostHelp = `Docker Host uses for start primary worker contain... constant ToolsDockerTLSVerifyHelp (line 1594) | ToolsDockerTLSVerifyHelp = `TLS Verification secures Docker daemon conne... constant ToolsDockerCertPathHelp (line 1598) | ToolsDockerCertPathHelp = `TLS Certificates directory must contain: constant EmbedderFormTitle (line 1610) | EmbedderFormTitle = "Embedder Configuration" constant EmbedderFormDescription (line 1611) | EmbedderFormDescription = "Configure text vectorization for semantic sea... constant EmbedderFormName (line 1612) | EmbedderFormName = "Embedder" constant EmbedderFormOverview (line 1613) | EmbedderFormOverview = `Text embeddings convert documents into vector... constant EmbedderFormProvider (line 1618) | EmbedderFormProvider = "Embedding Provider" constant EmbedderFormProviderDesc (line 1619) | EmbedderFormProviderDesc = "Select the provider for text vectorization. ... constant EmbedderFormURL (line 1621) | EmbedderFormURL = "API Endpoint URL" constant EmbedderFormURLDesc (line 1622) | EmbedderFormURLDesc = "Custom API endpoint (leave empty to use default)" constant EmbedderFormAPIKey (line 1624) | EmbedderFormAPIKey = "API Key" constant EmbedderFormAPIKeyDesc (line 1625) | EmbedderFormAPIKeyDesc = "Authentication key for the provider (not requi... constant EmbedderFormModel (line 1627) | EmbedderFormModel = "Model Name" constant EmbedderFormModelDesc (line 1628) | EmbedderFormModelDesc = "Specific embedding model to use (leave empty fo... constant EmbedderFormBatchSize (line 1630) | EmbedderFormBatchSize = "Batch Size" constant EmbedderFormBatchSizeDesc (line 1631) | EmbedderFormBatchSizeDesc = "Number of documents to process in a single ... constant EmbedderFormStripNewLines (line 1633) | EmbedderFormStripNewLines = "Strip New Lines" constant EmbedderFormStripNewLinesDesc (line 1634) | EmbedderFormStripNewLinesDesc = "Remove line breaks from text before emb... constant EmbedderFormHelpTitle (line 1636) | EmbedderFormHelpTitle = "Embedding Configuration" constant EmbedderFormHelpContent (line 1637) | EmbedderFormHelpContent = `Configure text vectorization for semantic sea... constant EmbedderFormHelpOpenAI (line 1643) | EmbedderFormHelpOpenAI = "OpenAI: Most reliable option with excelle... constant EmbedderFormHelpOllama (line 1644) | EmbedderFormHelpOllama = "Ollama: Local embeddings, no API key need... constant EmbedderFormHelpHuggingFace (line 1645) | EmbedderFormHelpHuggingFace = "HuggingFace: Open source models with API ... constant EmbedderFormHelpGoogleAI (line 1646) | EmbedderFormHelpGoogleAI = "Google AI: Quality embeddings, requires A... constant EmbedderProviderDefault (line 1649) | EmbedderProviderDefault = "Default (OpenAI)" constant EmbedderProviderDefaultDesc (line 1650) | EmbedderProviderDefaultDesc = "Use OpenAI embeddings with API key fr... constant EmbedderProviderOpenAI (line 1651) | EmbedderProviderOpenAI = "OpenAI" constant EmbedderProviderOpenAIDesc (line 1652) | EmbedderProviderOpenAIDesc = "OpenAI text embeddings API (text-embe... constant EmbedderProviderOllama (line 1653) | EmbedderProviderOllama = "Ollama" constant EmbedderProviderOllamaDesc (line 1654) | EmbedderProviderOllamaDesc = "Local Ollama server for open-source e... constant EmbedderProviderMistral (line 1655) | EmbedderProviderMistral = "Mistral" constant EmbedderProviderMistralDesc (line 1656) | EmbedderProviderMistralDesc = "Mistral AI embedding models" constant EmbedderProviderJina (line 1657) | EmbedderProviderJina = "Jina" constant EmbedderProviderJinaDesc (line 1658) | EmbedderProviderJinaDesc = "Jina AI embedding API" constant EmbedderProviderHuggingFace (line 1659) | EmbedderProviderHuggingFace = "HuggingFace" constant EmbedderProviderHuggingFaceDesc (line 1660) | EmbedderProviderHuggingFaceDesc = "HuggingFace inference API for embeddi... constant EmbedderProviderGoogleAI (line 1661) | EmbedderProviderGoogleAI = "Google AI" constant EmbedderProviderGoogleAIDesc (line 1662) | EmbedderProviderGoogleAIDesc = "Google AI embedding models (embedding... constant EmbedderProviderVoyageAI (line 1663) | EmbedderProviderVoyageAI = "VoyageAI" constant EmbedderProviderVoyageAIDesc (line 1664) | EmbedderProviderVoyageAIDesc = "VoyageAI embedding API" constant EmbedderProviderDisabled (line 1665) | EmbedderProviderDisabled = "Disabled" constant EmbedderProviderDisabledDesc (line 1666) | EmbedderProviderDisabledDesc = "Disable embeddings functionality comp... constant EmbedderURLPlaceholderOpenAI (line 1669) | EmbedderURLPlaceholderOpenAI = "https://api.openai.com/v1" constant EmbedderURLPlaceholderOllama (line 1670) | EmbedderURLPlaceholderOllama = "http://localhost:11434" constant EmbedderURLPlaceholderMistral (line 1671) | EmbedderURLPlaceholderMistral = "https://api.mistral.ai/v1" constant EmbedderURLPlaceholderJina (line 1672) | EmbedderURLPlaceholderJina = "https://api.jina.ai/v1" constant EmbedderURLPlaceholderHuggingFace (line 1673) | EmbedderURLPlaceholderHuggingFace = "https://api-inference.huggingface.co" constant EmbedderURLPlaceholderGoogleAI (line 1674) | EmbedderURLPlaceholderGoogleAI = "Not supported - uses default endpoint" constant EmbedderURLPlaceholderVoyageAI (line 1675) | EmbedderURLPlaceholderVoyageAI = "Not supported - uses default endpoint" constant EmbedderAPIKeyPlaceholderOllama (line 1677) | EmbedderAPIKeyPlaceholderOllama = "Not required for local models" constant EmbedderAPIKeyPlaceholderMistral (line 1678) | EmbedderAPIKeyPlaceholderMistral = "Mistral API key" constant EmbedderAPIKeyPlaceholderJina (line 1679) | EmbedderAPIKeyPlaceholderJina = "Jina API key" constant EmbedderAPIKeyPlaceholderHuggingFace (line 1680) | EmbedderAPIKeyPlaceholderHuggingFace = "HuggingFace API key" constant EmbedderAPIKeyPlaceholderGoogleAI (line 1681) | EmbedderAPIKeyPlaceholderGoogleAI = "Google AI API key" constant EmbedderAPIKeyPlaceholderVoyageAI (line 1682) | EmbedderAPIKeyPlaceholderVoyageAI = "VoyageAI API key" constant EmbedderAPIKeyPlaceholderDefault (line 1683) | EmbedderAPIKeyPlaceholderDefault = "API key for the provider" constant EmbedderModelPlaceholderOpenAI (line 1685) | EmbedderModelPlaceholderOpenAI = "text-embedding-3-small" constant EmbedderModelPlaceholderOllama (line 1686) | EmbedderModelPlaceholderOllama = "nomic-embed-text" constant EmbedderModelPlaceholderMistral (line 1687) | EmbedderModelPlaceholderMistral = "mistral-embed" constant EmbedderModelPlaceholderJina (line 1688) | EmbedderModelPlaceholderJina = "jina-embeddings-v2-base-en" constant EmbedderModelPlaceholderHuggingFace (line 1689) | EmbedderModelPlaceholderHuggingFace = "sentence-transformers/all-MiniLM-... constant EmbedderModelPlaceholderGoogleAI (line 1690) | EmbedderModelPlaceholderGoogleAI = "gemini-embedding-001" constant EmbedderModelPlaceholderVoyageAI (line 1691) | EmbedderModelPlaceholderVoyageAI = "voyage-2" constant EmbedderModelPlaceholderDefault (line 1692) | EmbedderModelPlaceholderDefault = "Model name" constant EmbedderProviderIDDefault (line 1695) | EmbedderProviderIDDefault = "default" constant EmbedderProviderIDOpenAI (line 1696) | EmbedderProviderIDOpenAI = "openai" constant EmbedderProviderIDOllama (line 1697) | EmbedderProviderIDOllama = "ollama" constant EmbedderProviderIDMistral (line 1698) | EmbedderProviderIDMistral = "mistral" constant EmbedderProviderIDJina (line 1699) | EmbedderProviderIDJina = "jina" constant EmbedderProviderIDHuggingFace (line 1700) | EmbedderProviderIDHuggingFace = "huggingface" constant EmbedderProviderIDGoogleAI (line 1701) | EmbedderProviderIDGoogleAI = "googleai" constant EmbedderProviderIDVoyageAI (line 1702) | EmbedderProviderIDVoyageAI = "voyageai" constant EmbedderProviderIDDisabled (line 1703) | EmbedderProviderIDDisabled = "none" constant EmbedderHelpGeneral (line 1705) | EmbedderHelpGeneral = `Embeddings convert text into vectors for semantic... constant EmbedderHelpAttentionPrefix (line 1717) | EmbedderHelpAttentionPrefix = "Important:" constant EmbedderHelpAttention (line 1718) | EmbedderHelpAttention = `Different embedding providers create inco... constant EmbedderHelpAttentionSuffix (line 1725) | EmbedderHelpAttentionSuffix = `Only change providers if absolutely neces... constant EmbedderHelpDefault (line 1728) | EmbedderHelpDefault = `Default mode uses OpenAI embeddings with the API ... constant EmbedderHelpOpenAI (line 1732) | EmbedderHelpOpenAI = `Direct OpenAI API access for embedding generation. constant EmbedderHelpOllama (line 1742) | EmbedderHelpOllama = `Local Ollama server for open-source embedding models. constant EmbedderHelpMistral (line 1754) | EmbedderHelpMistral = `Mistral AI embedding models via API. constant EmbedderHelpJina (line 1762) | EmbedderHelpJina = `Jina AI embedding API with specialized models. constant EmbedderHelpHuggingFace (line 1772) | EmbedderHelpHuggingFace = `HuggingFace Inference API for open-source mod... constant EmbedderHelpGoogleAI (line 1782) | EmbedderHelpGoogleAI = `Google AI embedding models (Gemini). constant EmbedderHelpVoyageAI (line 1793) | EmbedderHelpVoyageAI = `VoyageAI embedding API optimized for retrieval. constant EmbedderHelpDisabled (line 1803) | EmbedderHelpDisabled = `Disables all embedding functionality. constant MockScreenTitle (line 1815) | MockScreenTitle = "Development Screen" constant MockScreenDescription (line 1816) | MockScreenDescription = "This screen is under development" constant ApplyChangesFormTitle (line 1821) | ApplyChangesFormTitle = "Apply Configuration Changes" constant ApplyChangesFormName (line 1822) | ApplyChangesFormName = "Apply Changes" constant ApplyChangesFormDescription (line 1823) | ApplyChangesFormDescription = "Review and apply your configuration changes" constant ApplyChangesFormOverview (line 1826) | ApplyChangesFormOverview = `This screen allows you to review all pending... constant ApplyChangesNotStarted (line 1834) | ApplyChangesNotStarted = "Configuration changes are ready to be appl... constant ApplyChangesInProgress (line 1835) | ApplyChangesInProgress = "Applying configuration changes...\n" constant ApplyChangesCompleted (line 1836) | ApplyChangesCompleted = "Configuration changes have been successful... constant ApplyChangesFailed (line 1837) | ApplyChangesFailed = "Failed to perform configuration changes" constant ApplyChangesResetCompleted (line 1838) | ApplyChangesResetCompleted = "Configuration changes have been successful... constant ApplyChangesTerminalIsNotInitialized (line 1840) | ApplyChangesTerminalIsNotInitialized = "Terminal is not initialized" constant ApplyChangesInstructions (line 1843) | ApplyChangesInstructions = `Press Enter to begin applying the configurat... constant ApplyChangesNoChanges (line 1845) | ApplyChangesNoChanges = "No configuration changes are pending" constant ApplyChangesInstallNotFound (line 1848) | ApplyChangesInstallNotFound = `PentAGI is not currently installed on thi... constant ApplyChangesInstallFoundLangfuse (line 1855) | ApplyChangesInstallFoundLangfuse = `• Installation of Langfuse obse... constant ApplyChangesInstallFoundObservability (line 1856) | ApplyChangesInstallFoundObservability = `• Installation of comprehensive... constant ApplyChangesUpdateFound (line 1858) | ApplyChangesUpdateFound = `PentAGI is currently installed on this system. constant ApplyChangesWarningCritical (line 1866) | ApplyChangesWarningCritical = "⚠️ Critical changes detected - services ... constant ApplyChangesWarningSecrets (line 1867) | ApplyChangesWarningSecrets = "🔒 Secret values detected - they will be s... constant ApplyChangesNoteBackup (line 1868) | ApplyChangesNoteBackup = "💾 Current configuration will be backed up... constant ApplyChangesNoteTime (line 1869) | ApplyChangesNoteTime = "⏱️ This process may take less than a min... constant ApplyChangesStageValidation (line 1872) | ApplyChangesStageValidation = "Validating environment and dependencies..." constant ApplyChangesStageBackup (line 1873) | ApplyChangesStageBackup = "Creating configuration backup..." constant ApplyChangesStageEnvFile (line 1874) | ApplyChangesStageEnvFile = "Updating environment file..." constant ApplyChangesStageCompose (line 1875) | ApplyChangesStageCompose = "Generating Docker Compose files..." constant ApplyChangesStageDocker (line 1876) | ApplyChangesStageDocker = "Managing Docker containers..." constant ApplyChangesStageServices (line 1877) | ApplyChangesStageServices = "Starting services..." constant ApplyChangesStageComplete (line 1878) | ApplyChangesStageComplete = "Configuration changes applied successfully" constant ApplyChangesChangesTitle (line 1881) | ApplyChangesChangesTitle = "Pending Configuration Changes" constant ApplyChangesChangesCount (line 1882) | ApplyChangesChangesCount = "Total changes: %d" constant ApplyChangesChangesMasked (line 1883) | ApplyChangesChangesMasked = "(hidden for security)" constant ApplyChangesChangesEmpty (line 1884) | ApplyChangesChangesEmpty = "No changes to apply" constant ApplyChangesHelpTitle (line 1887) | ApplyChangesHelpTitle = "Applying Configuration Changes" constant ApplyChangesHelpContent (line 1888) | ApplyChangesHelpContent = `Be sure to check the current configuration be... constant ApplyChangesIntegrityPromptTitle (line 1893) | ApplyChangesIntegrityPromptTitle = "File integrity check" constant ApplyChangesIntegrityPromptMessage (line 1894) | ApplyChangesIntegrityPromptMessage = "Out-of-date files were detected.\n... constant ApplyChangesIntegrityOutdatedList (line 1895) | ApplyChangesIntegrityOutdatedList = "Out-of-date files:\n%s\nConfirm up... constant ApplyChangesIntegrityChecking (line 1896) | ApplyChangesIntegrityChecking = "Collecting file integrity informat... constant ApplyChangesIntegrityNoOutdated (line 1897) | ApplyChangesIntegrityNoOutdated = "No out-of-date files found. Procee... constant MaintenanceTitle (line 1902) | MaintenanceTitle = "System Maintenance" constant MaintenanceDescription (line 1903) | MaintenanceDescription = "Manage PentAGI services and perform maintenanc... constant MaintenanceName (line 1904) | MaintenanceName = "Maintenance" constant MaintenanceOverview (line 1905) | MaintenanceOverview = `Perform system maintenance operations for Pent... constant MaintenanceStartPentagi (line 1918) | MaintenanceStartPentagi = "Start PentAGI" constant MaintenanceStartPentagiDesc (line 1919) | MaintenanceStartPentagiDesc = "Start all configured PentAGI servi... constant MaintenanceStopPentagi (line 1920) | MaintenanceStopPentagi = "Stop PentAGI" constant MaintenanceStopPentagiDesc (line 1921) | MaintenanceStopPentagiDesc = "Stop all running PentAGI services" constant MaintenanceRestartPentagi (line 1922) | MaintenanceRestartPentagi = "Restart PentAGI" constant MaintenanceRestartPentagiDesc (line 1923) | MaintenanceRestartPentagiDesc = "Restart all PentAGI services" constant MaintenanceDownloadWorkerImage (line 1924) | MaintenanceDownloadWorkerImage = "Download Worker Image" constant MaintenanceDownloadWorkerImageDesc (line 1925) | MaintenanceDownloadWorkerImageDesc = "Download pentesting container imag... constant MaintenanceUpdateWorkerImage (line 1926) | MaintenanceUpdateWorkerImage = "Update Worker Image" constant MaintenanceUpdateWorkerImageDesc (line 1927) | MaintenanceUpdateWorkerImageDesc = "Update pentesting container image ... constant MaintenanceUpdatePentagi (line 1928) | MaintenanceUpdatePentagi = "Update PentAGI" constant MaintenanceUpdatePentagiDesc (line 1929) | MaintenanceUpdatePentagiDesc = "Update PentAGI to the latest version" constant MaintenanceUpdateInstaller (line 1930) | MaintenanceUpdateInstaller = "Update Installer" constant MaintenanceUpdateInstallerDesc (line 1931) | MaintenanceUpdateInstallerDesc = "Update this installer to the lates... constant MaintenanceFactoryReset (line 1932) | MaintenanceFactoryReset = "Factory Reset" constant MaintenanceFactoryResetDesc (line 1933) | MaintenanceFactoryResetDesc = "Reset PentAGI to factory defaults" constant MaintenanceRemovePentagi (line 1934) | MaintenanceRemovePentagi = "Remove PentAGI" constant MaintenanceRemovePentagiDesc (line 1935) | MaintenanceRemovePentagiDesc = "Remove PentAGI containers but keep... constant MaintenancePurgePentagi (line 1936) | MaintenancePurgePentagi = "Purge PentAGI" constant MaintenancePurgePentagiDesc (line 1937) | MaintenancePurgePentagiDesc = "Completely remove PentAGI includin... constant MaintenanceResetPassword (line 1938) | MaintenanceResetPassword = "Reset Admin Password" constant MaintenanceResetPasswordDesc (line 1939) | MaintenanceResetPasswordDesc = "Reset the administrator password f... constant ResetPasswordFormTitle (line 1944) | ResetPasswordFormTitle = "Reset Admin Password" constant ResetPasswordFormDescription (line 1945) | ResetPasswordFormDescription = "Reset the administrator password for Pen... constant ResetPasswordFormName (line 1946) | ResetPasswordFormName = "Reset Password" constant ResetPasswordFormOverview (line 1947) | ResetPasswordFormOverview = `Reset the password for the default admin... constant ResetPasswordNewPassword (line 1958) | ResetPasswordNewPassword = "New Password" constant ResetPasswordNewPasswordDesc (line 1959) | ResetPasswordNewPasswordDesc = "Enter the new administrator password" constant ResetPasswordConfirmPassword (line 1960) | ResetPasswordConfirmPassword = "Confirm Password" constant ResetPasswordConfirmPasswordDesc (line 1961) | ResetPasswordConfirmPasswordDesc = "Re-enter the new password to confirm" constant ResetPasswordNotAvailable (line 1964) | ResetPasswordNotAvailable = "PentAGI must be running to reset password" constant ResetPasswordAvailable (line 1965) | ResetPasswordAvailable = "Password reset is available" constant ResetPasswordInProgress (line 1966) | ResetPasswordInProgress = "Resetting password..." constant ResetPasswordSuccess (line 1967) | ResetPasswordSuccess = "Password has been successfully reset" constant ResetPasswordErrorPrefix (line 1968) | ResetPasswordErrorPrefix = "Error: " constant ResetPasswordErrorEmptyPassword (line 1971) | ResetPasswordErrorEmptyPassword = "Password cannot be empty" constant ResetPasswordErrorShortPassword (line 1972) | ResetPasswordErrorShortPassword = "Password must be at least 5 character... constant ResetPasswordErrorMismatch (line 1973) | ResetPasswordErrorMismatch = "Passwords do not match" constant ResetPasswordHelpContent (line 1976) | ResetPasswordHelpContent = `Reset the administrator password for accessi... constant ProcessorOperationFormTitle (line 1992) | ProcessorOperationFormTitle = "%s" constant ProcessorOperationFormDescription (line 1993) | ProcessorOperationFormDescription = "Execute %s operation" constant ProcessorOperationFormName (line 1994) | ProcessorOperationFormName = "%s" constant ProcessorOperationNotStarted (line 1997) | ProcessorOperationNotStarted = "Ready to execute %s operation" constant ProcessorOperationInProgress (line 1998) | ProcessorOperationInProgress = "Executing %s operation...\n" constant ProcessorOperationCompleted (line 1999) | ProcessorOperationCompleted = "%s operation completed successfully\n" constant ProcessorOperationFailed (line 2000) | ProcessorOperationFailed = "Failed to execute %s operation" constant ProcessorOperationConfirmation (line 2003) | ProcessorOperationConfirmation = "Are you sure you want to %s?" constant ProcessorOperationPressEnter (line 2004) | ProcessorOperationPressEnter = "Press Enter to %s" constant ProcessorOperationPressYN (line 2005) | ProcessorOperationPressYN = "Press Y to confirm, N to cancel" constant ProcessorOperationRequiresConfirmationShort (line 2007) | ProcessorOperationRequiresConfirmationShort = "This operation requires c... constant ProcessorOperationCancelled (line 2009) | ProcessorOperationCancelled = "Operation cancelled" constant ProcessorOperationUnknown (line 2010) | ProcessorOperationUnknown = "Unknown operation: %s" constant ProcessorOperationStarting (line 2013) | ProcessorOperationStarting = "Starting services..." constant ProcessorOperationStopping (line 2014) | ProcessorOperationStopping = "Stopping services..." constant ProcessorOperationRestarting (line 2015) | ProcessorOperationRestarting = "Restarting services..." constant ProcessorOperationDownloading (line 2016) | ProcessorOperationDownloading = "Downloading images..." constant ProcessorOperationUpdating (line 2017) | ProcessorOperationUpdating = "Updating components..." constant ProcessorOperationResetting (line 2018) | ProcessorOperationResetting = "Resetting to factory defaults..." constant ProcessorOperationRemoving (line 2019) | ProcessorOperationRemoving = "Removing containers..." constant ProcessorOperationPurging (line 2020) | ProcessorOperationPurging = "Purging all data..." constant ProcessorOperationInstalling (line 2021) | ProcessorOperationInstalling = "Installing PentAGI services..." constant ProcessorOperationHelpTitle (line 2024) | ProcessorOperationHelpTitle = "%s Operation" constant ProcessorOperationHelpContent (line 2025) | ProcessorOperationHelpContent = "This operation will %s." constant ProcessorOperationHelpContentDownload (line 2026) | ProcessorOperationHelpContentDownload = "This operation will download %s... constant ProcessorOperationHelpContentUpdate (line 2027) | ProcessorOperationHelpContentUpdate = "This operation will update %s c... constant OperationTitleInstallPentagi (line 2029) | OperationTitleInstallPentagi = "Install PentAGI" constant OperationDescInstallPentagi (line 2030) | OperationDescInstallPentagi = "Install and configure PentAGI services" constant OperationTitleDownload (line 2031) | OperationTitleDownload = "Download %s" constant OperationDescDownloadComponents (line 2032) | OperationDescDownloadComponents = "Download %s components" constant OperationTitleUpdate (line 2033) | OperationTitleUpdate = "Update %s" constant OperationDescUpdateToLatest (line 2034) | OperationDescUpdateToLatest = "Update %s to latest version" constant OperationTitleExecute (line 2035) | OperationTitleExecute = "Execute %s" constant OperationDescExecuteOn (line 2036) | OperationDescExecuteOn = "Execute %s on %s" constant OperationProgressExecuting (line 2037) | OperationProgressExecuting = "Executing %s..." constant ProcessorOperationTerminalNotInitialized (line 2040) | ProcessorOperationTerminalNotInitialized = "Terminal is not initialized" constant ProcessorHelpInstallPentagi (line 2045) | ProcessorHelpInstallPentagi = `This will: constant ProcessorHelpStartPentagi (line 2053) | ProcessorHelpStartPentagi = `This will: constant ProcessorHelpStopPentagi (line 2060) | ProcessorHelpStopPentagi = `This will: constant ProcessorHelpRestartPentagi (line 2067) | ProcessorHelpRestartPentagi = `This will: constant ProcessorHelpDownloadWorkerImage (line 2074) | ProcessorHelpDownloadWorkerImage = `This large image (6GB+) contains: constant ProcessorHelpUpdateWorkerImage (line 2081) | ProcessorHelpUpdateWorkerImage = `This will: constant ProcessorHelpUpdatePentagi (line 2088) | ProcessorHelpUpdatePentagi = `This will: constant ProcessorHelpUpdateInstaller (line 2095) | ProcessorHelpUpdateInstaller = `This will: constant ProcessorHelpFactoryReset (line 2102) | ProcessorHelpFactoryReset = `⚠️ WARNING: This operation will: constant ProcessorHelpRemovePentagi (line 2110) | ProcessorHelpRemovePentagi = `This will: constant ProcessorHelpPurgePentagi (line 2118) | ProcessorHelpPurgePentagi = `⚠️ WARNING: This will permanently delete: constant EnvDesc_OPEN_AI_KEY (line 2129) | EnvDesc_OPEN_AI_KEY = "OpenAI API Key" constant EnvDesc_OPEN_AI_SERVER_URL (line 2130) | EnvDesc_OPEN_AI_SERVER_URL = "OpenAI Server URL" constant EnvDesc_ANTHROPIC_API_KEY (line 2131) | EnvDesc_ANTHROPIC_API_KEY = "Anthropic API Key" constant EnvDesc_ANTHROPIC_SERVER_URL (line 2132) | EnvDesc_ANTHROPIC_SERVER_URL = "Anthropic Server URL" constant EnvDesc_GEMINI_API_KEY (line 2133) | EnvDesc_GEMINI_API_KEY = "Google Gemini API Key" constant EnvDesc_GEMINI_SERVER_URL (line 2134) | EnvDesc_GEMINI_SERVER_URL = "Gemini Server URL" constant EnvDesc_BEDROCK_DEFAULT_AUTH (line 2135) | EnvDesc_BEDROCK_DEFAULT_AUTH = "AWS Bedrock Use Default Cre... constant EnvDesc_BEDROCK_BEARER_TOKEN (line 2136) | EnvDesc_BEDROCK_BEARER_TOKEN = "AWS Bedrock Bearer Token" constant EnvDesc_BEDROCK_ACCESS_KEY_ID (line 2137) | EnvDesc_BEDROCK_ACCESS_KEY_ID = "AWS Bedrock Access Key ID" constant EnvDesc_BEDROCK_SECRET_ACCESS_KEY (line 2138) | EnvDesc_BEDROCK_SECRET_ACCESS_KEY = "AWS Bedrock Secret Access Key" constant EnvDesc_BEDROCK_SESSION_TOKEN (line 2139) | EnvDesc_BEDROCK_SESSION_TOKEN = "AWS Bedrock Session Token" constant EnvDesc_BEDROCK_REGION (line 2140) | EnvDesc_BEDROCK_REGION = "AWS Bedrock Region" constant EnvDesc_BEDROCK_SERVER_URL (line 2141) | EnvDesc_BEDROCK_SERVER_URL = "AWS Bedrock Custom Endpoint... constant EnvDesc_OLLAMA_SERVER_URL (line 2142) | EnvDesc_OLLAMA_SERVER_URL = "Ollama Server URL" constant EnvDesc_OLLAMA_SERVER_API_KEY (line 2143) | EnvDesc_OLLAMA_SERVER_API_KEY = "Ollama Server API Key (Cloud)" constant EnvDesc_OLLAMA_SERVER_MODEL (line 2144) | EnvDesc_OLLAMA_SERVER_MODEL = "Ollama Default Model" constant EnvDesc_OLLAMA_SERVER_CONFIG_PATH (line 2145) | EnvDesc_OLLAMA_SERVER_CONFIG_PATH = "Ollama Container Config Path" constant EnvDesc_OLLAMA_SERVER_PULL_MODELS_TIMEOUT (line 2146) | EnvDesc_OLLAMA_SERVER_PULL_MODELS_TIMEOUT = "Ollama Model Pull Timeout" constant EnvDesc_OLLAMA_SERVER_PULL_MODELS_ENABLED (line 2147) | EnvDesc_OLLAMA_SERVER_PULL_MODELS_ENABLED = "Ollama Auto-pull Models" constant EnvDesc_OLLAMA_SERVER_LOAD_MODELS_ENABLED (line 2148) | EnvDesc_OLLAMA_SERVER_LOAD_MODELS_ENABLED = "Ollama Load Models List" constant EnvDesc_DEEPSEEK_API_KEY (line 2149) | EnvDesc_DEEPSEEK_API_KEY = "DeepSeek API Key" constant EnvDesc_DEEPSEEK_SERVER_URL (line 2150) | EnvDesc_DEEPSEEK_SERVER_URL = "DeepSeek Server URL" constant EnvDesc_DEEPSEEK_PROVIDER (line 2151) | EnvDesc_DEEPSEEK_PROVIDER = "DeepSeek Provider Name Pref... constant EnvDesc_GLM_API_KEY (line 2152) | EnvDesc_GLM_API_KEY = "GLM API Key" constant EnvDesc_GLM_SERVER_URL (line 2153) | EnvDesc_GLM_SERVER_URL = "GLM Server URL" constant EnvDesc_GLM_PROVIDER (line 2154) | EnvDesc_GLM_PROVIDER = "GLM Provider Name Prefix (f... constant EnvDesc_KIMI_API_KEY (line 2155) | EnvDesc_KIMI_API_KEY = "Kimi API Key" constant EnvDesc_KIMI_SERVER_URL (line 2156) | EnvDesc_KIMI_SERVER_URL = "Kimi Server URL" constant EnvDesc_KIMI_PROVIDER (line 2157) | EnvDesc_KIMI_PROVIDER = "Kimi Provider Name Prefix (... constant EnvDesc_QWEN_API_KEY (line 2158) | EnvDesc_QWEN_API_KEY = "Qwen API Key" constant EnvDesc_QWEN_SERVER_URL (line 2159) | EnvDesc_QWEN_SERVER_URL = "Qwen Server URL" constant EnvDesc_QWEN_PROVIDER (line 2160) | EnvDesc_QWEN_PROVIDER = "Qwen Provider Name Prefix (... constant EnvDesc_LLM_SERVER_URL (line 2161) | EnvDesc_LLM_SERVER_URL = "Custom LLM Server URL" constant EnvDesc_LLM_SERVER_KEY (line 2162) | EnvDesc_LLM_SERVER_KEY = "Custom LLM API Key" constant EnvDesc_LLM_SERVER_MODEL (line 2163) | EnvDesc_LLM_SERVER_MODEL = "Custom LLM Model" constant EnvDesc_LLM_SERVER_CONFIG_PATH (line 2164) | EnvDesc_LLM_SERVER_CONFIG_PATH = "Custom LLM Container Config... constant EnvDesc_LLM_SERVER_LEGACY_REASONING (line 2165) | EnvDesc_LLM_SERVER_LEGACY_REASONING = "Custom LLM Legacy Reasoning" constant EnvDesc_LLM_SERVER_PRESERVE_REASONING (line 2166) | EnvDesc_LLM_SERVER_PRESERVE_REASONING = "Custom LLM Preserve Reasoni... constant EnvDesc_LLM_SERVER_PROVIDER (line 2167) | EnvDesc_LLM_SERVER_PROVIDER = "Custom LLM Provider Name" constant EnvDesc_LANGFUSE_LISTEN_IP (line 2169) | EnvDesc_LANGFUSE_LISTEN_IP = "Langfuse Listen IP" constant EnvDesc_LANGFUSE_LISTEN_PORT (line 2170) | EnvDesc_LANGFUSE_LISTEN_PORT = "Langfuse Listen Port" constant EnvDesc_LANGFUSE_BASE_URL (line 2171) | EnvDesc_LANGFUSE_BASE_URL = "Langfuse Base URL" constant EnvDesc_LANGFUSE_PROJECT_ID (line 2172) | EnvDesc_LANGFUSE_PROJECT_ID = "Langfuse Project ID" constant EnvDesc_LANGFUSE_PUBLIC_KEY (line 2173) | EnvDesc_LANGFUSE_PUBLIC_KEY = "Langfuse Public Key" constant EnvDesc_LANGFUSE_SECRET_KEY (line 2174) | EnvDesc_LANGFUSE_SECRET_KEY = "Langfuse Secret Key" constant EnvDesc_LANGFUSE_INIT_PROJECT_ID (line 2177) | EnvDesc_LANGFUSE_INIT_PROJECT_ID = "Langfuse Init Project ID" constant EnvDesc_LANGFUSE_INIT_PROJECT_PUBLIC_KEY (line 2178) | EnvDesc_LANGFUSE_INIT_PROJECT_PUBLIC_KEY = "Langfuse Init Project Public... constant EnvDesc_LANGFUSE_INIT_PROJECT_SECRET_KEY (line 2179) | EnvDesc_LANGFUSE_INIT_PROJECT_SECRET_KEY = "Langfuse Init Project Secret... constant EnvDesc_LANGFUSE_INIT_USER_EMAIL (line 2180) | EnvDesc_LANGFUSE_INIT_USER_EMAIL = "Langfuse Init User Email" constant EnvDesc_LANGFUSE_INIT_USER_NAME (line 2181) | EnvDesc_LANGFUSE_INIT_USER_NAME = "Langfuse Init User Name" constant EnvDesc_LANGFUSE_INIT_USER_PASSWORD (line 2182) | EnvDesc_LANGFUSE_INIT_USER_PASSWORD = "Langfuse Init User Password" constant EnvDesc_LANGFUSE_OTEL_EXPORTER_OTLP_ENDPOINT (line 2184) | EnvDesc_LANGFUSE_OTEL_EXPORTER_OTLP_ENDPOINT = "Langfuse OTLP endpoint f... constant EnvDesc_GRAFANA_LISTEN_IP (line 2186) | EnvDesc_GRAFANA_LISTEN_IP = "Grafana Listen IP" constant EnvDesc_GRAFANA_LISTEN_PORT (line 2187) | EnvDesc_GRAFANA_LISTEN_PORT = "Grafana Listen Port" constant EnvDesc_OTEL_GRPC_LISTEN_IP (line 2188) | EnvDesc_OTEL_GRPC_LISTEN_IP = "OTel gRPC Listen IP" constant EnvDesc_OTEL_GRPC_LISTEN_PORT (line 2189) | EnvDesc_OTEL_GRPC_LISTEN_PORT = "OTel gRPC Listen Port" constant EnvDesc_OTEL_HTTP_LISTEN_IP (line 2190) | EnvDesc_OTEL_HTTP_LISTEN_IP = "OTel HTTP Listen IP" constant EnvDesc_OTEL_HTTP_LISTEN_PORT (line 2191) | EnvDesc_OTEL_HTTP_LISTEN_PORT = "OTel HTTP Listen Port" constant EnvDesc_OTEL_HOST (line 2192) | EnvDesc_OTEL_HOST = "OpenTelemetry Host" constant EnvDesc_SUMMARIZER_PRESERVE_LAST (line 2194) | EnvDesc_SUMMARIZER_PRESERVE_LAST = "Summarizer Preserve Last" constant EnvDesc_SUMMARIZER_USE_QA (line 2195) | EnvDesc_SUMMARIZER_USE_QA = "Summarizer Use QA" constant EnvDesc_SUMMARIZER_SUM_MSG_HUMAN_IN_QA (line 2196) | EnvDesc_SUMMARIZER_SUM_MSG_HUMAN_IN_QA = "Summarizer Human in QA" constant EnvDesc_SUMMARIZER_LAST_SEC_BYTES (line 2197) | EnvDesc_SUMMARIZER_LAST_SEC_BYTES = "Summarizer Last Section Bytes" constant EnvDesc_SUMMARIZER_MAX_BP_BYTES (line 2198) | EnvDesc_SUMMARIZER_MAX_BP_BYTES = "Summarizer Max BP Bytes" constant EnvDesc_SUMMARIZER_MAX_QA_BYTES (line 2199) | EnvDesc_SUMMARIZER_MAX_QA_BYTES = "Summarizer Max QA Bytes" constant EnvDesc_SUMMARIZER_MAX_QA_SECTIONS (line 2200) | EnvDesc_SUMMARIZER_MAX_QA_SECTIONS = "Summarizer Max QA Sections" constant EnvDesc_SUMMARIZER_KEEP_QA_SECTIONS (line 2201) | EnvDesc_SUMMARIZER_KEEP_QA_SECTIONS = "Summarizer Keep QA Sections" constant EnvDesc_ASSISTANT_SUMMARIZER_PRESERVE_LAST (line 2203) | EnvDesc_ASSISTANT_SUMMARIZER_PRESERVE_LAST = "Assistant Summarizer Pr... constant EnvDesc_ASSISTANT_SUMMARIZER_LAST_SEC_BYTES (line 2204) | EnvDesc_ASSISTANT_SUMMARIZER_LAST_SEC_BYTES = "Assistant Summarizer La... constant EnvDesc_ASSISTANT_SUMMARIZER_MAX_BP_BYTES (line 2205) | EnvDesc_ASSISTANT_SUMMARIZER_MAX_BP_BYTES = "Assistant Summarizer Ma... constant EnvDesc_ASSISTANT_SUMMARIZER_MAX_QA_BYTES (line 2206) | EnvDesc_ASSISTANT_SUMMARIZER_MAX_QA_BYTES = "Assistant Summarizer Ma... constant EnvDesc_ASSISTANT_SUMMARIZER_MAX_QA_SECTIONS (line 2207) | EnvDesc_ASSISTANT_SUMMARIZER_MAX_QA_SECTIONS = "Assistant Summarizer Ma... constant EnvDesc_ASSISTANT_SUMMARIZER_KEEP_QA_SECTIONS (line 2208) | EnvDesc_ASSISTANT_SUMMARIZER_KEEP_QA_SECTIONS = "Assistant Summarizer Ke... constant EnvDesc_EMBEDDING_PROVIDER (line 2210) | EnvDesc_EMBEDDING_PROVIDER = "Embedding Provider" constant EnvDesc_EMBEDDING_URL (line 2211) | EnvDesc_EMBEDDING_URL = "Embedding URL" constant EnvDesc_EMBEDDING_KEY (line 2212) | EnvDesc_EMBEDDING_KEY = "Embedding API Key" constant EnvDesc_EMBEDDING_MODEL (line 2213) | EnvDesc_EMBEDDING_MODEL = "Embedding Model" constant EnvDesc_EMBEDDING_BATCH_SIZE (line 2214) | EnvDesc_EMBEDDING_BATCH_SIZE = "Embedding Batch Size" constant EnvDesc_EMBEDDING_STRIP_NEW_LINES (line 2215) | EnvDesc_EMBEDDING_STRIP_NEW_LINES = "Embedding Strip New Lines" constant EnvDesc_ASK_USER (line 2217) | EnvDesc_ASK_USER = "Human-in-the-loop" constant EnvDesc_ASSISTANT_USE_AGENTS (line 2219) | EnvDesc_ASSISTANT_USE_AGENTS = "Enable multi-agent mode for assistant" constant EnvDesc_EXECUTION_MONITOR_ENABLED (line 2221) | EnvDesc_EXECUTION_MONITOR_ENABLED = "Enable Execution Monitorin... constant EnvDesc_EXECUTION_MONITOR_SAME_TOOL_LIMIT (line 2222) | EnvDesc_EXECUTION_MONITOR_SAME_TOOL_LIMIT = "Same Tool Call Threshold" constant EnvDesc_EXECUTION_MONITOR_TOTAL_TOOL_LIMIT (line 2223) | EnvDesc_EXECUTION_MONITOR_TOTAL_TOOL_LIMIT = "Total Tool Call Threshold" constant EnvDesc_MAX_GENERAL_AGENT_TOOL_CALLS (line 2224) | EnvDesc_MAX_GENERAL_AGENT_TOOL_CALLS = "Max Tool Calls for General... constant EnvDesc_MAX_LIMITED_AGENT_TOOL_CALLS (line 2225) | EnvDesc_MAX_LIMITED_AGENT_TOOL_CALLS = "Max Tool Calls for Limited... constant EnvDesc_AGENT_PLANNING_STEP_ENABLED (line 2226) | EnvDesc_AGENT_PLANNING_STEP_ENABLED = "Enable Task Planning (beta)" constant EnvDesc_SCRAPER_PUBLIC_URL (line 2228) | EnvDesc_SCRAPER_PUBLIC_URL = "Scraper Public URL" constant EnvDesc_SCRAPER_PRIVATE_URL (line 2229) | EnvDesc_SCRAPER_PRIVATE_URL = "Scraper Private URL" constant EnvDesc_LOCAL_SCRAPER_USERNAME (line 2230) | EnvDesc_LOCAL_SCRAPER_USERNAME = "Local Scraper Username" constant EnvDesc_LOCAL_SCRAPER_PASSWORD (line 2231) | EnvDesc_LOCAL_SCRAPER_PASSWORD = "Local Scraper Password" constant EnvDesc_LOCAL_SCRAPER_MAX_CONCURRENT_SESSIONS (line 2232) | EnvDesc_LOCAL_SCRAPER_MAX_CONCURRENT_SESSIONS = "Scraper Max Concurrent ... constant EnvDesc_DUCKDUCKGO_ENABLED (line 2234) | EnvDesc_DUCKDUCKGO_ENABLED = "DuckDuckGo Search" constant EnvDesc_DUCKDUCKGO_REGION (line 2235) | EnvDesc_DUCKDUCKGO_REGION = "DuckDuckGo Region" constant EnvDesc_DUCKDUCKGO_SAFESEARCH (line 2236) | EnvDesc_DUCKDUCKGO_SAFESEARCH = "DuckDuckGo Safe Search" constant EnvDesc_DUCKDUCKGO_TIME_RANGE (line 2237) | EnvDesc_DUCKDUCKGO_TIME_RANGE = "DuckDuckGo Time Range" constant EnvDesc_SPLOITUS_ENABLED (line 2238) | EnvDesc_SPLOITUS_ENABLED = "Sploitus Search" constant EnvDesc_PERPLEXITY_API_KEY (line 2239) | EnvDesc_PERPLEXITY_API_KEY = "Perplexity API Key" constant EnvDesc_TAVILY_API_KEY (line 2240) | EnvDesc_TAVILY_API_KEY = "Tavily API Key" constant EnvDesc_TRAVERSAAL_API_KEY (line 2241) | EnvDesc_TRAVERSAAL_API_KEY = "Traversaal API Key" constant EnvDesc_GOOGLE_API_KEY (line 2242) | EnvDesc_GOOGLE_API_KEY = "Google Search API Key" constant EnvDesc_GOOGLE_CX_KEY (line 2243) | EnvDesc_GOOGLE_CX_KEY = "Google Search CX Key" constant EnvDesc_GOOGLE_LR_KEY (line 2244) | EnvDesc_GOOGLE_LR_KEY = "Google Search LR Key" constant EnvDesc_DOCKER_INSIDE (line 2246) | EnvDesc_DOCKER_INSIDE = "Docker Inside Container" constant EnvDesc_DOCKER_NET_ADMIN (line 2247) | EnvDesc_DOCKER_NET_ADMIN = "Docker Network Admin" constant EnvDesc_DOCKER_SOCKET (line 2248) | EnvDesc_DOCKER_SOCKET = "Docker Socket Path" constant EnvDesc_DOCKER_NETWORK (line 2249) | EnvDesc_DOCKER_NETWORK = "Docker Network" constant EnvDesc_DOCKER_PUBLIC_IP (line 2250) | EnvDesc_DOCKER_PUBLIC_IP = "Docker Public IP" constant EnvDesc_DOCKER_WORK_DIR (line 2251) | EnvDesc_DOCKER_WORK_DIR = "Docker Work Directory" constant EnvDesc_DOCKER_DEFAULT_IMAGE (line 2252) | EnvDesc_DOCKER_DEFAULT_IMAGE = "Docker Default Image" constant EnvDesc_DOCKER_DEFAULT_IMAGE_FOR_PENTEST (line 2253) | EnvDesc_DOCKER_DEFAULT_IMAGE_FOR_PENTEST = "Docker Pentest Image" constant EnvDesc_DOCKER_HOST (line 2254) | EnvDesc_DOCKER_HOST = "Docker Host" constant EnvDesc_DOCKER_TLS_VERIFY (line 2255) | EnvDesc_DOCKER_TLS_VERIFY = "Docker TLS Verify" constant EnvDesc_DOCKER_CERT_PATH (line 2256) | EnvDesc_DOCKER_CERT_PATH = "Docker Certificate Path" constant EnvDesc_LICENSE_KEY (line 2258) | EnvDesc_LICENSE_KEY = "PentAGI License Key" constant EnvDesc_PENTAGI_LISTEN_IP (line 2259) | EnvDesc_PENTAGI_LISTEN_IP = "PentAGI Server Host" constant EnvDesc_PENTAGI_LISTEN_PORT (line 2260) | EnvDesc_PENTAGI_LISTEN_PORT = "PentAGI Server Port" constant EnvDesc_PUBLIC_URL (line 2261) | EnvDesc_PUBLIC_URL = "PentAGI Public URL" constant EnvDesc_CORS_ORIGINS (line 2262) | EnvDesc_CORS_ORIGINS = "PentAGI CORS Origins" constant EnvDesc_COOKIE_SIGNING_SALT (line 2263) | EnvDesc_COOKIE_SIGNING_SALT = "PentAGI Cookie Signing Salt" constant EnvDesc_PROXY_URL (line 2264) | EnvDesc_PROXY_URL = "HTTP/HTTPS Proxy URL" constant EnvDesc_HTTP_CLIENT_TIMEOUT (line 2265) | EnvDesc_HTTP_CLIENT_TIMEOUT = "HTTP Client Timeout (seconds)" constant EnvDesc_EXTERNAL_SSL_CA_PATH (line 2266) | EnvDesc_EXTERNAL_SSL_CA_PATH = "Custom CA Certificate Path" constant EnvDesc_EXTERNAL_SSL_INSECURE (line 2267) | EnvDesc_EXTERNAL_SSL_INSECURE = "Skip SSL Verification" constant EnvDesc_PENTAGI_SSL_DIR (line 2268) | EnvDesc_PENTAGI_SSL_DIR = "PentAGI SSL Directory" constant EnvDesc_PENTAGI_DATA_DIR (line 2269) | EnvDesc_PENTAGI_DATA_DIR = "PentAGI Data Directory" constant EnvDesc_PENTAGI_DOCKER_SOCKET (line 2270) | EnvDesc_PENTAGI_DOCKER_SOCKET = "Mount Docker Socket Path" constant EnvDesc_PENTAGI_DOCKER_CERT_PATH (line 2271) | EnvDesc_PENTAGI_DOCKER_CERT_PATH = "Mount Docker Certificate Path" constant EnvDesc_PENTAGI_LLM_SERVER_CONFIG_PATH (line 2272) | EnvDesc_PENTAGI_LLM_SERVER_CONFIG_PATH = "Custom LLM Host Config Path" constant EnvDesc_PENTAGI_OLLAMA_SERVER_CONFIG_PATH (line 2273) | EnvDesc_PENTAGI_OLLAMA_SERVER_CONFIG_PATH = "Ollama Host Config Path" constant EnvDesc_STATIC_DIR (line 2275) | EnvDesc_STATIC_DIR = "Frontend Static Directory" constant EnvDesc_STATIC_URL (line 2276) | EnvDesc_STATIC_URL = "Frontend Static URL" constant EnvDesc_SERVER_PORT (line 2277) | EnvDesc_SERVER_PORT = "Backend Server Port" constant EnvDesc_SERVER_HOST (line 2278) | EnvDesc_SERVER_HOST = "Backend Server Host" constant EnvDesc_SERVER_SSL_CRT (line 2279) | EnvDesc_SERVER_SSL_CRT = "Backend Server SSL Certificate Path" constant EnvDesc_SERVER_SSL_KEY (line 2280) | EnvDesc_SERVER_SSL_KEY = "Backend Server SSL Key Path" constant EnvDesc_SERVER_USE_SSL (line 2281) | EnvDesc_SERVER_USE_SSL = "Backend Server Use SSL" constant EnvDesc_PERPLEXITY_MODEL (line 2283) | EnvDesc_PERPLEXITY_MODEL = "Perplexity Model" constant EnvDesc_PERPLEXITY_CONTEXT_SIZE (line 2284) | EnvDesc_PERPLEXITY_CONTEXT_SIZE = "Perplexity Context Size" constant EnvDesc_SEARXNG_URL (line 2286) | EnvDesc_SEARXNG_URL = "Searxng Search URL" constant EnvDesc_SEARXNG_CATEGORIES (line 2287) | EnvDesc_SEARXNG_CATEGORIES = "Searxng Search Categories" constant EnvDesc_SEARXNG_LANGUAGE (line 2288) | EnvDesc_SEARXNG_LANGUAGE = "Searxng Search Language" constant EnvDesc_SEARXNG_SAFESEARCH (line 2289) | EnvDesc_SEARXNG_SAFESEARCH = "Searxng Safe Search" constant EnvDesc_SEARXNG_TIME_RANGE (line 2290) | EnvDesc_SEARXNG_TIME_RANGE = "Searxng Time Range" constant EnvDesc_SEARXNG_TIMEOUT (line 2291) | EnvDesc_SEARXNG_TIMEOUT = "Searxng Timeout" constant EnvDesc_OAUTH_GOOGLE_CLIENT_ID (line 2293) | EnvDesc_OAUTH_GOOGLE_CLIENT_ID = "OAuth Google Client ID" constant EnvDesc_OAUTH_GOOGLE_CLIENT_SECRET (line 2294) | EnvDesc_OAUTH_GOOGLE_CLIENT_SECRET = "OAuth Google Client Secret" constant EnvDesc_OAUTH_GITHUB_CLIENT_ID (line 2295) | EnvDesc_OAUTH_GITHUB_CLIENT_ID = "OAuth GitHub Client ID" constant EnvDesc_OAUTH_GITHUB_CLIENT_SECRET (line 2296) | EnvDesc_OAUTH_GITHUB_CLIENT_SECRET = "OAuth GitHub Client Secret" constant EnvDesc_LANGFUSE_EE_LICENSE_KEY (line 2298) | EnvDesc_LANGFUSE_EE_LICENSE_KEY = "Langfuse Enterprise License Key" constant EnvDesc_PENTAGI_POSTGRES_PASSWORD (line 2299) | EnvDesc_PENTAGI_POSTGRES_PASSWORD = "PentAGI PostgreSQL Password" constant EnvDesc_GRAPHITI_URL (line 2301) | EnvDesc_GRAPHITI_URL = "Graphiti Server URL" constant EnvDesc_GRAPHITI_TIMEOUT (line 2302) | EnvDesc_GRAPHITI_TIMEOUT = "Graphiti Request Timeout" constant EnvDesc_GRAPHITI_MODEL_NAME (line 2303) | EnvDesc_GRAPHITI_MODEL_NAME = "Graphiti Extraction Model" constant EnvDesc_NEO4J_USER (line 2304) | EnvDesc_NEO4J_USER = "Neo4j Username" constant EnvDesc_NEO4J_DATABASE (line 2305) | EnvDesc_NEO4J_DATABASE = "Neo4j Database Name" constant EnvDesc_NEO4J_PASSWORD (line 2306) | EnvDesc_NEO4J_PASSWORD = "Neo4j Database Password" constant ProcessorSectionCurrentState (line 2312) | ProcessorSectionCurrentState = "Current state" constant ProcessorSectionPlanned (line 2313) | ProcessorSectionPlanned = "Planned actions" constant ProcessorSectionEffects (line 2314) | ProcessorSectionEffects = "Effects" constant ProcessorComponentPentagi (line 2317) | ProcessorComponentPentagi = "PentAGI" constant ProcessorComponentLangfuse (line 2318) | ProcessorComponentLangfuse = "Langfuse" constant ProcessorComponentObservability (line 2319) | ProcessorComponentObservability = "Observability" constant ProcessorComponentWorkerImage (line 2321) | ProcessorComponentWorkerImage = "worker image" constant ProcessorComponentComposeStacks (line 2322) | ProcessorComponentComposeStacks = "compose stacks" constant ProcessorComponentDefaultFiles (line 2323) | ProcessorComponentDefaultFiles = "default files" constant ProcessorItemComposeFiles (line 2324) | ProcessorItemComposeFiles = "compose files" constant ProcessorItemComposeStacksImagesVolumes (line 2325) | ProcessorItemComposeStacksImagesVolumes = "compose stacks, images, volumes" constant ProcessorStateInstalled (line 2328) | ProcessorStateInstalled = "installed" constant ProcessorStateMissing (line 2329) | ProcessorStateMissing = "not installed" constant ProcessorStateRunning (line 2330) | ProcessorStateRunning = "running" constant ProcessorStateStopped (line 2331) | ProcessorStateStopped = "stopped" constant ProcessorStateEmbedded (line 2332) | ProcessorStateEmbedded = "embedded" constant ProcessorStateExternal (line 2333) | ProcessorStateExternal = "external" constant ProcessorStateConnected (line 2334) | ProcessorStateConnected = "connected" constant ProcessorStateDisabled (line 2335) | ProcessorStateDisabled = "disabled" constant ProcessorStateUnknown (line 2336) | ProcessorStateUnknown = "unknown" constant PlannedWillStart (line 2339) | PlannedWillStart = "will start:" constant PlannedWillStop (line 2340) | PlannedWillStop = "will stop:" constant PlannedWillRestart (line 2341) | PlannedWillRestart = "will restart:" constant PlannedWillUpdate (line 2342) | PlannedWillUpdate = "will update:" constant PlannedWillSkip (line 2343) | PlannedWillSkip = "will skip:" constant PlannedWillRemove (line 2344) | PlannedWillRemove = "will remove:" constant PlannedWillPurge (line 2345) | PlannedWillPurge = "will purge:" constant PlannedWillDownload (line 2346) | PlannedWillDownload = "will download:" constant PlannedWillRestore (line 2347) | PlannedWillRestore = "will restore:" constant EffectsStart (line 2350) | EffectsStart = "PentAGI web UI becomes available. Background s... constant EffectsStop (line 2351) | EffectsStop = "Web UI becomes unavailable. In-progress flows ... constant EffectsRestart (line 2352) | EffectsRestart = "Services stop and start again with a clean sta... constant EffectsUpdateAll (line 2353) | EffectsUpdateAll = "Images are pulled and services are recreated w... constant EffectsDownloadWorker (line 2354) | EffectsDownloadWorker = "Running worker containers are not touched. New... constant EffectsUpdateWorker (line 2355) | EffectsUpdateWorker = "Pulls latest worker image. Running worker cont... constant EffectsUpdateInstaller (line 2356) | EffectsUpdateInstaller = "The installer binary will be updated and the a... constant EffectsFactoryReset (line 2357) | EffectsFactoryReset = "Removes containers, volumes and networks, rest... constant EffectsRemove (line 2358) | EffectsRemove = "Stops and removes containers but keeps volumes... constant EffectsPurge (line 2359) | EffectsPurge = "Complete cleanup: containers, images, volumes ... constant EffectsInstall (line 2360) | EffectsInstall = "Required files are created and services are st... FILE: backend/cmd/installer/wizard/logger/logger.go function init (line 13) | func init() { function Log (line 34) | func Log(message string, args ...any) { function Errorf (line 46) | func Errorf(message string, args ...any) { function Debugf (line 58) | func Debugf(message string, args ...any) { function Warnf (line 70) | func Warnf(message string, args ...any) { function Fatalf (line 82) | func Fatalf(message string, args ...any) { function Panicf (line 94) | func Panicf(message string, args ...any) { function GetLevel (line 106) | func GetLevel() logrus.Level { function SetLevel (line 113) | func SetLevel(level logrus.Level) { function SetOutput (line 121) | func SetOutput(output io.Writer) { FILE: backend/cmd/installer/wizard/models/ai_agents_settings_form.go type AIAgentsSettingsFormModel (line 19) | type AIAgentsSettingsFormModel struct method BuildForm (line 35) | func (m *AIAgentsSettingsFormModel) BuildForm() tea.Cmd { method createBooleanField (line 101) | func (m *AIAgentsSettingsFormModel) createBooleanField(key, title, des... method createIntegerField (line 116) | func (m *AIAgentsSettingsFormModel) createIntegerField(key, title, des... method validateBooleanField (line 137) | func (m *AIAgentsSettingsFormModel) validateBooleanField(value, fieldN... method validateIntegerField (line 144) | func (m *AIAgentsSettingsFormModel) validateIntegerField(value, fieldN... method formatNumber (line 161) | func (m *AIAgentsSettingsFormModel) formatNumber(n int) string { method GetFormTitle (line 168) | func (m *AIAgentsSettingsFormModel) GetFormTitle() string { method GetFormDescription (line 171) | func (m *AIAgentsSettingsFormModel) GetFormDescription() string { method GetFormName (line 174) | func (m *AIAgentsSettingsFormModel) GetFormName() string { return l... method GetFormSummary (line 175) | func (m *AIAgentsSettingsFormModel) GetFormSummary() string { return "" } method GetFormOverview (line 177) | func (m *AIAgentsSettingsFormModel) GetFormOverview() string { method GetCurrentConfiguration (line 187) | func (m *AIAgentsSettingsFormModel) GetCurrentConfiguration() string { method IsConfigured (line 236) | func (m *AIAgentsSettingsFormModel) IsConfigured() bool { method GetHelpContent (line 248) | func (m *AIAgentsSettingsFormModel) GetHelpContent() string { method HandleSave (line 256) | func (m *AIAgentsSettingsFormModel) HandleSave() error { method HandleReset (line 344) | func (m *AIAgentsSettingsFormModel) HandleReset() { method OnFieldChanged (line 384) | func (m *AIAgentsSettingsFormModel) OnFieldChanged(fieldIndex int, old... method GetFormFields (line 385) | func (m *AIAgentsSettingsFormModel) GetFormFields() []FormField ... method SetFormFields (line 386) | func (m *AIAgentsSettingsFormModel) SetFormFields(fields []FormField) ... method Update (line 389) | func (m *AIAgentsSettingsFormModel) Update(msg tea.Msg) (tea.Model, te... function NewAIAgentsSettingsFormModel (line 24) | func NewAIAgentsSettingsFormModel(c controller.Controller, s styles.Styl... FILE: backend/cmd/installer/wizard/models/apply_changes.go type ApplyChangesFormModel (line 21) | type ApplyChangesFormModel struct method BuildForm (line 53) | func (m *ApplyChangesFormModel) BuildForm() tea.Cmd { method GetFormTitle (line 92) | func (m *ApplyChangesFormModel) GetFormTitle() string { method GetFormDescription (line 96) | func (m *ApplyChangesFormModel) GetFormDescription() string { method GetFormName (line 100) | func (m *ApplyChangesFormModel) GetFormName() string { method GetFormSummary (line 104) | func (m *ApplyChangesFormModel) GetFormSummary() string { method GetFormOverview (line 109) | func (m *ApplyChangesFormModel) GetFormOverview() string { method GetCurrentConfiguration (line 121) | func (m *ApplyChangesFormModel) GetCurrentConfiguration() string { method IsConfigured (line 181) | func (m *ApplyChangesFormModel) IsConfigured() bool { method GetHelpContent (line 185) | func (m *ApplyChangesFormModel) GetHelpContent() string { method HandleSave (line 217) | func (m *ApplyChangesFormModel) HandleSave() error { method HandleReset (line 222) | func (m *ApplyChangesFormModel) HandleReset() { method OnFieldChanged (line 227) | func (m *ApplyChangesFormModel) OnFieldChanged(fieldIndex int, oldValu... method GetFormFields (line 231) | func (m *ApplyChangesFormModel) GetFormFields() []FormField { method SetFormFields (line 235) | func (m *ApplyChangesFormModel) SetFormFields(fields []FormField) { method getChangesCount (line 239) | func (m *ApplyChangesFormModel) getChangesCount() int { method handleCompletion (line 247) | func (m *ApplyChangesFormModel) handleCompletion(msg processor.Process... method handleApplyChanges (line 268) | func (m *ApplyChangesFormModel) handleApplyChanges() tea.Cmd { method handleResetChanges (line 276) | func (m *ApplyChangesFormModel) handleResetChanges() tea.Cmd { method renderLeftPanel (line 297) | func (m *ApplyChangesFormModel) renderLeftPanel() string { method Update (line 307) | func (m *ApplyChangesFormModel) Update(msg tea.Msg) (tea.Model, tea.Cm... method View (line 461) | func (m *ApplyChangesFormModel) View() string { method GetFormHotKeys (line 484) | func (m *ApplyChangesFormModel) GetFormHotKeys() []string { method collectOutdatedFiles (line 501) | func (m *ApplyChangesFormModel) collectOutdatedFiles() tea.Cmd { method renderOutdatedFiles (line 506) | func (m *ApplyChangesFormModel) renderOutdatedFiles(outdated map[strin... function NewApplyChangesFormModel (line 38) | func NewApplyChangesFormModel( FILE: backend/cmd/installer/wizard/models/base_controls.go function NewBooleanInput (line 11) | func NewBooleanInput(styles styles.Styles, window window.Window, envVar ... function NewTextInput (line 29) | func NewTextInput(styles styles.Styles, window window.Window, envVar loa... FILE: backend/cmd/installer/wizard/models/base_screen.go type BaseListOption (line 28) | type BaseListOption struct method FilterValue (line 33) | func (d BaseListOption) FilterValue() string { return d.Value } type BaseListDelegate (line 36) | type BaseListDelegate struct method SetColors (line 54) | func (d *BaseListDelegate) SetColors(selectedFg, normalFg lipgloss.Col... method SetWidth (line 59) | func (d *BaseListDelegate) SetWidth(width int) { d... method Height (line 60) | func (d BaseListDelegate) Height() int { r... method Spacing (line 61) | func (d BaseListDelegate) Spacing() int { r... method Update (line 62) | func (d BaseListDelegate) Update(_ tea.Msg, _ *list.Model) tea.Cmd { r... method Render (line 63) | func (d BaseListDelegate) Render(w io.Writer, m list.Model, index int,... function NewBaseListDelegate (line 44) | func NewBaseListDelegate(style lipgloss.Style, width int) *BaseListDeleg... type BaseListHelper (line 80) | type BaseListHelper struct method CreateList (line 83) | func (h BaseListHelper) CreateList(options []BaseListOption, delegate ... method SelectByValue (line 99) | func (h BaseListHelper) SelectByValue(listModel *list.Model, value str... method GetSelectedValue (line 110) | func (h BaseListHelper) GetSelectedValue(listModel *list.Model) string { method GetSelectedDisplay (line 124) | func (h BaseListHelper) GetSelectedDisplay(listModel *list.Model) stri... type BaseScreenModel (line 138) | type BaseScreenModel interface type BaseScreenHandler (line 164) | type BaseScreenHandler interface type BaseListHandler (line 191) | type BaseListHandler interface type FormField (line 209) | type FormField struct type BaseScreen (line 222) | type BaseScreen struct method Init (line 272) | func (b *BaseScreen) Init() tea.Cmd { method Update (line 281) | func (b *BaseScreen) Update(msg tea.Msg) tea.Cmd { method GetFormHotKeys (line 294) | func (b *BaseScreen) GetFormHotKeys() []string { method handleKeyPress (line 335) | func (b *BaseScreen) handleKeyPress(msg tea.KeyMsg) tea.Cmd { method View (line 369) | func (b *BaseScreen) View() string { method GetInputWidth (line 395) | func (b *BaseScreen) GetInputWidth() int { method getViewportFormSize (line 405) | func (b *BaseScreen) getViewportFormSize() (int, int) { method updateViewports (line 424) | func (b *BaseScreen) updateViewports() { method updateFormContent (line 446) | func (b *BaseScreen) updateFormContent() { method renderFormContent (line 570) | func (b *BaseScreen) renderFormContent(sections []string) string { method renderHelpContent (line 598) | func (b *BaseScreen) renderHelpContent() string { method renderForm (line 616) | func (b *BaseScreen) renderForm() string { method renderHelp (line 624) | func (b *BaseScreen) renderHelp() string { method ensureFocusVisible (line 632) | func (b *BaseScreen) ensureFocusVisible() { method focusNext (line 664) | func (b *BaseScreen) focusNext() { method focusPrev (line 682) | func (b *BaseScreen) focusPrev() { method getTotalElements (line 700) | func (b *BaseScreen) getTotalElements() int { method blurCurrentField (line 712) | func (b *BaseScreen) blurCurrentField() { method focusCurrentField (line 720) | func (b *BaseScreen) focusCurrentField() { method getFieldIndex (line 728) | func (b *BaseScreen) getFieldIndex() int { method toggleShowValues (line 738) | func (b *BaseScreen) toggleShowValues() { method handleTabCompletion (line 744) | func (b *BaseScreen) handleTabCompletion() { method resetForm (line 774) | func (b *BaseScreen) resetForm() { method saveConfiguration (line 782) | func (b *BaseScreen) saveConfiguration() tea.Cmd { method saveAndReturn (line 795) | func (b *BaseScreen) saveAndReturn() tea.Cmd { method isVerticalLayout (line 811) | func (b *BaseScreen) isVerticalLayout() bool { method renderVerticalLayout (line 817) | func (b *BaseScreen) renderVerticalLayout(leftPanel, rightPanel string... method renderHorizontalLayout (line 834) | func (b *BaseScreen) renderHorizontalLayout(leftPanel, rightPanel stri... method HandleFieldInput (line 854) | func (b *BaseScreen) HandleFieldInput(msg tea.KeyMsg) tea.Cmd { method HandleListInput (line 884) | func (b *BaseScreen) HandleListInput(msg tea.KeyMsg) tea.Cmd { method GetController (line 936) | func (b *BaseScreen) GetController() controller.Controller { method GetStyles (line 941) | func (b *BaseScreen) GetStyles() styles.Styles { method GetWindow (line 946) | func (b *BaseScreen) GetWindow() window.Window { method SetHasChanges (line 951) | func (b *BaseScreen) SetHasChanges(hasChanges bool) { method GetHasChanges (line 956) | func (b *BaseScreen) GetHasChanges() bool { method GetShowValues (line 961) | func (b *BaseScreen) GetShowValues() bool { method GetFocusedIndex (line 966) | func (b *BaseScreen) GetFocusedIndex() int { method SetFocusedIndex (line 971) | func (b *BaseScreen) SetFocusedIndex(index int) { method GetListHelper (line 976) | func (b *BaseScreen) GetListHelper() *BaseListHelper { function NewBaseScreen (line 253) | func NewBaseScreen( FILE: backend/cmd/installer/wizard/models/docker_form.go type DockerFormModel (line 19) | type DockerFormModel struct method BuildForm (line 35) | func (m *DockerFormModel) BuildForm() tea.Cmd { method createBooleanField (line 122) | func (m *DockerFormModel) createBooleanField(key, title, description s... method createTextField (line 137) | func (m *DockerFormModel) createTextField(key, title, description stri... method GetFormTitle (line 151) | func (m *DockerFormModel) GetFormTitle() string { method GetFormDescription (line 155) | func (m *DockerFormModel) GetFormDescription() string { method GetFormName (line 159) | func (m *DockerFormModel) GetFormName() string { method GetFormSummary (line 163) | func (m *DockerFormModel) GetFormSummary() string { method GetFormOverview (line 167) | func (m *DockerFormModel) GetFormOverview() string { method GetCurrentConfiguration (line 179) | func (m *DockerFormModel) GetCurrentConfiguration() string { method IsConfigured (line 264) | func (m *DockerFormModel) IsConfigured() bool { method GetHelpContent (line 268) | func (m *DockerFormModel) GetHelpContent() string { method HandleSave (line 316) | func (m *DockerFormModel) HandleSave() error { method HandleReset (line 408) | func (m *DockerFormModel) HandleReset() { method OnFieldChanged (line 416) | func (m *DockerFormModel) OnFieldChanged(fieldIndex int, oldValue, new... method GetFormFields (line 420) | func (m *DockerFormModel) GetFormFields() []FormField { method SetFormFields (line 424) | func (m *DockerFormModel) SetFormFields(fields []FormField) { method Update (line 429) | func (m *DockerFormModel) Update(msg tea.Msg) (tea.Model, tea.Cmd) { function NewDockerFormModel (line 24) | func NewDockerFormModel(c controller.Controller, s styles.Styles, w wind... FILE: backend/cmd/installer/wizard/models/embedder_form.go type EmbeddingProviderInfo (line 20) | type EmbeddingProviderInfo struct type EmbedderFormModel (line 34) | type EmbedderFormModel struct method initializeProviderList (line 172) | func (m *EmbedderFormModel) initializeProviderList(styles styles.Style... method getProviderID (line 199) | func (m *EmbedderFormModel) getProviderID(provider string) string { method getSelectedProvider (line 216) | func (m *EmbedderFormModel) getSelectedProvider() string { method getCurrentProviderInfo (line 225) | func (m *EmbedderFormModel) getCurrentProviderInfo() *EmbeddingProvide... method BuildForm (line 235) | func (m *EmbedderFormModel) BuildForm() tea.Cmd { method createURLField (line 269) | func (m *EmbedderFormModel) createURLField( method createAPIKeyField (line 288) | func (m *EmbedderFormModel) createAPIKeyField( method createModelField (line 307) | func (m *EmbedderFormModel) createModelField( method createBatchSizeField (line 326) | func (m *EmbedderFormModel) createBatchSizeField(config *controller.Em... method createStripNewLinesField (line 340) | func (m *EmbedderFormModel) createStripNewLinesField(config *controlle... method GetFormTitle (line 355) | func (m *EmbedderFormModel) GetFormTitle() string { method GetFormDescription (line 359) | func (m *EmbedderFormModel) GetFormDescription() string { method GetFormName (line 363) | func (m *EmbedderFormModel) GetFormName() string { method GetFormSummary (line 367) | func (m *EmbedderFormModel) GetFormSummary() string { method GetFormOverview (line 371) | func (m *EmbedderFormModel) GetFormOverview() string { method GetCurrentConfiguration (line 383) | func (m *EmbedderFormModel) GetCurrentConfiguration() string { method IsConfigured (line 438) | func (m *EmbedderFormModel) IsConfigured() bool { method GetHelpContent (line 442) | func (m *EmbedderFormModel) GetHelpContent() string { method HandleSave (line 466) | func (m *EmbedderFormModel) HandleSave() error { method HandleReset (line 530) | func (m *EmbedderFormModel) HandleReset() { method OnFieldChanged (line 542) | func (m *EmbedderFormModel) OnFieldChanged(fieldIndex int, oldValue, n... method GetFormFields (line 546) | func (m *EmbedderFormModel) GetFormFields() []FormField { method SetFormFields (line 550) | func (m *EmbedderFormModel) SetFormFields(fields []FormField) { method GetList (line 556) | func (m *EmbedderFormModel) GetList() *list.Model { method GetListDelegate (line 560) | func (m *EmbedderFormModel) GetListDelegate() *BaseListDelegate { method OnListSelectionChanged (line 564) | func (m *EmbedderFormModel) OnListSelectionChanged(oldSelection, newSe... method GetListTitle (line 569) | func (m *EmbedderFormModel) GetListTitle() string { method GetListDescription (line 573) | func (m *EmbedderFormModel) GetListDescription() string { method Update (line 578) | func (m *EmbedderFormModel) Update(msg tea.Msg) (tea.Model, tea.Cmd) { function NewEmbedderFormModel (line 46) | func NewEmbedderFormModel(c controller.Controller, s styles.Styles, w wi... function initEmbeddingProviders (line 58) | func initEmbeddingProviders() map[string]*EmbeddingProviderInfo { FILE: backend/cmd/installer/wizard/models/eula.go type EULAModel (line 19) | type EULAModel struct method Init (line 42) | func (m *EULAModel) Init() tea.Cmd { method loadEULA (line 48) | func (m *EULAModel) loadEULA() tea.Msg { method resetForm (line 70) | func (m *EULAModel) resetForm() { method Update (line 78) | func (m *EULAModel) Update(msg tea.Msg) (tea.Model, tea.Cmd) { method updateViewport (line 148) | func (m *EULAModel) updateViewport() { method updateScrollStatus (line 168) | func (m *EULAModel) updateScrollStatus() { method View (line 176) | func (m *EULAModel) View() string { method renderLoading (line 192) | func (m *EULAModel) renderLoading() string { method GetScrollInfo (line 199) | func (m *EULAModel) GetScrollInfo() (scrolled bool, atEnd bool, percen... method GetFormTitle (line 218) | func (m *EULAModel) GetFormTitle() string { method GetFormDescription (line 223) | func (m *EULAModel) GetFormDescription() string { method GetFormName (line 228) | func (m *EULAModel) GetFormName() string { method GetFormOverview (line 233) | func (m *EULAModel) GetFormOverview() string { method GetCurrentConfiguration (line 238) | func (m *EULAModel) GetCurrentConfiguration() string { method IsConfigured (line 251) | func (m *EULAModel) IsConfigured() bool { method GetFormHotKeys (line 256) | func (m *EULAModel) GetFormHotKeys() []string { function NewEULAModel (line 32) | func NewEULAModel(c controller.Controller, s styles.Styles, w window.Win... type EULALoadedMsg (line 210) | type EULALoadedMsg struct FILE: backend/cmd/installer/wizard/models/graphiti_form.go constant GraphitiURLPlaceholder (line 20) | GraphitiURLPlaceholder = "http://graphiti:8000" constant GraphitiTimeoutPlaceholder (line 21) | GraphitiTimeoutPlaceholder = "30" constant GraphitiModelNamePlaceholder (line 22) | GraphitiModelNamePlaceholder = "gpt-5-mini" constant GraphitiNeo4jUserPlaceholder (line 23) | GraphitiNeo4jUserPlaceholder = "neo4j" type GraphitiFormModel (line 27) | type GraphitiFormModel struct method initializeDeploymentList (line 46) | func (m *GraphitiFormModel) initializeDeploymentList(styles styles.Sty... method getSelectedDeploymentType (line 66) | func (m *GraphitiFormModel) getSelectedDeploymentType() string { method BuildForm (line 77) | func (m *GraphitiFormModel) BuildForm() tea.Cmd { method createTextField (line 118) | func (m *GraphitiFormModel) createTextField( method GetFormTitle (line 153) | func (m *GraphitiFormModel) GetFormTitle() string { method GetFormDescription (line 157) | func (m *GraphitiFormModel) GetFormDescription() string { method GetFormName (line 161) | func (m *GraphitiFormModel) GetFormName() string { method GetFormSummary (line 165) | func (m *GraphitiFormModel) GetFormSummary() string { method GetFormOverview (line 169) | func (m *GraphitiFormModel) GetFormOverview() string { method GetCurrentConfiguration (line 181) | func (m *GraphitiFormModel) GetCurrentConfiguration() string { method IsConfigured (line 257) | func (m *GraphitiFormModel) IsConfigured() bool { method GetHelpContent (line 262) | func (m *GraphitiFormModel) GetHelpContent() string { method HandleSave (line 283) | func (m *GraphitiFormModel) HandleSave() error { method HandleReset (line 332) | func (m *GraphitiFormModel) HandleReset() { method OnFieldChanged (line 343) | func (m *GraphitiFormModel) OnFieldChanged(fieldIndex int, oldValue, n... method GetFormFields (line 347) | func (m *GraphitiFormModel) GetFormFields() []FormField { method SetFormFields (line 351) | func (m *GraphitiFormModel) SetFormFields(fields []FormField) { method GetList (line 357) | func (m *GraphitiFormModel) GetList() *list.Model { method GetListDelegate (line 361) | func (m *GraphitiFormModel) GetListDelegate() *BaseListDelegate { method OnListSelectionChanged (line 365) | func (m *GraphitiFormModel) OnListSelectionChanged(oldSelection, newSe... method GetListTitle (line 370) | func (m *GraphitiFormModel) GetListTitle() string { method GetListDescription (line 374) | func (m *GraphitiFormModel) GetListDescription() string { method Update (line 379) | func (m *GraphitiFormModel) Update(msg tea.Msg) (tea.Model, tea.Cmd) { function NewGraphitiFormModel (line 36) | func NewGraphitiFormModel(c controller.Controller, s styles.Styles, w wi... FILE: backend/cmd/installer/wizard/models/helpers/calc_context.go type ContextEstimate (line 8) | type ContextEstimate struct type ConfigBoundaries (line 48) | type ConfigBoundaries struct function NewConfigBoundaries (line 67) | func NewConfigBoundaries(config csum.SummarizerConfig) ConfigBoundaries { function CalculateContextEstimate (line 124) | func CalculateContextEstimate(config csum.SummarizerConfig) ContextEstim... function calculateMinimumContext (line 147) | func calculateMinimumContext(config csum.SummarizerConfig, boundaries Co... function calculateMaximumContext (line 218) | func calculateMaximumContext(config csum.SummarizerConfig, boundaries Co... FILE: backend/cmd/installer/wizard/models/helpers/calc_context_test.go function TestConfigBoundaries (line 10) | func TestConfigBoundaries(t *testing.T) { function TestMonotonicBehavior (line 129) | func TestMonotonicBehavior(t *testing.T) { function TestBooleanParametersLogic (line 269) | func TestBooleanParametersLogic(t *testing.T) { function TestBoundariesUsage (line 360) | func TestBoundariesUsage(t *testing.T) { function TestCalculateContextEstimate (line 411) | func TestCalculateContextEstimate(t *testing.T) { function abs (line 502) | func abs(x int) int { FILE: backend/cmd/installer/wizard/models/langfuse_form.go constant LangfuseBaseURLPlaceholder (line 20) | LangfuseBaseURLPlaceholder = "https://cloud.langfuse.com" constant LangfuseProjectIDPlaceholder (line 21) | LangfuseProjectIDPlaceholder = "cm000000000000000000000000" constant LangfusePublicKeyPlaceholder (line 22) | LangfusePublicKeyPlaceholder = "pk-lf-00000000-0000-0000-0000-000000... constant LangfuseSecretKeyPlaceholder (line 23) | LangfuseSecretKeyPlaceholder = "" constant LangfuseAdminEmailPlaceholder (line 24) | LangfuseAdminEmailPlaceholder = "admin@pentagi.com" constant LangfuseAdminPasswordPlaceholder (line 25) | LangfuseAdminPasswordPlaceholder = "" constant LangfuseAdminNamePlaceholder (line 26) | LangfuseAdminNamePlaceholder = "admin" constant LangfuseLicenseKeyPlaceholder (line 27) | LangfuseLicenseKeyPlaceholder = "sk-lf-ee-xxxxxxxxxxxxxxxxxxxxxxxx" type LangfuseFormModel (line 31) | type LangfuseFormModel struct method initializeDeploymentList (line 50) | func (m *LangfuseFormModel) initializeDeploymentList(styles styles.Sty... method getSelectedDeploymentType (line 70) | func (m *LangfuseFormModel) getSelectedDeploymentType() string { method BuildForm (line 81) | func (m *LangfuseFormModel) BuildForm() tea.Cmd { method createTextField (line 142) | func (m *LangfuseFormModel) createTextField( method GetFormTitle (line 185) | func (m *LangfuseFormModel) GetFormTitle() string { method GetFormDescription (line 189) | func (m *LangfuseFormModel) GetFormDescription() string { method GetFormName (line 193) | func (m *LangfuseFormModel) GetFormName() string { method GetFormSummary (line 197) | func (m *LangfuseFormModel) GetFormSummary() string { method GetFormOverview (line 201) | func (m *LangfuseFormModel) GetFormOverview() string { method GetCurrentConfiguration (line 213) | func (m *LangfuseFormModel) GetCurrentConfiguration() string { method IsConfigured (line 301) | func (m *LangfuseFormModel) IsConfigured() bool { method GetHelpContent (line 306) | func (m *LangfuseFormModel) GetHelpContent() string { method HandleSave (line 327) | func (m *LangfuseFormModel) HandleSave() error { method HandleReset (line 387) | func (m *LangfuseFormModel) HandleReset() { method OnFieldChanged (line 398) | func (m *LangfuseFormModel) OnFieldChanged(fieldIndex int, oldValue, n... method GetFormFields (line 402) | func (m *LangfuseFormModel) GetFormFields() []FormField { method SetFormFields (line 406) | func (m *LangfuseFormModel) SetFormFields(fields []FormField) { method GetList (line 412) | func (m *LangfuseFormModel) GetList() *list.Model { method GetListDelegate (line 416) | func (m *LangfuseFormModel) GetListDelegate() *BaseListDelegate { method OnListSelectionChanged (line 420) | func (m *LangfuseFormModel) OnListSelectionChanged(oldSelection, newSe... method GetListTitle (line 425) | func (m *LangfuseFormModel) GetListTitle() string { method GetListDescription (line 429) | func (m *LangfuseFormModel) GetListDescription() string { method Update (line 434) | func (m *LangfuseFormModel) Update(msg tea.Msg) (tea.Model, tea.Cmd) { function NewLangfuseFormModel (line 40) | func NewLangfuseFormModel(c controller.Controller, s styles.Styles, w wi... FILE: backend/cmd/installer/wizard/models/list_screen.go type ListScreenHandler (line 18) | type ListScreenHandler interface type ListItem (line 33) | type ListItem struct type ListScreen (line 40) | type ListScreen struct method GetFormOverview (line 70) | func (l *ListScreen) GetFormOverview() string { method GetCurrentConfiguration (line 105) | func (l *ListScreen) GetCurrentConfiguration() string { method IsConfigured (line 119) | func (l *ListScreen) IsConfigured() bool { method GetFormHotKeys (line 131) | func (l *ListScreen) GetFormHotKeys() []string { method Init (line 140) | func (l *ListScreen) Init() tea.Cmd { method Update (line 155) | func (l *ListScreen) Update(msg tea.Msg) (tea.Model, tea.Cmd) { method View (line 180) | func (l *ListScreen) View() string { method GetScreen (line 199) | func (l *ListScreen) GetScreen(id ScreenID) BaseScreenModel { method GetController (line 204) | func (l *ListScreen) GetController() controller.Controller { method GetStyles (line 209) | func (l *ListScreen) GetStyles() styles.Styles { method GetWindow (line 214) | func (l *ListScreen) GetWindow() window.Window { method handleSelection (line 221) | func (l *ListScreen) handleSelection() (tea.Model, tea.Cmd) { method getItemInfo (line 231) | func (l *ListScreen) getItemInfo(item ListItem) string { method renderItemsList (line 242) | func (l *ListScreen) renderItemsList() string { method renderItemInfo (line 281) | func (l *ListScreen) renderItemInfo() string { method getContentTrueHeight (line 309) | func (l *ListScreen) getContentTrueHeight(content string) int { method isVerticalLayout (line 331) | func (l *ListScreen) isVerticalLayout() bool { method renderVerticalLayout (line 337) | func (l *ListScreen) renderVerticalLayout(leftPanel, rightPanel string... method renderHorizontalLayout (line 354) | func (l *ListScreen) renderHorizontalLayout(leftPanel, rightPanel stri... function NewListScreen (line 56) | func NewListScreen( FILE: backend/cmd/installer/wizard/models/llm_provider_form.go type LLMProviderFormModel (line 19) | type LLMProviderFormModel struct method BuildForm (line 44) | func (m *LLMProviderFormModel) BuildForm() tea.Cmd { method createBaseURLField (line 91) | func (m *LLMProviderFormModel) createBaseURLField(config *controller.L... method createAPIKeyField (line 106) | func (m *LLMProviderFormModel) createAPIKeyField(config *controller.LL... method createDefaultAuthField (line 120) | func (m *LLMProviderFormModel) createDefaultAuthField(config *controll... method createBearerTokenField (line 135) | func (m *LLMProviderFormModel) createBearerTokenField(config *controll... method createAccessKeyField (line 149) | func (m *LLMProviderFormModel) createAccessKeyField(config *controller... method createSecretKeyField (line 163) | func (m *LLMProviderFormModel) createSecretKeyField(config *controller... method createSessionTokenField (line 177) | func (m *LLMProviderFormModel) createSessionTokenField(config *control... method createRegionField (line 191) | func (m *LLMProviderFormModel) createRegionField(config *controller.LL... method createModelField (line 206) | func (m *LLMProviderFormModel) createModelField(config *controller.LLM... method createConfigPathField (line 220) | func (m *LLMProviderFormModel) createConfigPathField(config *controlle... method createLegacyReasoningField (line 238) | func (m *LLMProviderFormModel) createLegacyReasoningField(config *cont... method createPreserveReasoningField (line 253) | func (m *LLMProviderFormModel) createPreserveReasoningField(config *co... method createProviderNameField (line 268) | func (m *LLMProviderFormModel) createProviderNameField(config *control... method createPullTimeoutField (line 283) | func (m *LLMProviderFormModel) createPullTimeoutField(config *controll... method createPullEnabledField (line 298) | func (m *LLMProviderFormModel) createPullEnabledField(config *controll... method createLoadModelsEnabledField (line 314) | func (m *LLMProviderFormModel) createLoadModelsEnabledField(config *co... method createOllamaAPIKeyField (line 330) | func (m *LLMProviderFormModel) createOllamaAPIKeyField(config *control... method GetFormTitle (line 344) | func (m *LLMProviderFormModel) GetFormTitle() string { method GetFormDescription (line 348) | func (m *LLMProviderFormModel) GetFormDescription() string { method GetFormName (line 375) | func (m *LLMProviderFormModel) GetFormName() string { method GetFormSummary (line 402) | func (m *LLMProviderFormModel) GetFormSummary() string { method GetFormOverview (line 406) | func (m *LLMProviderFormModel) GetFormOverview() string { method GetCurrentConfiguration (line 418) | func (m *LLMProviderFormModel) GetCurrentConfiguration() string { method IsConfigured (line 561) | func (m *LLMProviderFormModel) IsConfigured() bool { method GetHelpContent (line 565) | func (m *LLMProviderFormModel) GetHelpContent() string { method HandleSave (line 597) | func (m *LLMProviderFormModel) HandleSave() error { method HandleReset (line 730) | func (m *LLMProviderFormModel) HandleReset() { method OnFieldChanged (line 738) | func (m *LLMProviderFormModel) OnFieldChanged(fieldIndex int, oldValue... method GetFormFields (line 742) | func (m *LLMProviderFormModel) GetFormFields() []FormField { method SetFormFields (line 746) | func (m *LLMProviderFormModel) SetFormFields(fields []FormField) { method Update (line 751) | func (m *LLMProviderFormModel) Update(msg tea.Msg) (tea.Model, tea.Cmd) { method getDefaultBaseURL (line 767) | func (m *LLMProviderFormModel) getDefaultBaseURL() string { function NewLLMProviderFormModel (line 28) | func NewLLMProviderFormModel( FILE: backend/cmd/installer/wizard/models/llm_providers.go type LLMProvidersHandler (line 15) | type LLMProvidersHandler struct method LoadItems (line 32) | func (h *LLMProvidersHandler) LoadItems() []ListItem { method HandleSelection (line 49) | func (h *LLMProvidersHandler) HandleSelection(item ListItem) tea.Cmd { method GetFormTitle (line 57) | func (h *LLMProvidersHandler) GetFormTitle() string { method GetFormDescription (line 61) | func (h *LLMProvidersHandler) GetFormDescription() string { method GetFormName (line 65) | func (h *LLMProvidersHandler) GetFormName() string { method GetOverview (line 69) | func (h *LLMProvidersHandler) GetOverview() string { method ShowConfiguredStatus (line 81) | func (h *LLMProvidersHandler) ShowConfiguredStatus() bool { function NewLLMProvidersHandler (line 22) | func NewLLMProvidersHandler(c controller.Controller, s styles.Styles, w ... type LLMProvidersModel (line 86) | type LLMProvidersModel struct function NewLLMProvidersModel (line 92) | func NewLLMProvidersModel(c controller.Controller, s styles.Styles, w wi... FILE: backend/cmd/installer/wizard/models/main_menu.go type MainMenuHandler (line 15) | type MainMenuHandler struct method LoadItems (line 32) | func (h *MainMenuHandler) LoadItems() []ListItem { method HandleSelection (line 56) | func (h *MainMenuHandler) HandleSelection(item ListItem) tea.Cmd { method GetOverview (line 64) | func (h *MainMenuHandler) GetOverview() string { method ShowConfiguredStatus (line 99) | func (h *MainMenuHandler) ShowConfiguredStatus() bool { method GetFormTitle (line 103) | func (h *MainMenuHandler) GetFormTitle() string { method GetFormDescription (line 107) | func (h *MainMenuHandler) GetFormDescription() string { method GetFormName (line 111) | func (h *MainMenuHandler) GetFormName() string { method isItemEnabled (line 117) | func (h *MainMenuHandler) isItemEnabled(item ListItem) bool { function NewMainMenuHandler (line 22) | func NewMainMenuHandler(c controller.Controller, s styles.Styles, w wind... type MainMenuModel (line 137) | type MainMenuModel struct function NewMainMenuModel (line 143) | func NewMainMenuModel( FILE: backend/cmd/installer/wizard/models/maintenance.go type MaintenanceHandler (line 15) | type MaintenanceHandler struct method LoadItems (line 31) | func (h *MaintenanceHandler) LoadItems() []ListItem { method HandleSelection (line 124) | func (h *MaintenanceHandler) HandleSelection(item ListItem) tea.Cmd { method GetFormTitle (line 132) | func (h *MaintenanceHandler) GetFormTitle() string { method GetFormDescription (line 137) | func (h *MaintenanceHandler) GetFormDescription() string { method GetFormName (line 142) | func (h *MaintenanceHandler) GetFormName() string { method GetOverview (line 147) | func (h *MaintenanceHandler) GetOverview() string { method ShowConfiguredStatus (line 160) | func (h *MaintenanceHandler) ShowConfiguredStatus() bool { function NewMaintenanceHandler (line 22) | func NewMaintenanceHandler(c controller.Controller, s styles.Styles, w w... type MaintenanceModel (line 165) | type MaintenanceModel struct function NewMaintenanceModel (line 171) | func NewMaintenanceModel( FILE: backend/cmd/installer/wizard/models/mock_form.go type MockFormModel (line 14) | type MockFormModel struct method BuildForm (line 40) | func (m *MockFormModel) BuildForm() tea.Cmd { method GetFormTitle (line 46) | func (m *MockFormModel) GetFormTitle() string { method GetFormDescription (line 50) | func (m *MockFormModel) GetFormDescription() string { method GetFormName (line 54) | func (m *MockFormModel) GetFormName() string { method GetFormSummary (line 58) | func (m *MockFormModel) GetFormSummary() string { method GetFormOverview (line 62) | func (m *MockFormModel) GetFormOverview() string { method GetCurrentConfiguration (line 79) | func (m *MockFormModel) GetCurrentConfiguration() string { method IsConfigured (line 83) | func (m *MockFormModel) IsConfigured() bool { method GetHelpContent (line 87) | func (m *MockFormModel) GetHelpContent() string { method HandleSave (line 104) | func (m *MockFormModel) HandleSave() error { method HandleReset (line 109) | func (m *MockFormModel) HandleReset() { method OnFieldChanged (line 113) | func (m *MockFormModel) OnFieldChanged(fieldIndex int, oldValue, newVa... method GetFormFields (line 117) | func (m *MockFormModel) GetFormFields() []FormField { method SetFormFields (line 121) | func (m *MockFormModel) SetFormFields(fields []FormField) { method GetFormHotKeys (line 126) | func (m *MockFormModel) GetFormHotKeys() []string { method Update (line 131) | func (m *MockFormModel) Update(msg tea.Msg) (tea.Model, tea.Cmd) { function NewMockFormModel (line 22) | func NewMockFormModel( FILE: backend/cmd/installer/wizard/models/monitoring.go type MonitoringHandler (line 15) | type MonitoringHandler struct method LoadItems (line 32) | func (h *MonitoringHandler) LoadItems() []ListItem { method HandleSelection (line 41) | func (h *MonitoringHandler) HandleSelection(item ListItem) tea.Cmd { method GetFormTitle (line 49) | func (h *MonitoringHandler) GetFormTitle() string { method GetFormDescription (line 53) | func (h *MonitoringHandler) GetFormDescription() string { method GetFormName (line 57) | func (h *MonitoringHandler) GetFormName() string { method GetOverview (line 61) | func (h *MonitoringHandler) GetOverview() string { method ShowConfiguredStatus (line 73) | func (h *MonitoringHandler) ShowConfiguredStatus() bool { function NewMonitoringHandler (line 22) | func NewMonitoringHandler(c controller.Controller, s styles.Styles, w wi... type MonitoringModel (line 78) | type MonitoringModel struct function NewMonitoringModel (line 84) | func NewMonitoringModel(c controller.Controller, s styles.Styles, w wind... FILE: backend/cmd/installer/wizard/models/observability_form.go type ObservabilityFormModel (line 20) | type ObservabilityFormModel struct method initializeDeploymentList (line 39) | func (m *ObservabilityFormModel) initializeDeploymentList(styles style... method getSelectedDeploymentType (line 59) | func (m *ObservabilityFormModel) getSelectedDeploymentType() string { method BuildForm (line 70) | func (m *ObservabilityFormModel) BuildForm() tea.Cmd { method createTextField (line 107) | func (m *ObservabilityFormModel) createTextField( method GetFormTitle (line 144) | func (m *ObservabilityFormModel) GetFormTitle() string { method GetFormDescription (line 148) | func (m *ObservabilityFormModel) GetFormDescription() string { method GetFormName (line 152) | func (m *ObservabilityFormModel) GetFormName() string { method GetFormSummary (line 156) | func (m *ObservabilityFormModel) GetFormSummary() string { method GetFormOverview (line 160) | func (m *ObservabilityFormModel) GetFormOverview() string { method GetCurrentConfiguration (line 172) | func (m *ObservabilityFormModel) GetCurrentConfiguration() string { method IsConfigured (line 245) | func (m *ObservabilityFormModel) IsConfigured() bool { method GetHelpContent (line 249) | func (m *ObservabilityFormModel) GetHelpContent() string { method HandleSave (line 270) | func (m *ObservabilityFormModel) HandleSave() error { method HandleReset (line 320) | func (m *ObservabilityFormModel) HandleReset() { method OnFieldChanged (line 331) | func (m *ObservabilityFormModel) OnFieldChanged(fieldIndex int, oldVal... method GetFormFields (line 335) | func (m *ObservabilityFormModel) GetFormFields() []FormField { method SetFormFields (line 339) | func (m *ObservabilityFormModel) SetFormFields(fields []FormField) { method GetList (line 345) | func (m *ObservabilityFormModel) GetList() *list.Model { method GetListDelegate (line 349) | func (m *ObservabilityFormModel) GetListDelegate() *BaseListDelegate { method OnListSelectionChanged (line 353) | func (m *ObservabilityFormModel) OnListSelectionChanged(oldSelection, ... method GetListTitle (line 358) | func (m *ObservabilityFormModel) GetListTitle() string { method GetListDescription (line 362) | func (m *ObservabilityFormModel) GetListDescription() string { method Update (line 367) | func (m *ObservabilityFormModel) Update(msg tea.Msg) (tea.Model, tea.C... function NewObservabilityFormModel (line 29) | func NewObservabilityFormModel(c controller.Controller, s styles.Styles,... FILE: backend/cmd/installer/wizard/models/processor_operation_form.go type ProcessorOperationFormModel (line 19) | type ProcessorOperationFormModel struct method BuildForm (line 71) | func (m *ProcessorOperationFormModel) BuildForm() tea.Cmd { method GetFormTitle (line 107) | func (m *ProcessorOperationFormModel) GetFormTitle() string { method GetFormDescription (line 111) | func (m *ProcessorOperationFormModel) GetFormDescription() string { method GetFormName (line 115) | func (m *ProcessorOperationFormModel) GetFormName() string { method GetFormSummary (line 119) | func (m *ProcessorOperationFormModel) GetFormSummary() string { method GetFormOverview (line 124) | func (m *ProcessorOperationFormModel) GetFormOverview() string { method GetCurrentConfiguration (line 139) | func (m *ProcessorOperationFormModel) GetCurrentConfiguration() string { method IsConfigured (line 160) | func (m *ProcessorOperationFormModel) IsConfigured() bool { method GetHelpContent (line 165) | func (m *ProcessorOperationFormModel) GetHelpContent() string { method HandleSave (line 180) | func (m *ProcessorOperationFormModel) HandleSave() error { method HandleReset (line 185) | func (m *ProcessorOperationFormModel) HandleReset() { method OnFieldChanged (line 189) | func (m *ProcessorOperationFormModel) OnFieldChanged(fieldIndex int, o... method GetFormFields (line 193) | func (m *ProcessorOperationFormModel) GetFormFields() []FormField { method SetFormFields (line 197) | func (m *ProcessorOperationFormModel) SetFormFields(fields []FormField) { method getOperationInfo (line 202) | func (m *ProcessorOperationFormModel) getOperationInfo() *processorOpe... method handleOperation (line 307) | func (m *ProcessorOperationFormModel) handleOperation() tea.Cmd { method handleCompletion (line 354) | func (m *ProcessorOperationFormModel) handleCompletion(msg processor.P... method renderLeftPanel (line 367) | func (m *ProcessorOperationFormModel) renderLeftPanel() string { method Update (line 377) | func (m *ProcessorOperationFormModel) Update(msg tea.Msg) (tea.Model, ... method View (line 481) | func (m *ProcessorOperationFormModel) View() string { method GetFormHotKeys (line 504) | func (m *ProcessorOperationFormModel) GetFormHotKeys() []string { method isActionAvailable (line 519) | func (m *ProcessorOperationFormModel) isActionAvailable() bool { method renderCurrentStateSummary (line 560) | func (m *ProcessorOperationFormModel) renderCurrentStateSummary() stri... method renderPlannedActions (line 596) | func (m *ProcessorOperationFormModel) renderPlannedActions() string { method renderEffectsText (line 644) | func (m *ProcessorOperationFormModel) renderEffectsText() string { type processorOperationInfo (line 41) | type processorOperationInfo struct function NewProcessorOperationFormModel (line 50) | func NewProcessorOperationFormModel( FILE: backend/cmd/installer/wizard/models/reset_password.go type ResetPasswordHandler (line 20) | type ResetPasswordHandler struct method BuildForm (line 38) | func (h *ResetPasswordHandler) BuildForm() tea.Cmd { method setFormFields (line 77) | func (h *ResetPasswordHandler) setFormFields(fields []FormField) { method GetFormSummary (line 82) | func (h *ResetPasswordHandler) GetFormSummary() string { method GetHelpContent (line 87) | func (h *ResetPasswordHandler) GetHelpContent() string { method HandleSave (line 92) | func (h *ResetPasswordHandler) HandleSave() error { method HandleReset (line 97) | func (h *ResetPasswordHandler) HandleReset() { method OnFieldChanged (line 102) | func (h *ResetPasswordHandler) OnFieldChanged(fieldIndex int, oldValue... method processPasswordReset (line 110) | func (h *ResetPasswordHandler) processPasswordReset(closeOnSuccess boo... method GetFormFields (line 117) | func (h *ResetPasswordHandler) GetFormFields() []FormField { method SetFormFields (line 122) | func (h *ResetPasswordHandler) SetFormFields(fields []FormField) { function NewResetPasswordHandler (line 29) | func NewResetPasswordHandler(c controller.Controller, s styles.Styles, w... type ResetPasswordModel (line 127) | type ResetPasswordModel struct method GetFormTitle (line 154) | func (m *ResetPasswordModel) GetFormTitle() string { method GetFormDescription (line 159) | func (m *ResetPasswordModel) GetFormDescription() string { method GetFormName (line 164) | func (m *ResetPasswordModel) GetFormName() string { method GetFormOverview (line 169) | func (m *ResetPasswordModel) GetFormOverview() string { method GetCurrentConfiguration (line 182) | func (m *ResetPasswordModel) GetCurrentConfiguration() string { method IsConfigured (line 191) | func (m *ResetPasswordModel) IsConfigured() bool { method Update (line 197) | func (m *ResetPasswordModel) Update(msg tea.Msg) (tea.Model, tea.Cmd) { method GetFormHotKeys (line 260) | func (m *ResetPasswordModel) GetFormHotKeys() []string { method executePasswordReset (line 265) | func (m *ResetPasswordModel) executePasswordReset(newPassword string, ... method validatePasswords (line 279) | func (m *ResetPasswordModel) validatePasswords(newPassword, confirmPas... method handleFormSubmission (line 296) | func (m *ResetPasswordModel) handleFormSubmission(closeOnSuccess bool)... function NewResetPasswordModel (line 140) | func NewResetPasswordModel( FILE: backend/cmd/installer/wizard/models/scraper_form.go type ScraperFormModel (line 21) | type ScraperFormModel struct method initializeModeList (line 40) | func (m *ScraperFormModel) initializeModeList(styles styles.Styles) { method getSelectedMode (line 60) | func (m *ScraperFormModel) getSelectedMode() string { method BuildForm (line 71) | func (m *ScraperFormModel) BuildForm() tea.Cmd { method createURLField (line 144) | func (m *ScraperFormModel) createURLField( method createCredentialField (line 175) | func (m *ScraperFormModel) createCredentialField( method createSessionsField (line 209) | func (m *ScraperFormModel) createSessionsField( method GetFormTitle (line 232) | func (m *ScraperFormModel) GetFormTitle() string { method GetFormDescription (line 236) | func (m *ScraperFormModel) GetFormDescription() string { method GetFormName (line 240) | func (m *ScraperFormModel) GetFormName() string { method GetFormSummary (line 244) | func (m *ScraperFormModel) GetFormSummary() string { method GetFormOverview (line 248) | func (m *ScraperFormModel) GetFormOverview() string { method GetCurrentConfiguration (line 260) | func (m *ScraperFormModel) GetCurrentConfiguration() string { method IsConfigured (line 353) | func (m *ScraperFormModel) IsConfigured() bool { method GetHelpContent (line 357) | func (m *ScraperFormModel) GetHelpContent() string { method HandleSave (line 376) | func (m *ScraperFormModel) HandleSave() error { method HandleReset (line 432) | func (m *ScraperFormModel) HandleReset() { method OnFieldChanged (line 443) | func (m *ScraperFormModel) OnFieldChanged(fieldIndex int, oldValue, ne... method GetFormFields (line 447) | func (m *ScraperFormModel) GetFormFields() []FormField { method SetFormFields (line 451) | func (m *ScraperFormModel) SetFormFields(fields []FormField) { method GetList (line 457) | func (m *ScraperFormModel) GetList() *list.Model { method GetListDelegate (line 461) | func (m *ScraperFormModel) GetListDelegate() *BaseListDelegate { method OnListSelectionChanged (line 465) | func (m *ScraperFormModel) OnListSelectionChanged(oldSelection, newSel... method GetListTitle (line 470) | func (m *ScraperFormModel) GetListTitle() string { method GetListDescription (line 474) | func (m *ScraperFormModel) GetListDescription() string { method Update (line 479) | func (m *ScraperFormModel) Update(msg tea.Msg) (tea.Model, tea.Cmd) { function NewScraperFormModel (line 30) | func NewScraperFormModel(c controller.Controller, s styles.Styles, w win... FILE: backend/cmd/installer/wizard/models/search_engines_form.go type SearchEnginesFormModel (line 18) | type SearchEnginesFormModel struct method BuildForm (line 34) | func (m *SearchEnginesFormModel) BuildForm() tea.Cmd { method createBooleanField (line 199) | func (m *SearchEnginesFormModel) createBooleanField(key, title, descri... method createAPIKeyField (line 214) | func (m *SearchEnginesFormModel) createAPIKeyField(key, title, descrip... method createTextField (line 218) | func (m *SearchEnginesFormModel) createTextField(key, title, descripti... method createSelectTextField (line 232) | func (m *SearchEnginesFormModel) createSelectTextField(key, title, des... method GetFormTitle (line 249) | func (m *SearchEnginesFormModel) GetFormTitle() string { method GetFormDescription (line 253) | func (m *SearchEnginesFormModel) GetFormDescription() string { method GetFormName (line 257) | func (m *SearchEnginesFormModel) GetFormName() string { method GetFormSummary (line 261) | func (m *SearchEnginesFormModel) GetFormSummary() string { method GetFormOverview (line 265) | func (m *SearchEnginesFormModel) GetFormOverview() string { method GetCurrentConfiguration (line 277) | func (m *SearchEnginesFormModel) GetCurrentConfiguration() string { method IsConfigured (line 366) | func (m *SearchEnginesFormModel) IsConfigured() bool { method GetHelpContent (line 370) | func (m *SearchEnginesFormModel) GetHelpContent() string { method HandleSave (line 380) | func (m *SearchEnginesFormModel) HandleSave() error { method HandleReset (line 472) | func (m *SearchEnginesFormModel) HandleReset() { method OnFieldChanged (line 480) | func (m *SearchEnginesFormModel) OnFieldChanged(fieldIndex int, oldVal... method GetFormFields (line 484) | func (m *SearchEnginesFormModel) GetFormFields() []FormField { method SetFormFields (line 488) | func (m *SearchEnginesFormModel) SetFormFields(fields []FormField) { method Update (line 493) | func (m *SearchEnginesFormModel) Update(msg tea.Msg) (tea.Model, tea.C... function NewSearchEnginesFormModel (line 23) | func NewSearchEnginesFormModel(c controller.Controller, s styles.Styles,... FILE: backend/cmd/installer/wizard/models/server_settings_form.go type ServerSettingsFormModel (line 20) | type ServerSettingsFormModel struct method BuildForm (line 35) | func (m *ServerSettingsFormModel) BuildForm() tea.Cmd { method createTextField (line 147) | func (m *ServerSettingsFormModel) createTextField(key, title, descript... method createRawField (line 163) | func (m *ServerSettingsFormModel) createRawField(key, title, descripti... method GetFormTitle (line 176) | func (m *ServerSettingsFormModel) GetFormTitle() string { method GetFormDescription (line 180) | func (m *ServerSettingsFormModel) GetFormDescription() string { method GetFormName (line 184) | func (m *ServerSettingsFormModel) GetFormName() string { method GetFormSummary (line 188) | func (m *ServerSettingsFormModel) GetFormSummary() string { method GetFormOverview (line 192) | func (m *ServerSettingsFormModel) GetFormOverview() string { method GetCurrentConfiguration (line 204) | func (m *ServerSettingsFormModel) GetCurrentConfiguration() string { method IsConfigured (line 320) | func (m *ServerSettingsFormModel) IsConfigured() bool { method GetHelpContent (line 325) | func (m *ServerSettingsFormModel) GetHelpContent() string { method HandleSave (line 373) | func (m *ServerSettingsFormModel) HandleSave() error { method HandleReset (line 458) | func (m *ServerSettingsFormModel) HandleReset() { method OnFieldChanged (line 463) | func (m *ServerSettingsFormModel) OnFieldChanged(fieldIndex int, oldVa... method GetFormFields (line 467) | func (m *ServerSettingsFormModel) GetFormFields() []FormField { method SetFormFields (line 471) | func (m *ServerSettingsFormModel) SetFormFields(fields []FormField) { method Update (line 476) | func (m *ServerSettingsFormModel) Update(msg tea.Msg) (tea.Model, tea.... function NewServerSettingsFormModel (line 25) | func NewServerSettingsFormModel(c controller.Controller, s styles.Styles... FILE: backend/cmd/installer/wizard/models/summarizer.go type SummarizerHandler (line 15) | type SummarizerHandler struct method LoadItems (line 32) | func (h *SummarizerHandler) LoadItems() []ListItem { method HandleSelection (line 41) | func (h *SummarizerHandler) HandleSelection(item ListItem) tea.Cmd { method GetFormTitle (line 49) | func (h *SummarizerHandler) GetFormTitle() string { method GetFormDescription (line 53) | func (h *SummarizerHandler) GetFormDescription() string { method GetFormName (line 57) | func (h *SummarizerHandler) GetFormName() string { method GetOverview (line 61) | func (h *SummarizerHandler) GetOverview() string { method ShowConfiguredStatus (line 73) | func (h *SummarizerHandler) ShowConfiguredStatus() bool { function NewSummarizerHandler (line 22) | func NewSummarizerHandler(c controller.Controller, s styles.Styles, w wi... type SummarizerModel (line 78) | type SummarizerModel struct function NewSummarizerModel (line 84) | func NewSummarizerModel(c controller.Controller, s styles.Styles, w wind... FILE: backend/cmd/installer/wizard/models/summarizer_form.go type SummarizerFormModel (line 21) | type SummarizerFormModel struct method envVarToBool (line 51) | func (m *SummarizerFormModel) envVarToBool(envVar loader.EnvVar) bool { method envVarToInt (line 58) | func (m *SummarizerFormModel) envVarToInt(envVar loader.EnvVar) int { method formatBytes (line 72) | func (m *SummarizerFormModel) formatBytes(bytes int) string { method formatBytesFromEnvVar (line 88) | func (m *SummarizerFormModel) formatBytesFromEnvVar(envVar loader.EnvV... method formatBooleanStatus (line 92) | func (m *SummarizerFormModel) formatBooleanStatus(value bool) string { method formatNumber (line 99) | func (m *SummarizerFormModel) formatNumber(num int) string { method BuildForm (line 110) | func (m *SummarizerFormModel) BuildForm() tea.Cmd { method createBooleanField (line 184) | func (m *SummarizerFormModel) createBooleanField(key, title, descripti... method createIntegerField (line 199) | func (m *SummarizerFormModel) createIntegerField(key, title, descripti... method GetFormTitle (line 220) | func (m *SummarizerFormModel) GetFormTitle() string { method GetFormDescription (line 227) | func (m *SummarizerFormModel) GetFormDescription() string { method GetFormName (line 231) | func (m *SummarizerFormModel) GetFormName() string { method GetFormSummary (line 235) | func (m *SummarizerFormModel) GetFormSummary() string { method GetFormOverview (line 239) | func (m *SummarizerFormModel) GetFormOverview() string { method GetCurrentConfiguration (line 258) | func (m *SummarizerFormModel) GetCurrentConfiguration() string { method IsConfigured (line 302) | func (m *SummarizerFormModel) IsConfigured() bool { method GetHelpContent (line 307) | func (m *SummarizerFormModel) GetHelpContent() string { method HandleSave (line 322) | func (m *SummarizerFormModel) HandleSave() error { method validateBooleanField (line 410) | func (m *SummarizerFormModel) validateBooleanField(value, fieldName st... method validateIntegerField (line 417) | func (m *SummarizerFormModel) validateIntegerField(value, fieldName st... method HandleReset (line 434) | func (m *SummarizerFormModel) HandleReset() { method OnFieldChanged (line 442) | func (m *SummarizerFormModel) OnFieldChanged(fieldIndex int, oldValue,... method GetFormFields (line 446) | func (m *SummarizerFormModel) GetFormFields() []FormField { method SetFormFields (line 450) | func (m *SummarizerFormModel) SetFormFields(fields []FormField) { method Update (line 455) | func (m *SummarizerFormModel) Update(msg tea.Msg) (tea.Model, tea.Cmd) { method calculateTokenEstimate (line 471) | func (m *SummarizerFormModel) calculateTokenEstimate() string { method buildConfigFromForm (line 521) | func (m *SummarizerFormModel) buildConfigFromForm(fields []FormField) ... function NewSummarizerFormModel (line 30) | func NewSummarizerFormModel( FILE: backend/cmd/installer/wizard/models/tools.go type ToolsHandler (line 15) | type ToolsHandler struct method LoadItems (line 32) | func (h *ToolsHandler) LoadItems() []ListItem { method HandleSelection (line 44) | func (h *ToolsHandler) HandleSelection(item ListItem) tea.Cmd { method GetFormTitle (line 52) | func (h *ToolsHandler) GetFormTitle() string { method GetFormDescription (line 56) | func (h *ToolsHandler) GetFormDescription() string { method GetFormName (line 60) | func (h *ToolsHandler) GetFormName() string { method GetOverview (line 64) | func (h *ToolsHandler) GetOverview() string { method ShowConfiguredStatus (line 76) | func (h *ToolsHandler) ShowConfiguredStatus() bool { function NewToolsHandler (line 22) | func NewToolsHandler(c controller.Controller, s styles.Styles, w window.... type ToolsModel (line 81) | type ToolsModel struct function NewToolsModel (line 87) | func NewToolsModel(c controller.Controller, s styles.Styles, w window.Wi... FILE: backend/cmd/installer/wizard/models/types.go constant MinMenuWidth (line 10) | MinMenuWidth = 38 constant MaxMenuWidth (line 11) | MaxMenuWidth = 88 constant MinInfoWidth (line 12) | MinInfoWidth = 34 constant PaddingWidth (line 13) | PaddingWidth = 8 constant PaddingHeight (line 14) | PaddingHeight = 2 type Registry (line 17) | type Registry interface function RestoreModel (line 22) | func RestoreModel(model tea.Model) BaseScreenModel { type ScreenID (line 75) | type ScreenID method GetScreen (line 179) | func (s ScreenID) GetScreen() string { method GetArgs (line 185) | func (s ScreenID) GetArgs() []string { constant WelcomeScreen (line 79) | WelcomeScreen ScreenID = "welcome" constant EULAScreen (line 80) | EULAScreen ScreenID = "eula" constant MainMenuScreen (line 81) | MainMenuScreen ScreenID = "main_menu" constant LLMProvidersScreen (line 84) | LLMProvidersScreen ScreenID = "llm_providers" constant LLMProviderOpenAIScreen (line 85) | LLMProviderOpenAIScreen ScreenID = "llm_provider_form§openai" constant LLMProviderAnthropicScreen (line 86) | LLMProviderAnthropicScreen ScreenID = "llm_provider_form§anthropic" constant LLMProviderGeminiScreen (line 87) | LLMProviderGeminiScreen ScreenID = "llm_provider_form§gemini" constant LLMProviderBedrockScreen (line 88) | LLMProviderBedrockScreen ScreenID = "llm_provider_form§bedrock" constant LLMProviderOllamaScreen (line 89) | LLMProviderOllamaScreen ScreenID = "llm_provider_form§ollama" constant LLMProviderCustomScreen (line 90) | LLMProviderCustomScreen ScreenID = "llm_provider_form§custom" constant LLMProviderDeepSeekScreen (line 91) | LLMProviderDeepSeekScreen ScreenID = "llm_provider_form§deepseek" constant LLMProviderGLMScreen (line 92) | LLMProviderGLMScreen ScreenID = "llm_provider_form§glm" constant LLMProviderKimiScreen (line 93) | LLMProviderKimiScreen ScreenID = "llm_provider_form§kimi" constant LLMProviderQwenScreen (line 94) | LLMProviderQwenScreen ScreenID = "llm_provider_form§qwen" constant SummarizerScreen (line 97) | SummarizerScreen ScreenID = "summarizer" constant SummarizerGeneralScreen (line 98) | SummarizerGeneralScreen ScreenID = "summarizer_form§general" constant SummarizerAssistantScreen (line 99) | SummarizerAssistantScreen ScreenID = "summarizer_form§assistant" constant MonitoringScreen (line 102) | MonitoringScreen ScreenID = "monitoring" constant LangfuseScreen (line 103) | LangfuseScreen ScreenID = "langfuse_form" constant GraphitiFormScreen (line 104) | GraphitiFormScreen ScreenID = "graphiti_form" constant ObservabilityScreen (line 105) | ObservabilityScreen ScreenID = "observability_form" constant EmbedderFormScreen (line 106) | EmbedderFormScreen ScreenID = "embedder_form" constant ServerSettingsScreen (line 107) | ServerSettingsScreen ScreenID = "server_settings_form" constant ToolsScreen (line 110) | ToolsScreen ScreenID = "tools" constant AIAgentsSettingsFormScreen (line 111) | AIAgentsSettingsFormScreen ScreenID = "ai_agents_settings_form" constant SearchEnginesFormScreen (line 112) | SearchEnginesFormScreen ScreenID = "search_engines_form" constant ScraperFormScreen (line 113) | ScraperFormScreen ScreenID = "scraper_form" constant DockerFormScreen (line 114) | DockerFormScreen ScreenID = "docker_form" constant ApplyChangesScreen (line 117) | ApplyChangesScreen ScreenID = "apply_changes" constant InstallPentagiScreen (line 118) | InstallPentagiScreen ScreenID = "processor_operation_form§all§install" constant StartPentagiScreen (line 119) | StartPentagiScreen ScreenID = "processor_operation_form§all§start" constant StopPentagiScreen (line 120) | StopPentagiScreen ScreenID = "processor_operation_form§all§stop" constant RestartPentagiScreen (line 121) | RestartPentagiScreen ScreenID = "processor_operation_form§all§restart" constant DownloadWorkerImageScreen (line 122) | DownloadWorkerImageScreen ScreenID = "processor_operation_form§worker§do... constant UpdateWorkerImageScreen (line 123) | UpdateWorkerImageScreen ScreenID = "processor_operation_form§worker§up... constant UpdatePentagiScreen (line 124) | UpdatePentagiScreen ScreenID = "processor_operation_form§compose§u... constant UpdateInstallerScreen (line 125) | UpdateInstallerScreen ScreenID = "processor_operation_form§installer... constant FactoryResetScreen (line 126) | FactoryResetScreen ScreenID = "processor_operation_form§all§facto... constant RemovePentagiScreen (line 127) | RemovePentagiScreen ScreenID = "processor_operation_form§all§remove" constant PurgePentagiScreen (line 128) | PurgePentagiScreen ScreenID = "processor_operation_form§all§purge" constant ResetPasswordScreen (line 129) | ResetPasswordScreen ScreenID = "reset_password" constant MaintenanceScreen (line 130) | MaintenanceScreen ScreenID = "maintenance" type LLMProviderID (line 133) | type LLMProviderID constant LLMProviderOpenAI (line 136) | LLMProviderOpenAI LLMProviderID = "openai" constant LLMProviderAnthropic (line 137) | LLMProviderAnthropic LLMProviderID = "anthropic" constant LLMProviderGemini (line 138) | LLMProviderGemini LLMProviderID = "gemini" constant LLMProviderBedrock (line 139) | LLMProviderBedrock LLMProviderID = "bedrock" constant LLMProviderOllama (line 140) | LLMProviderOllama LLMProviderID = "ollama" constant LLMProviderCustom (line 141) | LLMProviderCustom LLMProviderID = "custom" constant LLMProviderDeepSeek (line 142) | LLMProviderDeepSeek LLMProviderID = "deepseek" constant LLMProviderGLM (line 143) | LLMProviderGLM LLMProviderID = "glm" constant LLMProviderKimi (line 144) | LLMProviderKimi LLMProviderID = "kimi" constant LLMProviderQwen (line 145) | LLMProviderQwen LLMProviderID = "qwen" type NavigationMsg (line 149) | type NavigationMsg struct type MenuState (line 155) | type MenuState struct type MenuItem (line 162) | type MenuItem struct type StatusInfo (line 172) | type StatusInfo struct function CreateScreenID (line 194) | func CreateScreenID(screen string, args ...string) ScreenID { FILE: backend/cmd/installer/wizard/models/welcome.go constant MinTerminalWidth (line 19) | MinTerminalWidth = 80 constant MinPanelWidth (line 20) | MinPanelWidth = 25 constant MinRightPanelWidth (line 21) | MinRightPanelWidth = 35 type WelcomeModel (line 24) | type WelcomeModel struct method Init (line 40) | func (m *WelcomeModel) Init() tea.Cmd { method Update (line 45) | func (m *WelcomeModel) Update(msg tea.Msg) (tea.Model, tea.Cmd) { method updateViewport (line 90) | func (m *WelcomeModel) updateViewport() { method View (line 109) | func (m *WelcomeModel) View() string { method renderContent (line 129) | func (m *WelcomeModel) renderContent() string { method renderVerticalLayout (line 140) | func (m *WelcomeModel) renderVerticalLayout(leftPanel, rightPanel stri... method renderHorizontalLayout (line 151) | func (m *WelcomeModel) renderHorizontalLayout(leftPanel, rightPanel st... method renderSystemChecks (line 164) | func (m *WelcomeModel) renderSystemChecks() string { method renderInfoPanel (line 198) | func (m *WelcomeModel) renderInfoPanel() string { method renderTroubleshootingInfo (line 205) | func (m *WelcomeModel) renderTroubleshootingInfo() string { method renderInstallerInfo (line 340) | func (m *WelcomeModel) renderInstallerInfo() string { method isVerticalLayout (line 369) | func (m *WelcomeModel) isVerticalLayout() bool { method IsReadyToContinue (line 377) | func (m *WelcomeModel) IsReadyToContinue() bool { method HasScrollableContent (line 382) | func (m *WelcomeModel) HasScrollableContent() bool { method GetFormTitle (line 393) | func (m *WelcomeModel) GetFormTitle() string { method GetFormDescription (line 398) | func (m *WelcomeModel) GetFormDescription() string { method GetFormName (line 403) | func (m *WelcomeModel) GetFormName() string { method GetFormOverview (line 408) | func (m *WelcomeModel) GetFormOverview() string { method GetCurrentConfiguration (line 413) | func (m *WelcomeModel) GetCurrentConfiguration() string { method IsConfigured (line 456) | func (m *WelcomeModel) IsConfigured() bool { method GetFormHotKeys (line 461) | func (m *WelcomeModel) GetFormHotKeys() []string { function NewWelcomeModel (line 32) | func NewWelcomeModel(c controller.Controller, s styles.Styles, w window.... FILE: backend/cmd/installer/wizard/registry/registry.go type Registry (line 15) | type Registry interface type registry (line 20) | type registry struct method initScreens (line 46) | func (r *registry) initScreens() { method initProcessorOperationForm (line 115) | func (r *registry) initProcessorOperationForm(id models.ScreenID) mode... method initMockScreen (line 131) | func (r *registry) initMockScreen() models.BaseScreenModel { method GetScreen (line 138) | func (r *registry) GetScreen(id models.ScreenID) models.BaseScreenModel { method HandleMsg (line 150) | func (r *registry) HandleMsg(msg tea.Msg) tea.Cmd { function NewRegistry (line 29) | func NewRegistry( FILE: backend/cmd/installer/wizard/styles/styles.go type Styles (line 32) | type Styles struct method GetRenderer (line 101) | func (s *Styles) GetRenderer() *glamour.TermRenderer { method initializeStyles (line 106) | func (s *Styles) initializeStyles() { method RenderStatusIcon (line 248) | func (s *Styles) RenderStatusIcon(success bool) string { method RenderStatusText (line 256) | func (s *Styles) RenderStatusText(text string, success bool) string { method RenderMenuItem (line 266) | func (s *Styles) RenderMenuItem(text string, selected bool, disabled b... method RenderASCIILogo (line 280) | func (s *Styles) RenderASCIILogo(width int) string { method RenderFooter (line 298) | func (s *Styles) RenderFooter(actions []string, width int) string { function New (line 82) | func New() Styles { function divCeil (line 324) | func divCeil(a, b int) int { FILE: backend/cmd/installer/wizard/terminal/key2uv.go function teaKeyToUVKey (line 11) | func teaKeyToUVKey(msg tea.KeyMsg) uv.KeyEvent { FILE: backend/cmd/installer/wizard/terminal/pty_unix.go method startPty (line 19) | func (t *terminal) startPty(cmd *exec.Cmd) error { method managePty (line 91) | func (t *terminal) managePty() { FILE: backend/cmd/installer/wizard/terminal/pty_windows.go method startPty (line 11) | func (t *terminal) startPty(cmd *exec.Cmd) error { method managePty (line 16) | func (t *terminal) managePty() { FILE: backend/cmd/installer/wizard/terminal/teacmd.go type updateNotifier (line 10) | type updateNotifier struct method acquire (line 23) | func (n *updateNotifier) acquire() (<-chan struct{}, bool) { method release (line 41) | func (n *updateNotifier) release() { method close (line 56) | func (n *updateNotifier) close() { function newUpdateNotifier (line 17) | func newUpdateNotifier() *updateNotifier { function waitForTerminalUpdate (line 71) | func waitForTerminalUpdate(n *updateNotifier, id string) tea.Cmd { FILE: backend/cmd/installer/wizard/terminal/teacmd_test.go function TestUpdateNotifierSingleSubscriber (line 11) | func TestUpdateNotifierSingleSubscriber(t *testing.T) { function TestUpdateNotifierOnlyOneAcquirer (line 34) | func TestUpdateNotifierOnlyOneAcquirer(t *testing.T) { function TestUpdateNotifierNewAcquireAfterRelease (line 69) | func TestUpdateNotifierNewAcquireAfterRelease(t *testing.T) { function TestUpdateNotifierAfterClose (line 108) | func TestUpdateNotifierAfterClose(t *testing.T) { function TestUpdateNotifierConcurrentAccess (line 140) | func TestUpdateNotifierConcurrentAccess(t *testing.T) { function TestUpdateNotifierReleaseWithoutAcquirer (line 186) | func TestUpdateNotifierReleaseWithoutAcquirer(t *testing.T) { function TestUpdateNotifierContextReuse (line 211) | func TestUpdateNotifierContextReuse(t *testing.T) { function TestUpdateNotifierStartsWithActiveChannel (line 240) | func TestUpdateNotifierStartsWithActiveChannel(t *testing.T) { function TestWaitForTerminalUpdate (line 280) | func TestWaitForTerminalUpdate(t *testing.T) { function TestWaitForTerminalUpdateSingleWinner (line 312) | func TestWaitForTerminalUpdateSingleWinner(t *testing.T) { FILE: backend/cmd/installer/wizard/terminal/terminal.go constant terminalBorderColor (line 24) | terminalBorderColor = "62" constant terminalPadding (line 25) | terminalPadding = 1 constant terminalModel (line 26) | terminalModel = "xterm-256color" constant terminalMinWidth (line 27) | terminalMinWidth = 20 constant terminalMinHeight (line 28) | terminalMinHeight = 10 type dummyLogger (line 31) | type dummyLogger struct method Printf (line 33) | func (l *dummyLogger) Printf(format string, v ...any) { type TerminalUpdateMsg (line 38) | type TerminalUpdateMsg struct type TerminalOption (line 42) | type TerminalOption function WithAutoScroll (line 45) | func WithAutoScroll() TerminalOption { function WithAutoPoll (line 54) | func WithAutoPoll() TerminalOption { function WithStyle (line 61) | func WithStyle(style lipgloss.Style) TerminalOption { function WithCurrentEnv (line 69) | func WithCurrentEnv() TerminalOption { function WithNoStyled (line 76) | func WithNoStyled() TerminalOption { function WithNoPty (line 83) | func WithNoPty() TerminalOption { type Terminal (line 89) | type Terminal interface type terminal (line 103) | type terminal struct method Execute (line 173) | func (t *terminal) Execute(cmd *exec.Cmd) error { method startCmd (line 200) | func (t *terminal) startCmd(cmd *exec.Cmd) error { method manageCmd (line 247) | func (t *terminal) manageCmd(stdoutPipe, stderrPipe io.ReadCloser, std... method cleanup (line 347) | func (t *terminal) cleanup() { method updateViewpoint (line 373) | func (t *terminal) updateViewpoint() { method notifyUpdate (line 393) | func (t *terminal) notifyUpdate() { method Append (line 399) | func (t *terminal) Append(content string) { method Clear (line 407) | func (t *terminal) Clear() { method SetSize (line 415) | func (t *terminal) SetSize(width, height int) { method setSize (line 423) | func (t *terminal) setSize(width, height int) { method getWinSize (line 438) | func (t *terminal) getWinSize() *pty.Winsize { method GetSize (line 450) | func (t *terminal) GetSize() (width, height int) { method ID (line 457) | func (t *terminal) ID() string { method IsRunning (line 461) | func (t *terminal) IsRunning() bool { method Wait (line 468) | func (t *terminal) Wait() { method Init (line 472) | func (t *terminal) Init() tea.Cmd { method Update (line 481) | func (t *terminal) Update(msg tea.Msg) (tea.Model, tea.Cmd) { method handleTerminalInput (line 520) | func (t *terminal) handleTerminalInput(msg tea.KeyMsg) bool { method View (line 573) | func (t *terminal) View() string { function terminalFinalizer (line 134) | func terminalFinalizer(t *terminal) { function NewTerminal (line 146) | func NewTerminal(width, height int, opts ...TerminalOption) Terminal { function RestoreModel (line 581) | func RestoreModel(model tea.Model) Terminal { FILE: backend/cmd/installer/wizard/terminal/terminal_test.go function TestNewTerminal (line 18) | func TestNewTerminal(t *testing.T) { function TestTerminalSetSize (line 30) | func TestTerminalSetSize(t *testing.T) { function TestTerminalAppend (line 40) | func TestTerminalAppend(t *testing.T) { function TestTerminalClear (line 51) | func TestTerminalClear(t *testing.T) { function TestExecuteEcho (line 63) | func TestExecuteEcho(t *testing.T) { function TestExecuteCat (line 93) | func TestExecuteCat(t *testing.T) { function TestExecuteGrep (line 131) | func TestExecuteGrep(t *testing.T) { function TestExecuteInteractiveInput (line 167) | func TestExecuteInteractiveInput(t *testing.T) { function TestExecuteMultipleCommands (line 218) | func TestExecuteMultipleCommands(t *testing.T) { function TestRestoreModel (line 269) | func TestRestoreModel(t *testing.T) { function TestTeaKeyToUVKey (line 286) | func TestTeaKeyToUVKey(t *testing.T) { function TestExecuteConcurrency (line 376) | func TestExecuteConcurrency(t *testing.T) { function TestWaitBeforeNextExecute_NoPty (line 399) | func TestWaitBeforeNextExecute_NoPty(t *testing.T) { function TestWaitBeforeNextExecute_Pty (line 445) | func TestWaitBeforeNextExecute_Pty(t *testing.T) { function writeFile (line 479) | func writeFile(filename, content string) error { function BenchmarkTerminalAppend (line 486) | func BenchmarkTerminalAppend(b *testing.B) { function BenchmarkTerminalView (line 495) | func BenchmarkTerminalView(b *testing.B) { function BenchmarkKeySequenceConversion (line 505) | func BenchmarkKeySequenceConversion(b *testing.B) { function TestTerminalEvents (line 514) | func TestTerminalEvents(t *testing.T) { function TestTerminalFinalizer (line 553) | func TestTerminalFinalizer(t *testing.T) { function TestResourceCleanup (line 604) | func TestResourceCleanup(t *testing.T) { function TestResourceRelease (line 642) | func TestResourceRelease(t *testing.T) { function TestStartCmdBasic (line 698) | func TestStartCmdBasic(t *testing.T) { function TestStartCmdInteractive (line 737) | func TestStartCmdInteractive(t *testing.T) { function TestStartCmdStderrHandling (line 831) | func TestStartCmdStderrHandling(t *testing.T) { function TestStartCmdPlainTextOutput (line 876) | func TestStartCmdPlainTextOutput(t *testing.T) { function TestStartCmdSimpleKeyHandling (line 938) | func TestStartCmdSimpleKeyHandling(t *testing.T) { function TestStartCmdInputHandling (line 1002) | func TestStartCmdInputHandling(t *testing.T) { FILE: backend/cmd/installer/wizard/terminal/vt/callbacks.go type Callbacks (line 11) | type Callbacks struct FILE: backend/cmd/installer/wizard/terminal/vt/cc.go method handleControl (line 9) | func (t *Terminal) handleControl(r byte) { method linefeed (line 17) | func (t *Terminal) linefeed() { method index (line 26) | func (t *Terminal) index() { method horizontalTabSet (line 39) | func (t *Terminal) horizontalTabSet() { method reverseIndex (line 46) | func (t *Terminal) reverseIndex() { method backspace (line 57) | func (t *Terminal) backspace() { FILE: backend/cmd/installer/wizard/terminal/vt/charset.go type CharSet (line 5) | type CharSet FILE: backend/cmd/installer/wizard/terminal/vt/csi.go method handleCsi (line 11) | func (t *Terminal) handleCsi(cmd ansi.Cmd, params ansi.Params) { method handleRequestMode (line 18) | func (t *Terminal) handleRequestMode(params ansi.Params, isAnsi bool) { function paramsString (line 33) | func paramsString(cmd ansi.Cmd, params ansi.Params) string { FILE: backend/cmd/installer/wizard/terminal/vt/csi_cursor.go method nextTab (line 10) | func (t *Terminal) nextTab(n int) { method prevTab (line 34) | func (t *Terminal) prevTab(n int) { method moveCursor (line 61) | func (t *Terminal) moveCursor(dx, dy int) { method setCursor (line 67) | func (t *Terminal) setCursor(x, y int) { method setCursorPosition (line 74) | func (t *Terminal) setCursorPosition(x, y int) { method carriageReturn (line 86) | func (t *Terminal) carriageReturn() { method repeatPreviousCharacter (line 103) | func (t *Terminal) repeatPreviousCharacter(n int) { FILE: backend/cmd/installer/wizard/terminal/vt/csi_mode.go method handleMode (line 7) | func (t *Terminal) handleMode(params ansi.Params, set, isAnsi bool) { method setAltScreenMode (line 36) | func (t *Terminal) setAltScreenMode(on bool) { method saveCursor (line 59) | func (t *Terminal) saveCursor() { method restoreCursor (line 64) | func (t *Terminal) restoreCursor() { method setMode (line 69) | func (t *Terminal) setMode(mode ansi.Mode, setting ansi.ModeSetting) { method isModeSet (line 103) | func (t *Terminal) isModeSet(mode ansi.Mode) bool { FILE: backend/cmd/installer/wizard/terminal/vt/csi_screen.go method eraseCharacter (line 9) | func (t *Terminal) eraseCharacter(n int) { FILE: backend/cmd/installer/wizard/terminal/vt/csi_sgr.go method handleSgr (line 10) | func (t *Terminal) handleSgr(params ansi.Params) { FILE: backend/cmd/installer/wizard/terminal/vt/cursor.go type CursorStyle (line 6) | type CursorStyle constant CursorBlock (line 10) | CursorBlock CursorStyle = iota constant CursorUnderline (line 11) | CursorUnderline constant CursorBar (line 12) | CursorBar type Cursor (line 16) | type Cursor struct FILE: backend/cmd/installer/wizard/terminal/vt/dcs.go method handleDcs (line 6) | func (t *Terminal) handleDcs(cmd ansi.Cmd, params ansi.Params, data []by... method handleApc (line 14) | func (t *Terminal) handleApc(data []byte) { method handleSos (line 22) | func (t *Terminal) handleSos(data []byte) { method handlePm (line 30) | func (t *Terminal) handlePm(data []byte) { FILE: backend/cmd/installer/wizard/terminal/vt/esc.go method handleEsc (line 8) | func (t *Terminal) handleEsc(cmd ansi.Cmd) { method fullReset (line 23) | func (t *Terminal) fullReset() { FILE: backend/cmd/installer/wizard/terminal/vt/focus.go method Focus (line 11) | func (t *Terminal) Focus() { method Blur (line 17) | func (t *Terminal) Blur() { method focus (line 21) | func (t *Terminal) focus(focus bool) { FILE: backend/cmd/installer/wizard/terminal/vt/handlers.go type DcsHandler (line 11) | type DcsHandler type CsiHandler (line 14) | type CsiHandler type OscHandler (line 17) | type OscHandler type ApcHandler (line 20) | type ApcHandler type SosHandler (line 23) | type SosHandler type PmHandler (line 26) | type PmHandler type EscHandler (line 29) | type EscHandler type CcHandler (line 32) | type CcHandler type handlers (line 35) | type handlers struct method RegisterDcsHandler (line 47) | func (h *handlers) RegisterDcsHandler(cmd int, handler DcsHandler) { method RegisterCsiHandler (line 55) | func (h *handlers) RegisterCsiHandler(cmd int, handler CsiHandler) { method RegisterOscHandler (line 63) | func (h *handlers) RegisterOscHandler(cmd int, handler OscHandler) { method RegisterApcHandler (line 71) | func (h *handlers) RegisterApcHandler(handler ApcHandler) { method RegisterSosHandler (line 76) | func (h *handlers) RegisterSosHandler(handler SosHandler) { method RegisterPmHandler (line 81) | func (h *handlers) RegisterPmHandler(handler PmHandler) { method RegisterEscHandler (line 86) | func (h *handlers) RegisterEscHandler(cmd int, handler EscHandler) { method registerCcHandler (line 94) | func (h *handlers) registerCcHandler(r byte, handler CcHandler) { method handleCc (line 103) | func (h *handlers) handleCc(r byte) bool { method handleDcs (line 116) | func (h *handlers) handleDcs(cmd ansi.Cmd, params ansi.Params, data []... method handleCsi (line 131) | func (h *handlers) handleCsi(cmd ansi.Cmd, params ansi.Params) bool { method handleOsc (line 146) | func (h *handlers) handleOsc(cmd int, data []byte) bool { method handleApc (line 161) | func (h *handlers) handleApc(data []byte) bool { method handleSos (line 174) | func (h *handlers) handleSos(data []byte) bool { method handlePm (line 187) | func (h *handlers) handlePm(data []byte) bool { method handleEsc (line 200) | func (h *handlers) handleEsc(cmd int) bool { method registerDefaultHandlers (line 214) | func (t *Terminal) registerDefaultHandlers() { method registerDefaultCcHandlers (line 222) | func (t *Terminal) registerDefaultCcHandlers() { method registerDefaultOscHandlers (line 305) | func (t *Terminal) registerDefaultOscHandlers() { method registerDefaultEscHandlers (line 346) | func (t *Terminal) registerDefaultEscHandlers() { method registerDefaultCsiHandlers (line 459) | func (t *Terminal) registerDefaultCsiHandlers() { FILE: backend/cmd/installer/wizard/terminal/vt/key.go constant ModShift (line 15) | ModShift = uv.ModShift constant ModAlt (line 16) | ModAlt = uv.ModAlt constant ModCtrl (line 17) | ModCtrl = uv.ModCtrl constant ModMeta (line 18) | ModMeta = uv.ModMeta method SendKey (line 25) | func (t *Terminal) SendKey(k uv.KeyEvent) { constant KeyExtended (line 306) | KeyExtended = uv.KeyExtended constant KeyUp (line 307) | KeyUp = uv.KeyUp constant KeyDown (line 308) | KeyDown = uv.KeyDown constant KeyRight (line 309) | KeyRight = uv.KeyRight constant KeyLeft (line 310) | KeyLeft = uv.KeyLeft constant KeyBegin (line 311) | KeyBegin = uv.KeyBegin constant KeyFind (line 312) | KeyFind = uv.KeyFind constant KeyInsert (line 313) | KeyInsert = uv.KeyInsert constant KeyDelete (line 314) | KeyDelete = uv.KeyDelete constant KeySelect (line 315) | KeySelect = uv.KeySelect constant KeyPgUp (line 316) | KeyPgUp = uv.KeyPgUp constant KeyPgDown (line 317) | KeyPgDown = uv.KeyPgDown constant KeyHome (line 318) | KeyHome = uv.KeyHome constant KeyEnd (line 319) | KeyEnd = uv.KeyEnd constant KeyKpEnter (line 320) | KeyKpEnter = uv.KeyKpEnter constant KeyKpEqual (line 321) | KeyKpEqual = uv.KeyKpEqual constant KeyKpMultiply (line 322) | KeyKpMultiply = uv.KeyKpMultiply constant KeyKpPlus (line 323) | KeyKpPlus = uv.KeyKpPlus constant KeyKpComma (line 324) | KeyKpComma = uv.KeyKpComma constant KeyKpMinus (line 325) | KeyKpMinus = uv.KeyKpMinus constant KeyKpDecimal (line 326) | KeyKpDecimal = uv.KeyKpDecimal constant KeyKpDivide (line 327) | KeyKpDivide = uv.KeyKpDivide constant KeyKp0 (line 328) | KeyKp0 = uv.KeyKp0 constant KeyKp1 (line 329) | KeyKp1 = uv.KeyKp1 constant KeyKp2 (line 330) | KeyKp2 = uv.KeyKp2 constant KeyKp3 (line 331) | KeyKp3 = uv.KeyKp3 constant KeyKp4 (line 332) | KeyKp4 = uv.KeyKp4 constant KeyKp5 (line 333) | KeyKp5 = uv.KeyKp5 constant KeyKp6 (line 334) | KeyKp6 = uv.KeyKp6 constant KeyKp7 (line 335) | KeyKp7 = uv.KeyKp7 constant KeyKp8 (line 336) | KeyKp8 = uv.KeyKp8 constant KeyKp9 (line 337) | KeyKp9 = uv.KeyKp9 constant KeyKpSep (line 338) | KeyKpSep = uv.KeyKpSep constant KeyKpUp (line 339) | KeyKpUp = uv.KeyKpUp constant KeyKpDown (line 340) | KeyKpDown = uv.KeyKpDown constant KeyKpLeft (line 341) | KeyKpLeft = uv.KeyKpLeft constant KeyKpRight (line 342) | KeyKpRight = uv.KeyKpRight constant KeyKpPgUp (line 343) | KeyKpPgUp = uv.KeyKpPgUp constant KeyKpPgDown (line 344) | KeyKpPgDown = uv.KeyKpPgDown constant KeyKpHome (line 345) | KeyKpHome = uv.KeyKpHome constant KeyKpEnd (line 346) | KeyKpEnd = uv.KeyKpEnd constant KeyKpInsert (line 347) | KeyKpInsert = uv.KeyKpInsert constant KeyKpDelete (line 348) | KeyKpDelete = uv.KeyKpDelete constant KeyKpBegin (line 349) | KeyKpBegin = uv.KeyKpBegin constant KeyF1 (line 350) | KeyF1 = uv.KeyF1 constant KeyF2 (line 351) | KeyF2 = uv.KeyF2 constant KeyF3 (line 352) | KeyF3 = uv.KeyF3 constant KeyF4 (line 353) | KeyF4 = uv.KeyF4 constant KeyF5 (line 354) | KeyF5 = uv.KeyF5 constant KeyF6 (line 355) | KeyF6 = uv.KeyF6 constant KeyF7 (line 356) | KeyF7 = uv.KeyF7 constant KeyF8 (line 357) | KeyF8 = uv.KeyF8 constant KeyF9 (line 358) | KeyF9 = uv.KeyF9 constant KeyF10 (line 359) | KeyF10 = uv.KeyF10 constant KeyF11 (line 360) | KeyF11 = uv.KeyF11 constant KeyF12 (line 361) | KeyF12 = uv.KeyF12 constant KeyF13 (line 362) | KeyF13 = uv.KeyF13 constant KeyF14 (line 363) | KeyF14 = uv.KeyF14 constant KeyF15 (line 364) | KeyF15 = uv.KeyF15 constant KeyF16 (line 365) | KeyF16 = uv.KeyF16 constant KeyF17 (line 366) | KeyF17 = uv.KeyF17 constant KeyF18 (line 367) | KeyF18 = uv.KeyF18 constant KeyF19 (line 368) | KeyF19 = uv.KeyF19 constant KeyF20 (line 369) | KeyF20 = uv.KeyF20 constant KeyF21 (line 370) | KeyF21 = uv.KeyF21 constant KeyF22 (line 371) | KeyF22 = uv.KeyF22 constant KeyF23 (line 372) | KeyF23 = uv.KeyF23 constant KeyF24 (line 373) | KeyF24 = uv.KeyF24 constant KeyF25 (line 374) | KeyF25 = uv.KeyF25 constant KeyF26 (line 375) | KeyF26 = uv.KeyF26 constant KeyF27 (line 376) | KeyF27 = uv.KeyF27 constant KeyF28 (line 377) | KeyF28 = uv.KeyF28 constant KeyF29 (line 378) | KeyF29 = uv.KeyF29 constant KeyF30 (line 379) | KeyF30 = uv.KeyF30 constant KeyF31 (line 380) | KeyF31 = uv.KeyF31 constant KeyF32 (line 381) | KeyF32 = uv.KeyF32 constant KeyF33 (line 382) | KeyF33 = uv.KeyF33 constant KeyF34 (line 383) | KeyF34 = uv.KeyF34 constant KeyF35 (line 384) | KeyF35 = uv.KeyF35 constant KeyF36 (line 385) | KeyF36 = uv.KeyF36 constant KeyF37 (line 386) | KeyF37 = uv.KeyF37 constant KeyF38 (line 387) | KeyF38 = uv.KeyF38 constant KeyF39 (line 388) | KeyF39 = uv.KeyF39 constant KeyF40 (line 389) | KeyF40 = uv.KeyF40 constant KeyF41 (line 390) | KeyF41 = uv.KeyF41 constant KeyF42 (line 391) | KeyF42 = uv.KeyF42 constant KeyF43 (line 392) | KeyF43 = uv.KeyF43 constant KeyF44 (line 393) | KeyF44 = uv.KeyF44 constant KeyF45 (line 394) | KeyF45 = uv.KeyF45 constant KeyF46 (line 395) | KeyF46 = uv.KeyF46 constant KeyF47 (line 396) | KeyF47 = uv.KeyF47 constant KeyF48 (line 397) | KeyF48 = uv.KeyF48 constant KeyF49 (line 398) | KeyF49 = uv.KeyF49 constant KeyF50 (line 399) | KeyF50 = uv.KeyF50 constant KeyF51 (line 400) | KeyF51 = uv.KeyF51 constant KeyF52 (line 401) | KeyF52 = uv.KeyF52 constant KeyF53 (line 402) | KeyF53 = uv.KeyF53 constant KeyF54 (line 403) | KeyF54 = uv.KeyF54 constant KeyF55 (line 404) | KeyF55 = uv.KeyF55 constant KeyF56 (line 405) | KeyF56 = uv.KeyF56 constant KeyF57 (line 406) | KeyF57 = uv.KeyF57 constant KeyF58 (line 407) | KeyF58 = uv.KeyF58 constant KeyF59 (line 408) | KeyF59 = uv.KeyF59 constant KeyF60 (line 409) | KeyF60 = uv.KeyF60 constant KeyF61 (line 410) | KeyF61 = uv.KeyF61 constant KeyF62 (line 411) | KeyF62 = uv.KeyF62 constant KeyF63 (line 412) | KeyF63 = uv.KeyF63 constant KeyCapsLock (line 413) | KeyCapsLock = uv.KeyCapsLock constant KeyScrollLock (line 414) | KeyScrollLock = uv.KeyScrollLock constant KeyNumLock (line 415) | KeyNumLock = uv.KeyNumLock constant KeyPrintScreen (line 416) | KeyPrintScreen = uv.KeyPrintScreen constant KeyPause (line 417) | KeyPause = uv.KeyPause constant KeyMenu (line 418) | KeyMenu = uv.KeyMenu constant KeyMediaPlay (line 419) | KeyMediaPlay = uv.KeyMediaPlay constant KeyMediaPause (line 420) | KeyMediaPause = uv.KeyMediaPause constant KeyMediaPlayPause (line 421) | KeyMediaPlayPause = uv.KeyMediaPlayPause constant KeyMediaReverse (line 422) | KeyMediaReverse = uv.KeyMediaReverse constant KeyMediaStop (line 423) | KeyMediaStop = uv.KeyMediaStop constant KeyMediaFastForward (line 424) | KeyMediaFastForward = uv.KeyMediaFastForward constant KeyMediaRewind (line 425) | KeyMediaRewind = uv.KeyMediaRewind constant KeyMediaNext (line 426) | KeyMediaNext = uv.KeyMediaNext constant KeyMediaPrev (line 427) | KeyMediaPrev = uv.KeyMediaPrev constant KeyMediaRecord (line 428) | KeyMediaRecord = uv.KeyMediaRecord constant KeyLowerVol (line 429) | KeyLowerVol = uv.KeyLowerVol constant KeyRaiseVol (line 430) | KeyRaiseVol = uv.KeyRaiseVol constant KeyMute (line 431) | KeyMute = uv.KeyMute constant KeyLeftShift (line 432) | KeyLeftShift = uv.KeyLeftShift constant KeyLeftAlt (line 433) | KeyLeftAlt = uv.KeyLeftAlt constant KeyLeftCtrl (line 434) | KeyLeftCtrl = uv.KeyLeftCtrl constant KeyLeftSuper (line 435) | KeyLeftSuper = uv.KeyLeftSuper constant KeyLeftHyper (line 436) | KeyLeftHyper = uv.KeyLeftHyper constant KeyLeftMeta (line 437) | KeyLeftMeta = uv.KeyLeftMeta constant KeyRightShift (line 438) | KeyRightShift = uv.KeyRightShift constant KeyRightAlt (line 439) | KeyRightAlt = uv.KeyRightAlt constant KeyRightCtrl (line 440) | KeyRightCtrl = uv.KeyRightCtrl constant KeyRightSuper (line 441) | KeyRightSuper = uv.KeyRightSuper constant KeyRightHyper (line 442) | KeyRightHyper = uv.KeyRightHyper constant KeyRightMeta (line 443) | KeyRightMeta = uv.KeyRightMeta constant KeyIsoLevel3Shift (line 444) | KeyIsoLevel3Shift = uv.KeyIsoLevel3Shift constant KeyIsoLevel5Shift (line 445) | KeyIsoLevel5Shift = uv.KeyIsoLevel5Shift constant KeyBackspace (line 446) | KeyBackspace = uv.KeyBackspace constant KeyTab (line 447) | KeyTab = uv.KeyTab constant KeyEnter (line 448) | KeyEnter = uv.KeyEnter constant KeyReturn (line 449) | KeyReturn = uv.KeyReturn constant KeyEscape (line 450) | KeyEscape = uv.KeyEscape constant KeyEsc (line 451) | KeyEsc = uv.KeyEsc constant KeySpace (line 452) | KeySpace = uv.KeySpace FILE: backend/cmd/installer/wizard/terminal/vt/mode.go method resetModes (line 6) | func (t *Terminal) resetModes() { FILE: backend/cmd/installer/wizard/terminal/vt/mouse.go constant MouseNone (line 31) | MouseNone = uv.MouseNone constant MouseLeft (line 32) | MouseLeft = uv.MouseLeft constant MouseMiddle (line 33) | MouseMiddle = uv.MouseMiddle constant MouseRight (line 34) | MouseRight = uv.MouseRight constant MouseWheelUp (line 35) | MouseWheelUp = uv.MouseWheelUp constant MouseWheelDown (line 36) | MouseWheelDown = uv.MouseWheelDown constant MouseWheelLeft (line 37) | MouseWheelLeft = uv.MouseWheelLeft constant MouseWheelRight (line 38) | MouseWheelRight = uv.MouseWheelRight constant MouseBackward (line 39) | MouseBackward = uv.MouseBackward constant MouseForward (line 40) | MouseForward = uv.MouseForward constant MouseButton10 (line 41) | MouseButton10 = uv.MouseButton10 constant MouseButton11 (line 42) | MouseButton11 = uv.MouseButton11 method SendMouse (line 62) | func (t *Terminal) SendMouse(m Mouse) { FILE: backend/cmd/installer/wizard/terminal/vt/osc.go method handleOsc (line 14) | func (t *Terminal) handleOsc(cmd int, data []byte) { method handleTitle (line 21) | func (t *Terminal) handleTitle(cmd int, data []byte) { method handleDefaultColor (line 52) | func (t *Terminal) handleDefaultColor(cmd int, data []byte) { method handleWorkingDirectory (line 106) | func (t *Terminal) handleWorkingDirectory(cmd int, data []byte) { method handleHyperlink (line 127) | func (t *Terminal) handleHyperlink(cmd int, data []byte) { FILE: backend/cmd/installer/wizard/terminal/vt/screen.go type lineCache (line 10) | type lineCache struct type Screen (line 18) | type Screen struct method Reset (line 51) | func (s *Screen) Reset() { method Bounds (line 61) | func (s *Screen) Bounds() uv.Rectangle { method Touched (line 66) | func (s *Screen) Touched() []*uv.LineData { method CellAt (line 71) | func (s *Screen) CellAt(x int, y int) *uv.Cell { method SetCell (line 76) | func (s *Screen) SetCell(x, y int, c *uv.Cell) { method Height (line 82) | func (s *Screen) Height() int { method Resize (line 87) | func (s *Screen) Resize(width int, height int) { method Width (line 94) | func (s *Screen) Width() int { method Clear (line 99) | func (s *Screen) Clear() { method ClearArea (line 104) | func (s *Screen) ClearArea(area uv.Rectangle) { method Fill (line 112) | func (s *Screen) Fill(c *uv.Cell) { method FillArea (line 117) | func (s *Screen) FillArea(c *uv.Cell, area uv.Rectangle) { method setHorizontalMargins (line 125) | func (s *Screen) setHorizontalMargins(left, right int) { method setVerticalMargins (line 131) | func (s *Screen) setVerticalMargins(top, bottom int) { method setCursorX (line 138) | func (s *Screen) setCursorX(x int, margins bool) { method setCursorY (line 144) | func (s *Screen) setCursorY(y int, margins bool) { //nolint:unused method setCursor (line 150) | func (s *Screen) setCursor(x, y int, margins bool) { method moveCursor (line 171) | func (s *Screen) moveCursor(dx, dy int) { method Cursor (line 200) | func (s *Screen) Cursor() Cursor { method CursorPosition (line 205) | func (s *Screen) CursorPosition() (x, y int) { method ScrollRegion (line 210) | func (s *Screen) ScrollRegion() uv.Rectangle { method SaveCursor (line 215) | func (s *Screen) SaveCursor() { method RestoreCursor (line 220) | func (s *Screen) RestoreCursor() { method setCursorHidden (line 230) | func (s *Screen) setCursorHidden(hidden bool) { method setCursorStyle (line 239) | func (s *Screen) setCursorStyle(style CursorStyle, blink bool) { method cursorPen (line 249) | func (s *Screen) cursorPen() uv.Style { method cursorLink (line 254) | func (s *Screen) cursorLink() uv.Link { method ShowCursor (line 259) | func (s *Screen) ShowCursor() { method HideCursor (line 264) | func (s *Screen) HideCursor() { method InsertCell (line 270) | func (s *Screen) InsertCell(n int) { method DeleteCell (line 282) | func (s *Screen) DeleteCell(n int) { method ScrollUp (line 294) | func (s *Screen) ScrollUp(n int) { method ScrollDown (line 321) | func (s *Screen) ScrollDown(n int) { method InsertLine (line 332) | func (s *Screen) InsertLine(n int) bool { method DeleteLine (line 359) | func (s *Screen) DeleteLine(n int) bool { method blankCell (line 386) | func (s *Screen) blankCell() *uv.Cell { method initCache (line 397) | func (s *Screen) initCache(height int) { method clearCache (line 405) | func (s *Screen) clearCache() { method invalidateLineCache (line 415) | func (s *Screen) invalidateLineCache(y int) { method addToScrollback (line 422) | func (s *Screen) addToScrollback(line []uv.Cell) { method getCursorStyle (line 441) | func (s *Screen) getCursorStyle(styled bool) (prefix, suffix string) { method renderLine (line 474) | func (s *Screen) renderLine(cells []uv.Cell, width int) (styled, unsty... method renderLineWithCursor (line 532) | func (s *Screen) renderLineWithCursor(cells []uv.Cell, width int, show... method updateLineCache (line 658) | func (s *Screen) updateLineCache(y int) { method updateScrollbackLineCache (line 680) | func (s *Screen) updateScrollbackLineCache(idx int) { method Dump (line 699) | func (s *Screen) Dump(styled bool, isAltScreen bool) []string { function NewScreen (line 40) | func NewScreen(w, h int) *Screen { FILE: backend/cmd/installer/wizard/terminal/vt/terminal.go type Logger (line 14) | type Logger interface type Terminal (line 19) | type Terminal struct method SetLogger (line 105) | func (t *Terminal) SetLogger(l Logger) { method SetCallbacks (line 110) | func (t *Terminal) SetCallbacks(cb Callbacks) { method Touched (line 117) | func (t *Terminal) Touched() []*uv.LineData { method Bounds (line 124) | func (t *Terminal) Bounds() uv.Rectangle { method CellAt (line 130) | func (t *Terminal) CellAt(x, y int) *uv.Cell { method SetCell (line 135) | func (t *Terminal) SetCell(x, y int, c *uv.Cell) { method WidthMethod (line 140) | func (t *Terminal) WidthMethod() uv.WidthMethod { method Draw (line 148) | func (t *Terminal) Draw(scr uv.Screen, area uv.Rectangle) { method Height (line 178) | func (t *Terminal) Height() int { method Width (line 183) | func (t *Terminal) Width() int { method CursorPosition (line 188) | func (t *Terminal) CursorPosition() uv.Position { method Resize (line 194) | func (t *Terminal) Resize(width int, height int) { method Write (line 224) | func (t *Terminal) Write(p []byte) (n int, err error) { method InputPipe (line 242) | func (t *Terminal) InputPipe() io.Writer { method Paste (line 249) | func (t *Terminal) Paste(text string) { method SendText (line 259) | func (t *Terminal) SendText(text string) { method SendKeys (line 264) | func (t *Terminal) SendKeys(keys ...uv.KeyEvent) { method ForegroundColor (line 273) | func (t *Terminal) ForegroundColor() color.Color { method SetForegroundColor (line 281) | func (t *Terminal) SetForegroundColor(c color.Color) { method SetDefaultForegroundColor (line 292) | func (t *Terminal) SetDefaultForegroundColor(c color.Color) { method BackgroundColor (line 299) | func (t *Terminal) BackgroundColor() color.Color { method SetBackgroundColor (line 307) | func (t *Terminal) SetBackgroundColor(c color.Color) { method SetDefaultBackgroundColor (line 318) | func (t *Terminal) SetDefaultBackgroundColor(c color.Color) { method CursorColor (line 324) | func (t *Terminal) CursorColor() color.Color { method SetCursorColor (line 332) | func (t *Terminal) SetCursorColor(c color.Color) { method SetDefaultCursorColor (line 343) | func (t *Terminal) SetDefaultCursorColor(c color.Color) { method IndexedColor (line 349) | func (t *Terminal) IndexedColor(i int) color.Color { method SetIndexedColor (line 365) | func (t *Terminal) SetIndexedColor(i int, c color.Color) { method resetTabStops (line 374) | func (t *Terminal) resetTabStops() { method logf (line 378) | func (t *Terminal) logf(format string, v ...any) { method Dump (line 388) | func (t *Terminal) Dump(styled bool) []string { function NewTerminal (line 75) | func NewTerminal(w, h int, pw io.Writer) *Terminal { FILE: backend/cmd/installer/wizard/terminal/vt/terminal_test.go type testLogger (line 10) | type testLogger struct method Printf (line 15) | func (l *testLogger) Printf(format string, v ...any) { function newTestTerminal (line 20) | func newTestTerminal(t testing.TB, width, height int) *Terminal { function TestTerminal (line 1714) | func TestTerminal(t *testing.T) { function termText (line 1738) | func termText(term *Terminal) []string { FILE: backend/cmd/installer/wizard/terminal/vt/utf8.go method handlePrint (line 13) | func (t *Terminal) handlePrint(r rune) { method flushGrapheme (line 27) | func (t *Terminal) flushGrapheme() { method handleGrapheme (line 64) | func (t *Terminal) handleGrapheme(content string, width int) { FILE: backend/cmd/installer/wizard/terminal/vt/utils.go function clamp (line 3) | func clamp(v, low, high int) int { FILE: backend/cmd/installer/wizard/window/window.go constant MinContentHeight (line 3) | MinContentHeight = 2 type Window (line 5) | type Window interface type window (line 21) | type window struct method SetWindowSize (line 46) | func (w *window) SetWindowSize(width, height int) { method SetHeaderHeight (line 52) | func (w *window) SetHeaderHeight(height int) { method SetFooterHeight (line 56) | func (w *window) SetFooterHeight(height int) { method SetLeftSideBarWidth (line 60) | func (w *window) SetLeftSideBarWidth(width int) { method SetRightSideBarWidth (line 64) | func (w *window) SetRightSideBarWidth(width int) { method GetWindowSize (line 69) | func (w *window) GetWindowSize() (int, int) { method GetWindowWidth (line 73) | func (w *window) GetWindowWidth() int { method GetWindowHeight (line 77) | func (w *window) GetWindowHeight() int { method GetContentSize (line 82) | func (w *window) GetContentSize() (int, int) { method GetContentWidth (line 92) | func (w *window) GetContentWidth() int { method GetContentHeight (line 97) | func (w *window) GetContentHeight() int { method IsShowHeader (line 102) | func (w *window) IsShowHeader() bool { function New (line 34) | func New() Window { FILE: backend/cmd/installer/wizard/window/window_test.go function TestNew (line 7) | func TestNew(t *testing.T) { function TestSetWindowSize (line 32) | func TestSetWindowSize(t *testing.T) { function TestSetHeaderHeight (line 50) | func TestSetHeaderHeight(t *testing.T) { function TestSetFooterHeight (line 63) | func TestSetFooterHeight(t *testing.T) { function TestSetLeftSideBarWidth (line 76) | func TestSetLeftSideBarWidth(t *testing.T) { function TestSetRightSideBarWidth (line 89) | func TestSetRightSideBarWidth(t *testing.T) { function TestGetContentSizeWithAllMargins (line 102) | func TestGetContentSizeWithAllMargins(t *testing.T) { function TestGetContentWidth (line 123) | func TestGetContentWidth(t *testing.T) { function TestGetContentHeight (line 137) | func TestGetContentHeight(t *testing.T) { function TestIsShowHeaderTrue (line 151) | func TestIsShowHeaderTrue(t *testing.T) { function TestIsShowHeaderFalse (line 163) | func TestIsShowHeaderFalse(t *testing.T) { function TestIsShowHeaderBoundary (line 175) | func TestIsShowHeaderBoundary(t *testing.T) { function TestGetContentSizeWithHiddenHeader (line 187) | func TestGetContentSizeWithHiddenHeader(t *testing.T) { function TestNegativeContentDimensions (line 202) | func TestNegativeContentDimensions(t *testing.T) { function TestZeroDimensions (line 226) | func TestZeroDimensions(t *testing.T) { function TestLargeMargins (line 245) | func TestLargeMargins(t *testing.T) { function TestComplexLayoutScenario (line 268) | func TestComplexLayoutScenario(t *testing.T) { function TestWindowResizing (line 296) | func TestWindowResizing(t *testing.T) { FILE: backend/cmd/pentagi/main.go function main (line 32) | func main() { FILE: backend/migrations/sql/20241026_115120_initial_state.sql type roles (line 3) | CREATE TABLE roles ( type roles_name_idx (line 10) | CREATE INDEX roles_name_idx ON roles(name) type privileges (line 17) | CREATE TABLE privileges ( type privileges_role_id_idx (line 25) | CREATE INDEX privileges_role_id_idx ON privileges(role_id) type privileges_name_idx (line 26) | CREATE INDEX privileges_name_idx ON privileges(name) type users (line 65) | CREATE TABLE users ( type users_role_id_idx (line 82) | CREATE INDEX users_role_id_idx ON users(role_id) type users_hash_idx (line 83) | CREATE INDEX users_hash_idx ON users(hash) type prompts (line 96) | CREATE TABLE prompts ( type prompts_type_idx (line 105) | CREATE INDEX prompts_type_idx ON prompts(type) type prompts_user_id_idx (line 106) | CREATE INDEX prompts_user_id_idx ON prompts(user_id) type prompts_prompt_idx (line 107) | CREATE INDEX prompts_prompt_idx ON prompts(prompt) type flows (line 111) | CREATE TABLE flows ( type flows_status_idx (line 126) | CREATE INDEX flows_status_idx ON flows(status) type flows_title_idx (line 127) | CREATE INDEX flows_title_idx ON flows(title) type flows_language_idx (line 128) | CREATE INDEX flows_language_idx ON flows(language) type flows_model_provider_idx (line 129) | CREATE INDEX flows_model_provider_idx ON flows(model_provider) type flows_user_id_idx (line 130) | CREATE INDEX flows_user_id_idx ON flows(user_id) type containers (line 135) | CREATE TABLE containers ( type containers_type_idx (line 150) | CREATE INDEX containers_type_idx ON containers(type) type containers_name_idx (line 151) | CREATE INDEX containers_name_idx ON containers(name) type containers_status_idx (line 152) | CREATE INDEX containers_status_idx ON containers(status) type containers_flow_id_idx (line 153) | CREATE INDEX containers_flow_id_idx ON containers(flow_id) type tasks (line 157) | CREATE TABLE tasks ( type tasks_status_idx (line 168) | CREATE INDEX tasks_status_idx ON tasks(status) type tasks_title_idx (line 169) | CREATE INDEX tasks_title_idx ON tasks(title) type tasks_input_idx (line 170) | CREATE INDEX tasks_input_idx ON tasks(input) type tasks_result_idx (line 171) | CREATE INDEX tasks_result_idx ON tasks(result) type tasks_flow_id_idx (line 172) | CREATE INDEX tasks_flow_id_idx ON tasks(flow_id) type subtasks (line 176) | CREATE TABLE subtasks ( type subtasks_status_idx (line 187) | CREATE INDEX subtasks_status_idx ON subtasks(status) type subtasks_title_idx (line 188) | CREATE INDEX subtasks_title_idx ON subtasks(title) type subtasks_description_idx (line 189) | CREATE INDEX subtasks_description_idx ON subtasks(description) type subtasks_result_idx (line 190) | CREATE INDEX subtasks_result_idx ON subtasks(result) type subtasks_task_id_idx (line 191) | CREATE INDEX subtasks_task_id_idx ON subtasks(task_id) type toolcalls (line 195) | CREATE TABLE toolcalls ( type toolcalls_call_id_idx (line 209) | CREATE INDEX toolcalls_call_id_idx ON toolcalls(call_id) type toolcalls_status_idx (line 210) | CREATE INDEX toolcalls_status_idx ON toolcalls(status) type toolcalls_name_idx (line 211) | CREATE INDEX toolcalls_name_idx ON toolcalls(name) type toolcalls_flow_id_idx (line 212) | CREATE INDEX toolcalls_flow_id_idx ON toolcalls(flow_id) type toolcalls_task_id_idx (line 213) | CREATE INDEX toolcalls_task_id_idx ON toolcalls(task_id) type toolcalls_subtask_id_idx (line 214) | CREATE INDEX toolcalls_subtask_id_idx ON toolcalls(subtask_id) type msgchains (line 232) | CREATE TABLE msgchains ( type msgchains_type_idx (line 247) | CREATE INDEX msgchains_type_idx ON msgchains(type) type msgchains_flow_id_idx (line 248) | CREATE INDEX msgchains_flow_id_idx ON msgchains(flow_id) type msgchains_task_id_idx (line 249) | CREATE INDEX msgchains_task_id_idx ON msgchains(task_id) type msgchains_subtask_id_idx (line 250) | CREATE INDEX msgchains_subtask_id_idx ON msgchains(subtask_id) type termlogs (line 254) | CREATE TABLE termlogs ( type termlogs_type_idx (line 262) | CREATE INDEX termlogs_type_idx ON termlogs(type) type termlogs_container_id_idx (line 264) | CREATE INDEX termlogs_container_id_idx ON termlogs(container_id) type msglogs (line 268) | CREATE TABLE msglogs ( type msglogs_type_idx (line 279) | CREATE INDEX msglogs_type_idx ON msglogs(type) type msglogs_message_idx (line 280) | CREATE INDEX msglogs_message_idx ON msglogs(message) type msglogs_flow_id_idx (line 281) | CREATE INDEX msglogs_flow_id_idx ON msglogs(flow_id) type msglogs_task_id_idx (line 282) | CREATE INDEX msglogs_task_id_idx ON msglogs(task_id) type msglogs_subtask_id_idx (line 283) | CREATE INDEX msglogs_subtask_id_idx ON msglogs(subtask_id) type screenshots (line 285) | CREATE TABLE screenshots ( type screenshots_flow_id_idx (line 293) | CREATE INDEX screenshots_flow_id_idx ON screenshots(flow_id) type screenshots_name_idx (line 294) | CREATE INDEX screenshots_name_idx ON screenshots(name) type screenshots_url_idx (line 295) | CREATE INDEX screenshots_url_idx ON screenshots(url) function update_modified_column (line 297) | CREATE OR REPLACE FUNCTION update_modified_column() FILE: backend/migrations/sql/20241130_183411_new_type_logs.sql type agentlogs (line 15) | CREATE TABLE agentlogs ( type agentlogs_initiator_idx (line 27) | CREATE INDEX agentlogs_initiator_idx ON agentlogs(initiator) type agentlogs_executor_idx (line 28) | CREATE INDEX agentlogs_executor_idx ON agentlogs(executor) type agentlogs_task_idx (line 29) | CREATE INDEX agentlogs_task_idx ON agentlogs(task) type agentlogs_flow_id_idx (line 30) | CREATE INDEX agentlogs_flow_id_idx ON agentlogs(flow_id) type agentlogs_task_id_idx (line 31) | CREATE INDEX agentlogs_task_id_idx ON agentlogs(task_id) type agentlogs_subtask_id_idx (line 32) | CREATE INDEX agentlogs_subtask_id_idx ON agentlogs(subtask_id) type vecstorelogs (line 36) | CREATE TABLE vecstorelogs ( type vecstorelogs_initiator_idx (line 50) | CREATE INDEX vecstorelogs_initiator_idx ON vecstorelogs(initiator) type vecstorelogs_executor_idx (line 51) | CREATE INDEX vecstorelogs_executor_idx ON vecstorelogs(executor) type vecstorelogs_query_idx (line 52) | CREATE INDEX vecstorelogs_query_idx ON vecstorelogs(query) type vecstorelogs_action_idx (line 53) | CREATE INDEX vecstorelogs_action_idx ON vecstorelogs(action) type vecstorelogs_flow_id_idx (line 54) | CREATE INDEX vecstorelogs_flow_id_idx ON vecstorelogs(flow_id) type vecstorelogs_task_id_idx (line 55) | CREATE INDEX vecstorelogs_task_id_idx ON vecstorelogs(task_id) type vecstorelogs_subtask_id_idx (line 56) | CREATE INDEX vecstorelogs_subtask_id_idx ON vecstorelogs(subtask_id) type searchlogs (line 60) | CREATE TABLE searchlogs ( type searchlogs_initiator_idx (line 73) | CREATE INDEX searchlogs_initiator_idx ON searchlogs(initiator) type searchlogs_executor_idx (line 74) | CREATE INDEX searchlogs_executor_idx ON searchlogs(executor) type searchlogs_engine_idx (line 75) | CREATE INDEX searchlogs_engine_idx ON searchlogs(engine) type searchlogs_query_idx (line 76) | CREATE INDEX searchlogs_query_idx ON searchlogs(query) type searchlogs_flow_id_idx (line 77) | CREATE INDEX searchlogs_flow_id_idx ON searchlogs(flow_id) type searchlogs_task_id_idx (line 78) | CREATE INDEX searchlogs_task_id_idx ON searchlogs(task_id) type searchlogs_subtask_id_idx (line 79) | CREATE INDEX searchlogs_subtask_id_idx ON searchlogs(subtask_id) FILE: backend/migrations/sql/20241222_171335_msglog_result_format.sql type msglogs_result_format_idx (line 11) | CREATE INDEX msglogs_result_format_idx ON msglogs(result_format) FILE: backend/migrations/sql/20250102_152614_flow_trace_id.sql type flows_trace_id_idx (line 5) | CREATE INDEX flows_trace_id_idx ON flows(trace_id) FILE: backend/migrations/sql/20250331_200137_assistant_mode.sql type assistants (line 114) | CREATE TABLE assistants ( type assistants_status_idx (line 132) | CREATE INDEX assistants_status_idx ON assistants(status) type assistants_title_idx (line 133) | CREATE INDEX assistants_title_idx ON assistants(title) type assistants_model_provider_idx (line 134) | CREATE INDEX assistants_model_provider_idx ON assistants(model_provider) type assistants_trace_id_idx (line 135) | CREATE INDEX assistants_trace_id_idx ON assistants(trace_id) type assistants_flow_id_idx (line 136) | CREATE INDEX assistants_flow_id_idx ON assistants(flow_id) type assistants_msgchain_id_idx (line 137) | CREATE INDEX assistants_msgchain_id_idx ON assistants(msgchain_id) type assistantlogs (line 139) | CREATE TABLE assistantlogs ( type assistantlogs_type_idx (line 150) | CREATE INDEX assistantlogs_type_idx ON assistantlogs(type) type assistantlogs_message_idx (line 151) | CREATE INDEX assistantlogs_message_idx ON assistantlogs(message) type assistantlogs_result_format_idx (line 152) | CREATE INDEX assistantlogs_result_format_idx ON assistantlogs(result_for... type assistantlogs_flow_id_idx (line 153) | CREATE INDEX assistantlogs_flow_id_idx ON assistantlogs(flow_id) type assistantlogs_assistant_id_idx (line 154) | CREATE INDEX assistantlogs_assistant_id_idx ON assistantlogs(assistant_id) FILE: backend/migrations/sql/20250419_100249_new_logs_indices.sql type assistantlogs_message_idx (line 6) | CREATE INDEX assistantlogs_message_idx ON assistantlogs USING GIN (messa... type assistantlogs_result_idx (line 7) | CREATE INDEX assistantlogs_result_idx ON assistantlogs USING GIN (result... type assistantlogs_thinking_idx (line 8) | CREATE INDEX assistantlogs_thinking_idx ON assistantlogs USING GIN (thin... type msglogs_message_idx (line 11) | CREATE INDEX msglogs_message_idx ON msglogs USING GIN (message gin_trgm_... type msglogs_result_idx (line 12) | CREATE INDEX msglogs_result_idx ON msglogs USING GIN (result gin_trgm_ops) type msglogs_thinking_idx (line 13) | CREATE INDEX msglogs_thinking_idx ON msglogs USING GIN (thinking gin_trg... type assistantlogs_message_idx (line 21) | CREATE INDEX assistantlogs_message_idx ON assistantlogs(message) type msglogs_message_idx (line 26) | CREATE INDEX msglogs_message_idx ON msglogs(message) FILE: backend/migrations/sql/20250701_094823_base_settings.sql type providers (line 36) | CREATE TABLE providers ( type providers_user_id_idx (line 47) | CREATE INDEX providers_user_id_idx ON providers(user_id) type providers_type_idx (line 48) | CREATE INDEX providers_type_idx ON providers(type) type providers_name_user_id_idx (line 49) | CREATE INDEX providers_name_user_id_idx ON providers(name, user_id) type providers_name_user_id_unique (line 50) | CREATE UNIQUE INDEX providers_name_user_id_unique ON providers(name, use... type flows_model_provider_type_idx (line 56) | CREATE INDEX flows_model_provider_type_idx ON flows(model_provider_type) type flows_model_provider_name_idx (line 59) | CREATE INDEX flows_model_provider_name_idx ON flows(model_provider_name) type assistants_model_provider_type_idx (line 64) | CREATE INDEX assistants_model_provider_type_idx ON assistants(model_prov... type assistants_model_provider_name_idx (line 67) | CREATE INDEX assistants_model_provider_name_idx ON assistants(model_prov... type prompts_type_idx (line 137) | CREATE INDEX prompts_type_idx ON prompts(type) type flows_model_provider_idx (line 164) | CREATE INDEX flows_model_provider_idx ON flows(model_provider) type assistants_model_provider_idx (line 165) | CREATE INDEX assistants_model_provider_idx ON assistants(model_provider) type prompts_type_idx (line 191) | CREATE INDEX prompts_type_idx ON prompts(type) type prompts_prompt_idx (line 192) | CREATE INDEX prompts_prompt_idx ON prompts(prompt) FILE: backend/migrations/sql/20250901_165149_remove_input_idx.sql type tasks_input_idx (line 8) | CREATE INDEX tasks_input_idx ON tasks(input) FILE: backend/migrations/sql/20251028_113516_remove_result_idx.sql type tasks_result_idx (line 9) | CREATE INDEX tasks_result_idx ON tasks(result) type subtasks_result_idx (line 10) | CREATE INDEX subtasks_result_idx ON subtasks(result) FILE: backend/migrations/sql/20251102_194813_remove_description_idx.sql type subtasks_description_idx (line 8) | CREATE INDEX subtasks_description_idx ON subtasks(description) FILE: backend/migrations/sql/20260128_153000_tool_call_id_template.sql type flows_tool_call_id_template_idx (line 12) | CREATE INDEX flows_tool_call_id_template_idx ON flows(tool_call_id_templ... type assistants_tool_call_id_template_idx (line 13) | CREATE INDEX assistants_tool_call_id_template_idx ON assistants(tool_cal... FILE: backend/migrations/sql/20260129_120000_add_tracking_fields.sql type termlogs_flow_id_idx (line 73) | CREATE INDEX termlogs_flow_id_idx ON termlogs(flow_id) type termlogs_task_id_idx (line 74) | CREATE INDEX termlogs_task_id_idx ON termlogs(task_id) type termlogs_subtask_id_idx (line 75) | CREATE INDEX termlogs_subtask_id_idx ON termlogs(subtask_id) type screenshots_task_id_idx (line 78) | CREATE INDEX screenshots_task_id_idx ON screenshots(task_id) type screenshots_subtask_id_idx (line 79) | CREATE INDEX screenshots_subtask_id_idx ON screenshots(subtask_id) type flows_deleted_at_idx (line 83) | CREATE INDEX flows_deleted_at_idx ON flows(deleted_at) WHERE deleted_at ... type msgchains_created_at_idx (line 86) | CREATE INDEX msgchains_created_at_idx ON msgchains(created_at) type msgchains_model_provider_idx (line 89) | CREATE INDEX msgchains_model_provider_idx ON msgchains(model_provider) type msgchains_model_idx (line 92) | CREATE INDEX msgchains_model_idx ON msgchains(model) type msgchains_model_provider_composite_idx (line 95) | CREATE INDEX msgchains_model_provider_composite_idx ON msgchains(model, ... type msgchains_created_at_flow_id_idx (line 99) | CREATE INDEX msgchains_created_at_flow_id_idx ON msgchains(created_at, f... type msgchains_type_flow_id_idx (line 102) | CREATE INDEX msgchains_type_flow_id_idx ON msgchains(type, flow_id) type toolcalls_created_at_idx (line 107) | CREATE INDEX toolcalls_created_at_idx ON toolcalls(created_at) type toolcalls_updated_at_idx (line 110) | CREATE INDEX toolcalls_updated_at_idx ON toolcalls(updated_at) type toolcalls_created_at_flow_id_idx (line 113) | CREATE INDEX toolcalls_created_at_flow_id_idx ON toolcalls(created_at, f... type toolcalls_name_flow_id_idx (line 116) | CREATE INDEX toolcalls_name_flow_id_idx ON toolcalls(name, flow_id) type toolcalls_status_updated_at_idx (line 119) | CREATE INDEX toolcalls_status_updated_at_idx ON toolcalls(status, update... type flows_created_at_idx (line 124) | CREATE INDEX flows_created_at_idx ON flows(created_at) WHERE deleted_at ... type tasks_created_at_idx (line 127) | CREATE INDEX tasks_created_at_idx ON tasks(created_at) type subtasks_created_at_idx (line 130) | CREATE INDEX subtasks_created_at_idx ON subtasks(created_at) type tasks_flow_id_created_at_idx (line 133) | CREATE INDEX tasks_flow_id_created_at_idx ON tasks(flow_id, created_at) type subtasks_task_id_created_at_idx (line 136) | CREATE INDEX subtasks_task_id_created_at_idx ON subtasks(task_id, create... type assistants_deleted_at_idx (line 148) | CREATE INDEX assistants_deleted_at_idx ON assistants(deleted_at) WHERE d... type assistants_created_at_idx (line 151) | CREATE INDEX assistants_created_at_idx ON assistants(created_at) type assistants_flow_id_deleted_at_idx (line 155) | CREATE INDEX assistants_flow_id_deleted_at_idx ON assistants(flow_id, de... type assistants_flow_id_created_at_idx (line 159) | CREATE INDEX assistants_flow_id_created_at_idx ON assistants(flow_id, cr... type subtasks_task_id_status_idx (line 165) | CREATE INDEX subtasks_task_id_status_idx ON subtasks(task_id, status) type toolcalls_flow_id_status_idx (line 169) | CREATE INDEX toolcalls_flow_id_status_idx ON toolcalls(flow_id, status) type msgchains_type_task_id_subtask_id_idx (line 173) | CREATE INDEX msgchains_type_task_id_subtask_id_idx ON msgchains(type, ta... type tasks_flow_id_status_idx (line 177) | CREATE INDEX tasks_flow_id_status_idx ON tasks(flow_id, status) type subtasks_status_created_at_idx (line 181) | CREATE INDEX subtasks_status_created_at_idx ON subtasks(status, created_at) type toolcalls_name_status_idx (line 185) | CREATE INDEX toolcalls_name_status_idx ON toolcalls(name, status) type msgchains_type_created_at_idx (line 189) | CREATE INDEX msgchains_type_created_at_idx ON msgchains(type, created_at) FILE: backend/migrations/sql/20260218_150000_api_tokens.sql type api_tokens (line 5) | CREATE TABLE api_tokens ( type api_tokens_name_user_unique_idx (line 21) | CREATE UNIQUE INDEX api_tokens_name_user_unique_idx ON api_tokens(name, ... type api_tokens_token_id_idx (line 24) | CREATE INDEX api_tokens_token_id_idx ON api_tokens(token_id) type api_tokens_user_id_idx (line 25) | CREATE INDEX api_tokens_user_id_idx ON api_tokens(user_id) type api_tokens_status_idx (line 26) | CREATE INDEX api_tokens_status_idx ON api_tokens(status) type api_tokens_deleted_at_idx (line 27) | CREATE INDEX api_tokens_deleted_at_idx ON api_tokens(deleted_at) FILE: backend/migrations/sql/20260222_140000_user_preferences.sql type user_preferences (line 12) | CREATE TABLE user_preferences ( type user_preferences_user_id_idx (line 22) | CREATE INDEX user_preferences_user_id_idx ON user_preferences(user_id) type user_preferences_preferences_idx (line 23) | CREATE INDEX user_preferences_preferences_idx ON user_preferences USING ... FILE: backend/pkg/cast/chain_ast.go constant fallbackRequestArgs (line 15) | fallbackRequestArgs = `{}` constant FallbackResponseContent (line 16) | FallbackResponseContent = "the call was not handled, please try again" constant SummarizationToolName (line 17) | SummarizationToolName = "execute_task_and_return_summary" constant SummarizationToolArgs (line 18) | SummarizationToolArgs = `{"question": "delegate and execute the task, ... constant ToolCallIDTemplate (line 19) | ToolCallIDTemplate = "call_{r:24:x}" constant FakeReasoningSignatureGemini (line 23) | FakeReasoningSignatureGemini = "skip_thought_signature_validator" type BodyPairType (line 27) | type BodyPairType method String (line 594) | func (bpt BodyPairType) String() string { constant RequestResponse (line 31) | RequestResponse BodyPairType = iota constant Completion (line 33) | Completion constant Summarization (line 35) | Summarization type ChainAST (line 39) | type ChainAST struct method Messages (line 272) | func (ast *ChainAST) Messages() []llms.MessageContent { method AddSection (line 626) | func (ast *ChainAST) AddSection(section *ChainSection) { method String (line 646) | func (ast *ChainAST) String() string { method FindToolCallResponses (line 684) | func (ast *ChainAST) FindToolCallResponses(toolCallID string) []llms.T... method AppendHumanMessage (line 747) | func (ast *ChainAST) AppendHumanMessage(content string) { method AddToolResponse (line 801) | func (ast *ChainAST) AddToolResponse(toolCallID, toolName, content str... method Size (line 895) | func (ast *ChainAST) Size() int { method NormalizeToolCallIDs (line 912) | func (ast *ChainAST) NormalizeToolCallIDs(newTemplate string) error { method ClearReasoning (line 983) | func (ast *ChainAST) ClearReasoning() error { type ChainSection (line 45) | type ChainSection struct method Messages (line 289) | func (section *ChainSection) Messages() []llms.MessageContent { method SetHeader (line 613) | func (section *ChainSection) SetHeader(header *Header) { method AddBodyPair (line 620) | func (section *ChainSection) AddBodyPair(pair *BodyPair) { method Size (line 885) | func (section *ChainSection) Size() int { type Header (line 53) | type Header struct method Messages (line 306) | func (header *Header) Messages() []llms.MessageContent { method Size (line 608) | func (header *Header) Size() int { type BodyPair (line 60) | type BodyPair struct method Messages (line 323) | func (pair *BodyPair) Messages() []llms.MessageContent { method GetToolCallsInfo (line 340) | func (pair *BodyPair) GetToolCallsInfo() ToolCallsInfo { method IsValid (line 390) | func (pair *BodyPair) IsValid() bool { method Size (line 890) | func (pair *BodyPair) Size() int { type ToolCallPair (line 68) | type ToolCallPair struct type ToolCallsInfo (line 74) | type ToolCallsInfo struct function NewChainAST (line 84) | func NewChainAST(chain []llms.MessageContent, force bool) (*ChainAST, er... function NewHeader (line 416) | func NewHeader(systemMsg *llms.MessageContent, humanMsg *llms.MessageCon... function NewBodyPair (line 436) | func NewBodyPair(aiMsg *llms.MessageContent, toolMsgs []*llms.MessageCon... function NewBodyPairFromMessages (line 475) | func NewBodyPairFromMessages(messages []llms.MessageContent) (*BodyPair,... function NewBodyPairFromSummarization (line 507) | func NewBodyPairFromSummarization( function NewBodyPairFromCompletion (line 566) | func NewBodyPairFromCompletion(text string) *BodyPair { function NewChainSection (line 579) | func NewChainSection(header *Header, bodyPairs []*BodyPair) *ChainSection { function HasToolCalls (line 631) | func HasToolCalls(msg *llms.MessageContent) bool { function CalculateMessageSize (line 707) | func CalculateMessageSize(msg *llms.MessageContent) int { function CalculateBodyPairSize (line 730) | func CalculateBodyPairSize(pair *BodyPair) int { function clearMessageReasoning (line 1016) | func clearMessageReasoning(msg *llms.MessageContent) { function ContainsToolCallReasoning (line 1040) | func ContainsToolCallReasoning(messages []llms.MessageContent) bool { function ExtractReasoningMessage (line 1063) | func ExtractReasoningMessage(messages []llms.MessageContent) *llms.Messa... FILE: backend/pkg/cast/chain_ast_test.go function TestNewChainAST_EmptyChain (line 14) | func TestNewChainAST_EmptyChain(t *testing.T) { function TestNewChainAST_BasicChains (line 33) | func TestNewChainAST_BasicChains(t *testing.T) { function TestNewChainAST_ToolCallChains (line 128) | func TestNewChainAST_ToolCallChains(t *testing.T) { function TestNewChainAST_MultipleHumanMessages (line 276) | func TestNewChainAST_MultipleHumanMessages(t *testing.T) { function TestNewChainAST_ConsecutiveHumans (line 303) | func TestNewChainAST_ConsecutiveHumans(t *testing.T) { function TestNewChainAST_UnexpectedTool (line 339) | func TestNewChainAST_UnexpectedTool(t *testing.T) { function TestAddToolResponse (line 366) | func TestAddToolResponse(t *testing.T) { function TestAppendHumanMessage (line 427) | func TestAppendHumanMessage(t *testing.T) { function TestGeneratedChains (line 511) | func TestGeneratedChains(t *testing.T) { function TestComplexGeneratedChains (line 598) | func TestComplexGeneratedChains(t *testing.T) { function TestMessages (line 691) | func TestMessages(t *testing.T) { function TestConstructors (line 758) | func TestConstructors(t *testing.T) { function TestSizeTracking (line 901) | func TestSizeTracking(t *testing.T) { function TestAddSectionAndBodyPair (line 994) | func TestAddSectionAndBodyPair(t *testing.T) { function TestAppendHumanMessageComplex (line 1066) | func TestAppendHumanMessageComplex(t *testing.T) { function TestAddToolResponseComplex (line 1149) | func TestAddToolResponseComplex(t *testing.T) { function extractText (line 1225) | func extractText(msg *llms.MessageContent) string { function TestNewChainAST_Summarization (line 1240) | func TestNewChainAST_Summarization(t *testing.T) { function TestBodyPairConstructors (line 1454) | func TestBodyPairConstructors(t *testing.T) { function TestContainsToolCallReasoning (line 1899) | func TestContainsToolCallReasoning(t *testing.T) { function TestExtractReasoningMessage (line 2016) | func TestExtractReasoningMessage(t *testing.T) { function TestNormalizeToolCallIDs (line 2139) | func TestNormalizeToolCallIDs(t *testing.T) { function TestNormalizeToolCallIDs_IntegrationScenario (line 2579) | func TestNormalizeToolCallIDs_IntegrationScenario(t *testing.T) { function TestClearReasoning (line 2718) | func TestClearReasoning(t *testing.T) { function TestClearReasoning_IntegrationWithNormalize (line 2925) | func TestClearReasoning_IntegrationWithNormalize(t *testing.T) { FILE: backend/pkg/cast/chain_data_test.go type ChainConfig (line 432) | type ChainConfig struct function DefaultChainConfig (line 448) | func DefaultChainConfig() ChainConfig { function GenerateChain (line 460) | func GenerateChain(config ChainConfig) []llms.MessageContent { function GenerateComplexChain (line 560) | func GenerateComplexChain(numSections, numToolCalls, numMissingResponses... function DumpChainStructure (line 607) | func DumpChainStructure(chain []llms.MessageContent) string { function truncateString (line 637) | func truncateString(s string, max int) string { FILE: backend/pkg/config/config.go type Config (line 18) | type Config struct method GetSecretPatterns (line 288) | func (c *Config) GetSecretPatterns() []patterns.Pattern { function NewConfig (line 227) | func NewConfig() (*Config, error) { function ensureInstallationID (line 251) | func ensureInstallationID(config *Config) { function ensureLicenseKey (line 272) | func ensureLicenseKey(config *Config) { FILE: backend/pkg/config/config_test.go function TestGetSecretPatterns_Empty (line 15) | func TestGetSecretPatterns_Empty(t *testing.T) { function TestGetSecretPatterns_WithSecrets (line 24) | func TestGetSecretPatterns_WithSecrets(t *testing.T) { function TestGetSecretPatterns_TrimsWhitespace (line 50) | func TestGetSecretPatterns_TrimsWhitespace(t *testing.T) { function TestGetSecretPatterns_SkipsEmptyStrings (line 63) | func TestGetSecretPatterns_SkipsEmptyStrings(t *testing.T) { function TestGetSecretPatterns_PatternCompilation (line 79) | func TestGetSecretPatterns_PatternCompilation(t *testing.T) { function TestGetSecretPatterns_AllFields (line 208) | func TestGetSecretPatterns_AllFields(t *testing.T) { function clearConfigEnv (line 268) | func clearConfigEnv(t *testing.T) { function TestNewConfig_Defaults (line 322) | func TestNewConfig_Defaults(t *testing.T) { function TestNewConfig_EnvOverride (line 343) | func TestNewConfig_EnvOverride(t *testing.T) { function TestNewConfig_ProviderDefaults (line 360) | func TestNewConfig_ProviderDefaults(t *testing.T) { function TestNewConfig_StaticURL (line 377) | func TestNewConfig_StaticURL(t *testing.T) { function TestNewConfig_StaticURL_Empty (line 392) | func TestNewConfig_StaticURL_Empty(t *testing.T) { function TestNewConfig_SummarizerDefaults (line 401) | func TestNewConfig_SummarizerDefaults(t *testing.T) { function TestNewConfig_SearchEngineDefaults (line 418) | func TestNewConfig_SearchEngineDefaults(t *testing.T) { function TestEnsureInstallationID_GeneratesNewUUID (line 432) | func TestEnsureInstallationID_GeneratesNewUUID(t *testing.T) { function TestEnsureInstallationID_ReadsExistingFile (line 449) | func TestEnsureInstallationID_ReadsExistingFile(t *testing.T) { function TestEnsureInstallationID_KeepsValidEnvValue (line 464) | func TestEnsureInstallationID_KeepsValidEnvValue(t *testing.T) { function TestEnsureInstallationID_ReplacesInvalidEnvValue (line 476) | func TestEnsureInstallationID_ReplacesInvalidEnvValue(t *testing.T) { function TestEnsureInstallationID_ReplacesInvalidFileContent (line 489) | func TestEnsureInstallationID_ReplacesInvalidFileContent(t *testing.T) { function TestNewConfig_CorsOrigins (line 504) | func TestNewConfig_CorsOrigins(t *testing.T) { function TestNewConfig_OllamaDefaults (line 514) | func TestNewConfig_OllamaDefaults(t *testing.T) { function TestNewConfig_HTTPClientTimeout (line 526) | func TestNewConfig_HTTPClientTimeout(t *testing.T) { function TestNewConfig_AgentSupervisionDefaults (line 551) | func TestNewConfig_AgentSupervisionDefaults(t *testing.T) { function TestNewConfig_AgentSupervisionOverride (line 566) | func TestNewConfig_AgentSupervisionOverride(t *testing.T) { FILE: backend/pkg/controller/alog.go type FlowAgentLogWorker (line 12) | type FlowAgentLogWorker interface type flowAgentLogWorker (line 25) | type flowAgentLogWorker struct method PutLog (line 41) | func (flw *flowAgentLogWorker) PutLog( method GetLog (line 71) | func (flw *flowAgentLogWorker) GetLog(ctx context.Context, msgID int64... function NewFlowAgentLogWorker (line 32) | func NewFlowAgentLogWorker(db database.Querier, flowID int64, pub subscr... FILE: backend/pkg/controller/alogs.go type AgentLogController (line 12) | type AgentLogController interface type agentLogController (line 18) | type agentLogController struct method NewFlowAgentLog (line 32) | func (alc *agentLogController) NewFlowAgentLog( method ListFlowsAgentLog (line 46) | func (alc *agentLogController) ListFlowsAgentLog(ctx context.Context) ... method GetFlowAgentLog (line 58) | func (alc *agentLogController) GetFlowAgentLog( function NewAgentLogController (line 24) | func NewAgentLogController(db database.Querier) AgentLogController { FILE: backend/pkg/controller/aslog.go constant updateMsgTimeout (line 18) | updateMsgTimeout = 30 * time.Second constant streamCacheSize (line 19) | streamCacheSize = 1000 constant streamCacheTTL (line 20) | streamCacheTTL = 2 * time.Hour type FlowAssistantLogWorker (line 23) | type FlowAssistantLogWorker interface type flowAssistantLogWorker (line 54) | type flowAssistantLogWorker struct method PutMsg (line 78) | func (aslw *flowAssistantLogWorker) PutMsg( method PutFlowAssistantMsg (line 91) | func (aslw *flowAssistantLogWorker) PutFlowAssistantMsg( method PutFlowAssistantMsgResult (line 100) | func (aslw *flowAssistantLogWorker) PutFlowAssistantMsgResult( method StreamFlowAssistantMsg (line 110) | func (aslw *flowAssistantLogWorker) StreamFlowAssistantMsg( method UpdateMsgResult (line 119) | func (aslw *flowAssistantLogWorker) UpdateMsgResult( method putMsg (line 161) | func (aslw *flowAssistantLogWorker) putMsg( method putMsgResult (line 214) | func (aslw *flowAssistantLogWorker) putMsgResult( method appendMsgResult (line 243) | func (aslw *flowAssistantLogWorker) appendMsgResult( method workerMsgUpdater (line 281) | func (aslw *flowAssistantLogWorker) workerMsgUpdater( method getThinkingString (line 411) | func (aslw *flowAssistantLogWorker) getThinkingString(thinking *reason... method getThinkingStructure (line 418) | func (aslw *flowAssistantLogWorker) getThinkingStructure(thinking stri... function NewFlowAssistantLogWorker (line 64) | func NewFlowAssistantLogWorker( FILE: backend/pkg/controller/aslogs.go type AssistantLogController (line 12) | type AssistantLogController interface type assistantLogController (line 20) | type assistantLogController struct method NewFlowAssistantLog (line 34) | func (aslc *assistantLogController) NewFlowAssistantLog( method ListFlowsAssistantLog (line 49) | func (aslc *assistantLogController) ListFlowsAssistantLog( method GetFlowAssistantLog (line 67) | func (aslc *assistantLogController) GetFlowAssistantLog( function NewAssistantLogController (line 26) | func NewAssistantLogController(db database.Querier) AssistantLogControll... FILE: backend/pkg/controller/assistant.go constant stopAssistantTimeout (line 25) | stopAssistantTimeout = 5 * time.Second type AssistantWorker (line 27) | type AssistantWorker interface type assistantWorker (line 39) | type assistantWorker struct method worker (line 406) | func (aw *assistantWorker) worker() { method GetAssistantID (line 472) | func (aw *assistantWorker) GetAssistantID() int64 { method GetUserID (line 476) | func (aw *assistantWorker) GetUserID() int64 { method GetFlowID (line 480) | func (aw *assistantWorker) GetFlowID() int64 { method GetTitle (line 484) | func (aw *assistantWorker) GetTitle() string { method GetStatus (line 488) | func (aw *assistantWorker) GetStatus(ctx context.Context) (database.As... method SetStatus (line 497) | func (aw *assistantWorker) SetStatus(ctx context.Context, status datab... method PutInput (line 511) | func (aw *assistantWorker) PutInput(ctx context.Context, input string,... method Finish (line 540) | func (aw *assistantWorker) Finish(ctx context.Context) error { method Stop (line 562) | func (aw *assistantWorker) Stop(ctx context.Context) error { type newAssistantWorkerCtx (line 58) | type newAssistantWorkerCtx struct type assistantWorkerCtx (line 70) | type assistantWorkerCtx struct constant assistantInputTimeout (line 77) | assistantInputTimeout = 2 * time.Second type assistantInput (line 79) | type assistantInput struct function NewAssistantWorker (line 85) | func NewAssistantWorker(ctx context.Context, awc newAssistantWorkerCtx) ... function LoadAssistantWorker (line 256) | func LoadAssistantWorker( FILE: backend/pkg/controller/context.go type FlowContext (line 19) | type FlowContext struct type TaskContext (line 34) | type TaskContext struct type SubtaskContext (line 42) | type SubtaskContext struct function wrapErrorEndSpan (line 51) | func wrapErrorEndSpan(ctx context.Context, span langfuse.Span, msg strin... FILE: backend/pkg/controller/flow.go constant stopTaskTimeout (line 28) | stopTaskTimeout = 5 * time.Second type FlowWorker (line 30) | type FlowWorker interface type flowWorker (line 48) | type flowWorker struct method GetFlowID (line 446) | func (fw *flowWorker) GetFlowID() int64 { method GetUserID (line 450) | func (fw *flowWorker) GetUserID() int64 { method GetTitle (line 454) | func (fw *flowWorker) GetTitle() string { method GetContext (line 461) | func (fw *flowWorker) GetContext() *FlowContext { method GetStatus (line 465) | func (fw *flowWorker) GetStatus(ctx context.Context) (database.FlowSta... method SetStatus (line 477) | func (fw *flowWorker) SetStatus(ctx context.Context, status database.F... method AddAssistant (line 496) | func (fw *flowWorker) AddAssistant(ctx context.Context, aw AssistantWo... method GetAssistant (line 515) | func (fw *flowWorker) GetAssistant(ctx context.Context, assistantID in... method DeleteAssistant (line 526) | func (fw *flowWorker) DeleteAssistant(ctx context.Context, assistantID... method ListAssistants (line 548) | func (fw *flowWorker) ListAssistants(ctx context.Context) []AssistantW... method ListTasks (line 564) | func (fw *flowWorker) ListTasks(ctx context.Context) []TaskWorker { method PutInput (line 568) | func (fw *flowWorker) PutInput(ctx context.Context, input string) error { method Finish (line 597) | func (fw *flowWorker) Finish(ctx context.Context) error { method Stop (line 633) | func (fw *flowWorker) Stop(ctx context.Context) error { method Rename (line 658) | func (fw *flowWorker) Rename(ctx context.Context, title string) error { method finish (line 679) | func (fw *flowWorker) finish() error { method worker (line 694) | func (fw *flowWorker) worker() { method processInput (line 752) | func (fw *flowWorker) processInput(flin flowInput) (TaskWorker, error) { method runTask (line 780) | func (fw *flowWorker) runTask(spanName, input string, task TaskWorker)... type newFlowWorkerCtx (line 63) | type newFlowWorkerCtx struct type flowWorkerCtx (line 74) | type flowWorkerCtx struct type flowProviderControllers (line 84) | type flowProviderControllers struct type flowProviderWorkers (line 94) | type flowProviderWorkers struct constant flowInputTimeout (line 103) | flowInputTimeout = 1 * time.Second type flowInput (line 105) | type flowInput struct function NewFlowWorker (line 110) | func NewFlowWorker( function LoadFlowWorker (line 276) | func LoadFlowWorker(ctx context.Context, flow database.Flow, fwc flowWor... function newFlowProviderWorkers (line 836) | func newFlowProviderWorkers( function getFlowProviderWorkers (line 882) | func getFlowProviderWorkers( FILE: backend/pkg/controller/flows.go type FlowController (line 26) | type FlowController interface type flowController (line 53) | type flowController struct method LoadFlows (line 95) | func (fc *flowController) LoadFlows(ctx context.Context) error { method CreateFlow (line 133) | func (fc *flowController) CreateFlow( method CreateAssistant (line 176) | func (fc *flowController) CreateAssistant( method ListFlows (line 305) | func (fc *flowController) ListFlows(ctx context.Context) []FlowWorker { method GetFlow (line 321) | func (fc *flowController) GetFlow(ctx context.Context, flowID int64) (... method StopFlow (line 333) | func (fc *flowController) StopFlow(ctx context.Context, flowID int64) ... method FinishFlow (line 350) | func (fc *flowController) FinishFlow(ctx context.Context, flowID int64... method RenameFlow (line 369) | func (fc *flowController) RenameFlow(ctx context.Context, flowID int64... function NewFlowController (line 70) | func NewFlowController( FILE: backend/pkg/controller/msglog.go constant defaultMaxMessageLength (line 11) | defaultMaxMessageLength = 2048 type FlowMsgLogWorker (line 13) | type FlowMsgLogWorker interface type flowMsgLogWorker (line 66) | type flowMsgLogWorker struct method PutMsg (line 82) | func (mlw *flowMsgLogWorker) PutMsg( method PutFlowMsg (line 95) | func (mlw *flowMsgLogWorker) PutFlowMsg( method PutFlowMsgResult (line 106) | func (mlw *flowMsgLogWorker) PutFlowMsgResult( method PutTaskMsg (line 118) | func (mlw *flowMsgLogWorker) PutTaskMsg( method PutTaskMsgResult (line 130) | func (mlw *flowMsgLogWorker) PutTaskMsgResult( method PutSubtaskMsg (line 143) | func (mlw *flowMsgLogWorker) PutSubtaskMsg( method PutSubtaskMsgResult (line 155) | func (mlw *flowMsgLogWorker) PutSubtaskMsgResult( method UpdateMsgResult (line 168) | func (mlw *flowMsgLogWorker) UpdateMsgResult( method putMsg (line 192) | func (mlw *flowMsgLogWorker) putMsg( method putMsgResult (line 219) | func (mlw *flowMsgLogWorker) putMsgResult( function NewFlowMsgLogWorker (line 73) | func NewFlowMsgLogWorker(db database.Querier, flowID int64, pub subscrip... FILE: backend/pkg/controller/msglogs.go type MsgLogController (line 12) | type MsgLogController interface type msgLogController (line 18) | type msgLogController struct method NewFlowMsgLog (line 32) | func (mlc *msgLogController) NewFlowMsgLog( method ListFlowsMsgLog (line 46) | func (mlc *msgLogController) ListFlowsMsgLog(ctx context.Context) ([]F... method GetFlowMsgLog (line 58) | func (mlc *msgLogController) GetFlowMsgLog(ctx context.Context, flowID... function NewMsgLogController (line 24) | func NewMsgLogController(db database.Querier) MsgLogController { FILE: backend/pkg/controller/screenshot.go type FlowScreenshotWorker (line 12) | type FlowScreenshotWorker interface type flowScreenshotWorker (line 17) | type flowScreenshotWorker struct method PutScreenshot (line 35) | func (sw *flowScreenshotWorker) PutScreenshot(ctx context.Context, nam... method GetScreenshot (line 55) | func (sw *flowScreenshotWorker) GetScreenshot(ctx context.Context, scr... function NewFlowScreenshotWorker (line 25) | func NewFlowScreenshotWorker(db database.Querier, flowID int64, pub subs... FILE: backend/pkg/controller/screenshots.go type ScreenshotController (line 12) | type ScreenshotController interface type screenshotController (line 18) | type screenshotController struct method NewFlowScreenshot (line 32) | func (sc *screenshotController) NewFlowScreenshot( method ListFlowsScreenshot (line 46) | func (sc *screenshotController) ListFlowsScreenshot(ctx context.Contex... method GetFlowScreenshot (line 58) | func (sc *screenshotController) GetFlowScreenshot(ctx context.Context,... function NewScreenshotController (line 24) | func NewScreenshotController(db database.Querier) ScreenshotController { FILE: backend/pkg/controller/slog.go type FlowSearchLogWorker (line 12) | type FlowSearchLogWorker interface type flowSearchLogWorker (line 26) | type flowSearchLogWorker struct method PutLog (line 43) | func (slw *flowSearchLogWorker) PutLog( method GetLog (line 75) | func (slw *flowSearchLogWorker) GetLog(ctx context.Context, msgID int6... function NewFlowSearchLogWorker (line 34) | func NewFlowSearchLogWorker(db database.Querier, flowID int64, pub subsc... FILE: backend/pkg/controller/slogs.go type SearchLogController (line 12) | type SearchLogController interface type searchLogController (line 18) | type searchLogController struct method NewFlowSearchLog (line 32) | func (slc *searchLogController) NewFlowSearchLog( method ListFlowsSearchLog (line 46) | func (slc *searchLogController) ListFlowsSearchLog(ctx context.Context... method GetFlowSearchLog (line 58) | func (slc *searchLogController) GetFlowSearchLog( function NewSearchLogController (line 24) | func NewSearchLogController(db database.Querier) SearchLogController { FILE: backend/pkg/controller/subtask.go type TaskUpdater (line 14) | type TaskUpdater interface type SubtaskWorker (line 18) | type SubtaskWorker interface type subtaskWorker (line 37) | type subtaskWorker struct method GetMsgChainID (line 132) | func (stw *subtaskWorker) GetMsgChainID() int64 { method GetSubtaskID (line 136) | func (stw *subtaskWorker) GetSubtaskID() int64 { method GetTaskID (line 140) | func (stw *subtaskWorker) GetTaskID() int64 { method GetFlowID (line 144) | func (stw *subtaskWorker) GetFlowID() int64 { method GetUserID (line 148) | func (stw *subtaskWorker) GetUserID() int64 { method GetTitle (line 152) | func (stw *subtaskWorker) GetTitle() string { method GetDescription (line 156) | func (stw *subtaskWorker) GetDescription() string { method IsCompleted (line 160) | func (stw *subtaskWorker) IsCompleted() bool { method IsWaiting (line 167) | func (stw *subtaskWorker) IsWaiting() bool { method GetStatus (line 174) | func (stw *subtaskWorker) GetStatus(ctx context.Context) (database.Sub... method SetStatus (line 183) | func (stw *subtaskWorker) SetStatus(ctx context.Context, status databa... method GetResult (line 219) | func (stw *subtaskWorker) GetResult(ctx context.Context) (string, erro... method SetResult (line 228) | func (stw *subtaskWorker) SetResult(ctx context.Context, result string... method PutInput (line 240) | func (stw *subtaskWorker) PutInput(ctx context.Context, input string) ... method Run (line 274) | func (stw *subtaskWorker) Run(ctx context.Context) error { method Finish (line 326) | func (stw *subtaskWorker) Finish(ctx context.Context) error { function NewSubtaskWorker (line 45) | func NewSubtaskWorker( function LoadSubtaskWorker (line 76) | func LoadSubtaskWorker( FILE: backend/pkg/controller/subtasks.go type NewSubtaskInfo (line 13) | type NewSubtaskInfo struct type SubtaskController (line 18) | type SubtaskController interface type subtaskController (line 27) | type subtaskController struct method LoadSubtasks (line 41) | func (stc *subtaskController) LoadSubtasks(ctx context.Context, taskID... method GenerateSubtasks (line 70) | func (stc *subtaskController) GenerateSubtasks(ctx context.Context) er... method RefineSubtasks (line 96) | func (stc *subtaskController) RefineSubtasks(ctx context.Context) error { method PopSubtask (line 139) | func (stc *subtaskController) PopSubtask(ctx context.Context, updater ... method ListSubtasks (line 167) | func (stc *subtaskController) ListSubtasks(ctx context.Context) []Subt... method GetSubtask (line 183) | func (stc *subtaskController) GetSubtask(ctx context.Context, subtaskI... function NewSubtaskController (line 33) | func NewSubtaskController(taskCtx *TaskContext) SubtaskController { FILE: backend/pkg/controller/task.go type FlowUpdater (line 15) | type FlowUpdater interface type TaskWorker (line 19) | type TaskWorker interface type taskWorker (line 35) | type taskWorker struct method GetTaskID (line 158) | func (tw *taskWorker) GetTaskID() int64 { method GetFlowID (line 162) | func (tw *taskWorker) GetFlowID() int64 { method GetUserID (line 166) | func (tw *taskWorker) GetUserID() int64 { method GetTitle (line 170) | func (tw *taskWorker) GetTitle() string { method IsCompleted (line 174) | func (tw *taskWorker) IsCompleted() bool { method IsWaiting (line 181) | func (tw *taskWorker) IsWaiting() bool { method GetStatus (line 188) | func (tw *taskWorker) GetStatus(ctx context.Context) (database.TaskSta... method SetStatus (line 198) | func (tw *taskWorker) SetStatus(ctx context.Context, status database.T... method GetResult (line 242) | func (tw *taskWorker) GetResult(ctx context.Context) (string, error) { method SetResult (line 251) | func (tw *taskWorker) SetResult(ctx context.Context, result string) er... method PutInput (line 263) | func (tw *taskWorker) PutInput(ctx context.Context, input string) error { method Run (line 281) | func (tw *taskWorker) Run(ctx context.Context) error { method Finish (line 350) | func (tw *taskWorker) Finish(ctx context.Context) error { function NewTaskWorker (line 44) | func NewTaskWorker( function LoadTaskWorker (line 113) | func LoadTaskWorker( FILE: backend/pkg/controller/tasks.go type TaskController (line 11) | type TaskController interface type taskController (line 18) | type taskController struct method LoadTasks (line 33) | func (tc *taskController) LoadTasks( method CreateTask (line 66) | func (tc *taskController) CreateTask( method ListTasks (line 84) | func (tc *taskController) ListTasks(ctx context.Context) []TaskWorker { method GetTask (line 100) | func (tc *taskController) GetTask(ctx context.Context, taskID int64) (... function NewTaskController (line 25) | func NewTaskController(flowCtx *FlowContext) TaskController { FILE: backend/pkg/controller/termlog.go type FlowTermLogWorker (line 12) | type FlowTermLogWorker interface type flowTermLogWorker (line 24) | type flowTermLogWorker struct method PutMsg (line 42) | func (tlw *flowTermLogWorker) PutMsg( method GetMsg (line 84) | func (tlw *flowTermLogWorker) GetMsg(ctx context.Context, msgID int64)... method GetContainers (line 93) | func (tlw *flowTermLogWorker) GetContainers(ctx context.Context) ([]da... function NewFlowTermLogWorker (line 32) | func NewFlowTermLogWorker(db database.Querier, flowID int64, pub subscri... FILE: backend/pkg/controller/termlogs.go type TermLogController (line 12) | type TermLogController interface type termLogController (line 19) | type termLogController struct method NewFlowTermLog (line 33) | func (tlc *termLogController) NewFlowTermLog( method ListFlowsTermLog (line 47) | func (tlc *termLogController) ListFlowsTermLog(ctx context.Context) ([... method GetFlowTermLog (line 59) | func (tlc *termLogController) GetFlowTermLog(ctx context.Context, flow... method GetFlowContainers (line 71) | func (tlc *termLogController) GetFlowContainers(ctx context.Context, f... function NewTermLogController (line 25) | func NewTermLogController(db database.Querier) TermLogController { FILE: backend/pkg/controller/vslog.go type FlowVectorStoreLogWorker (line 13) | type FlowVectorStoreLogWorker interface type flowVectorStoreLogWorker (line 28) | type flowVectorStoreLogWorker struct method PutLog (line 49) | func (vslw *flowVectorStoreLogWorker) PutLog( method GetLog (line 83) | func (vslw *flowVectorStoreLogWorker) GetLog(ctx context.Context, msgI... function NewFlowVectorStoreLogWorker (line 36) | func NewFlowVectorStoreLogWorker( FILE: backend/pkg/controller/vslogs.go type VectorStoreLogController (line 12) | type VectorStoreLogController interface type vectorStoreLogController (line 18) | type vectorStoreLogController struct method NewFlowVectorStoreLog (line 32) | func (vslc *vectorStoreLogController) NewFlowVectorStoreLog( method ListFlowsVectorStoreLog (line 46) | func (tlc *vectorStoreLogController) ListFlowsVectorStoreLog(ctx conte... method GetFlowVectorStoreLog (line 58) | func (vslc *vectorStoreLogController) GetFlowVectorStoreLog( function NewVectorStoreLogController (line 24) | func NewVectorStoreLogController(db database.Querier) VectorStoreLogCont... FILE: backend/pkg/csum/chain_summary.go constant preserveAllLastSectionPairs (line 21) | preserveAllLastSectionPairs = true constant maxLastSectionByteSize (line 24) | maxLastSectionByteSize = 50 * 1024 constant maxSingleBodyPairByteSize (line 27) | maxSingleBodyPairByteSize = 16 * 1024 constant useQAPairSummarization (line 30) | useQAPairSummarization = false constant maxQAPairSections (line 33) | maxQAPairSections = 10 constant maxQAPairByteSize (line 36) | maxQAPairByteSize = 64 * 1024 constant summarizeHumanMessagesInQAPairs (line 39) | summarizeHumanMessagesInQAPairs = false constant lastSectionReservePercentage (line 42) | lastSectionReservePercentage = 25 constant keepMinLastQASections (line 45) | keepMinLastQASections = 1 constant SummarizedContentPrefix (line 48) | SummarizedContentPrefix = "**summarized content:**\n" type SummarizerConfig (line 52) | type SummarizerConfig struct type Summarizer (line 64) | type Summarizer interface type summarizer (line 73) | type summarizer struct method SummarizeChain (line 107) | func (s *summarizer) SummarizeChain( function NewSummarizer (line 78) | func NewSummarizer(config SummarizerConfig) Summarizer { function summarizeSections (line 160) | func summarizeSections( function summarizeLastSection (line 250) | func summarizeLastSection( function determineTypeToSummarizedSection (line 340) | func determineTypeToSummarizedSection(section *cast.ChainSection) cast.B... function determineTypeToSummarizedSections (line 355) | func determineTypeToSummarizedSections(sections []*cast.ChainSection) ca... function summarizeOversizedBodyPairs (line 370) | func summarizeOversizedBodyPairs( function containsSummarizedContent (line 464) | func containsSummarizedContent(pair *cast.BodyPair) bool { function summarizeQAPairs (line 496) | func summarizeQAPairs( function exceedsQASectionLimits (line 609) | func exceedsQASectionLimits(ast *cast.ChainAST, maxSections int, maxByte... function prepareQASectionsForSummarization (line 615) | func prepareQASectionsForSummarization( function determineRecentSectionsToKeep (line 647) | func determineRecentSectionsToKeep(ast *cast.ChainAST, keepQASections in... function convertSectionsHeadersToMessages (line 690) | func convertSectionsHeadersToMessages(sections []*cast.ChainSection) []l... function convertSectionsPairsToMessages (line 708) | func convertSectionsPairsToMessages(sections []*cast.ChainSection) []llm... function determineLastSectionPairs (line 727) | func determineLastSectionPairs( function GenerateSummary (line 790) | func GenerateSummary( function messagesToPrompt (line 817) | func messagesToPrompt(humanMessages []llms.MessageContent, aiMessages []... function getSummarizationInstructions (line 854) | func getSummarizationInstructions(sumCase int) string { function humanMessagesToText (line 931) | func humanMessagesToText(humanMessages []llms.MessageContent) string { function aiMessagesToText (line 967) | func aiMessagesToText(aiMessages []llms.MessageContent) string { FILE: backend/pkg/csum/chain_summary_e2e_test.go type astModifier (line 16) | type astModifier type astCheck (line 19) | type astCheck function checkSummarizationResults (line 22) | func checkSummarizationResults(config SummarizerConfig) astCheck { function checkSizeReduction (line 113) | func checkSizeReduction(t *testing.T, ast *cast.ChainAST, originalAST *c... function originalLastSectionSize (line 136) | func originalLastSectionSize(ast *cast.ChainAST) int { function TestSummarizeChain (line 147) | func TestSummarizeChain(t *testing.T) { function cloneAST (line 889) | func cloneAST(ast *cast.ChainAST) *cast.ChainAST { function addBodyPairsToLastSection (line 896) | func addBodyPairsToLastSection(count int, size int) astModifier { function addNewSection (line 918) | func addNewSection(human string, bodyPairCount int, bodyPairSize int) as... function addToolCallToLastSection (line 935) | func addToolCallToLastSection(toolName string) astModifier { function checkSectionCount (line 981) | func checkSectionCount(expected int) astCheck { function checkTotalSize (line 989) | func checkTotalSize(maxSize int) astCheck { function checkLastSectionSize (line 997) | func checkLastSectionSize(maxSize int) astCheck { function checkSummarizedContent (line 1011) | func checkSummarizedContent(t *testing.T, ast *cast.ChainAST, _ *cast.Ch... function addNormalAndOversizedBodyPairs (line 1029) | func addNormalAndOversizedBodyPairs() astModifier { function TestSummarizationIdempotence (line 1058) | func TestSummarizationIdempotence(t *testing.T) { function TestLastBodyPairPreservation (line 1109) | func TestLastBodyPairPreservation(t *testing.T) { function TestLastQASectionExceedsMaxQABytes (line 1309) | func TestLastQASectionExceedsMaxQABytes(t *testing.T) { FILE: backend/pkg/csum/chain_summary_reasoning_test.go function TestSummarizeOversizedBodyPairs_WithReasoning (line 16) | func TestSummarizeOversizedBodyPairs_WithReasoning(t *testing.T) { function TestSummarizeOversizedBodyPairs_WithoutReasoning (line 111) | func TestSummarizeOversizedBodyPairs_WithoutReasoning(t *testing.T) { function TestSummarizeSections_WithReasoning (line 197) | func TestSummarizeSections_WithReasoning(t *testing.T) { function TestSummarizeLastSection_WithReasoning (line 292) | func TestSummarizeLastSection_WithReasoning(t *testing.T) { function TestSummarizeOversizedBodyPairs_WithReasoningMessage (line 395) | func TestSummarizeOversizedBodyPairs_WithReasoningMessage(t *testing.T) { function TestSummarizeOversizedBodyPairs_KimiPattern (line 500) | func TestSummarizeOversizedBodyPairs_KimiPattern(t *testing.T) { FILE: backend/pkg/csum/chain_summary_split_test.go type SummarizerChecks (line 20) | type SummarizerChecks struct function newTextMsg (line 27) | func newTextMsg(role llms.ChatMessageType, text string) *llms.MessageCon... function createTestChainAST (line 35) | func createTestChainAST(sections ...*cast.ChainSection) *cast.ChainAST { function verifyASTConsistency (line 41) | func verifyASTConsistency(t *testing.T, ast *cast.ChainAST) { function verifyASTSizes (line 124) | func verifyASTSizes(t *testing.T, ast *cast.ChainAST) { type mockSummarizer (line 144) | type mockSummarizer struct method Summarize (line 165) | func (m *mockSummarizer) Summarize(ctx context.Context, text string) (... method ValidateChecks (line 180) | func (m *mockSummarizer) ValidateChecks(t *testing.T) { method SummarizerHandler (line 212) | func (m *mockSummarizer) SummarizerHandler() tools.SummarizeHandler { function newMockSummarizer (line 155) | func newMockSummarizer(returnText string, returnError error, checks *Sum... function createMockSummarizeHandler (line 217) | func createMockSummarizeHandler() tools.SummarizeHandler { function countSummarizedPairs (line 222) | func countSummarizedPairs(section *cast.ChainSection) int { function toString (line 233) | func toString(t *testing.T, st any) string { function compareMessages (line 240) | func compareMessages(t *testing.T, expected, actual []llms.MessageConten... function countToolCalls (line 251) | func countToolCalls(msg *llms.MessageContent) int { function countToolResponses (line 266) | func countToolResponses(messages []*llms.MessageContent) int { function hasToolCalls (line 283) | func hasToolCalls(msg *llms.MessageContent) bool { function verifySummarizationPatterns (line 288) | func verifySummarizationPatterns(t *testing.T, ast *cast.ChainAST, summa... function verifySizeReduction (line 326) | func verifySizeReduction(t *testing.T, originalSize int, ast *cast.Chain... function TestSummarizeSections (line 334) | func TestSummarizeSections(t *testing.T) { function TestSummarizeLastSection (line 701) | func TestSummarizeLastSection(t *testing.T) { function TestSummarizeQAPairs (line 1263) | func TestSummarizeQAPairs(t *testing.T) { function TestLastBodyPairNeverSummarized (line 1683) | func TestLastBodyPairNeverSummarized(t *testing.T) { function TestLastBodyPairWithReasoning (line 1738) | func TestLastBodyPairWithReasoning(t *testing.T) { function TestLastBodyPairWithLargeResponse_MultiPair (line 1992) | func TestLastBodyPairWithLargeResponse_MultiPair(t *testing.T) { function createLargeBodyPair (line 2099) | func createLargeBodyPair(size int, content string) *cast.BodyPair { FILE: backend/pkg/database/agentlogs.sql.go constant createAgentLog (line 13) | createAgentLog = `-- name: CreateAgentLog :one type CreateAgentLogParams (line 29) | type CreateAgentLogParams struct method CreateAgentLog (line 39) | func (q *Queries) CreateAgentLog(ctx context.Context, arg CreateAgentLog... constant getFlowAgentLog (line 64) | getFlowAgentLog = `-- name: GetFlowAgentLog :one type GetFlowAgentLogParams (line 72) | type GetFlowAgentLogParams struct method GetFlowAgentLog (line 77) | func (q *Queries) GetFlowAgentLog(ctx context.Context, arg GetFlowAgentL... constant getFlowAgentLogs (line 94) | getFlowAgentLogs = `-- name: GetFlowAgentLogs :many method GetFlowAgentLogs (line 103) | func (q *Queries) GetFlowAgentLogs(ctx context.Context, flowID int64) ([... constant getSubtaskAgentLogs (line 136) | getSubtaskAgentLogs = `-- name: GetSubtaskAgentLogs :many method GetSubtaskAgentLogs (line 146) | func (q *Queries) GetSubtaskAgentLogs(ctx context.Context, subtaskID sql... constant getTaskAgentLogs (line 179) | getTaskAgentLogs = `-- name: GetTaskAgentLogs :many method GetTaskAgentLogs (line 189) | func (q *Queries) GetTaskAgentLogs(ctx context.Context, taskID sql.NullI... constant getUserFlowAgentLogs (line 222) | getUserFlowAgentLogs = `-- name: GetUserFlowAgentLogs :many type GetUserFlowAgentLogsParams (line 232) | type GetUserFlowAgentLogsParams struct method GetUserFlowAgentLogs (line 237) | func (q *Queries) GetUserFlowAgentLogs(ctx context.Context, arg GetUserF... FILE: backend/pkg/database/analytics.sql.go constant getAssistantsCountForFlow (line 15) | getAssistantsCountForFlow = `-- name: GetAssistantsCountForFlow :one method GetAssistantsCountForFlow (line 22) | func (q *Queries) GetAssistantsCountForFlow(ctx context.Context, flowID ... constant getFlowsForPeriodLast3Months (line 29) | getFlowsForPeriodLast3Months = `-- name: GetFlowsForPeriodLast3Months :many type GetFlowsForPeriodLast3MonthsRow (line 36) | type GetFlowsForPeriodLast3MonthsRow struct method GetFlowsForPeriodLast3Months (line 42) | func (q *Queries) GetFlowsForPeriodLast3Months(ctx context.Context, user... constant getFlowsForPeriodLastMonth (line 65) | getFlowsForPeriodLastMonth = `-- name: GetFlowsForPeriodLastMonth :many type GetFlowsForPeriodLastMonthRow (line 72) | type GetFlowsForPeriodLastMonthRow struct method GetFlowsForPeriodLastMonth (line 78) | func (q *Queries) GetFlowsForPeriodLastMonth(ctx context.Context, userID... constant getFlowsForPeriodLastWeek (line 101) | getFlowsForPeriodLastWeek = `-- name: GetFlowsForPeriodLastWeek :many type GetFlowsForPeriodLastWeekRow (line 108) | type GetFlowsForPeriodLastWeekRow struct method GetFlowsForPeriodLastWeek (line 114) | func (q *Queries) GetFlowsForPeriodLastWeek(ctx context.Context, userID ... constant getMsgchainsForFlow (line 137) | getMsgchainsForFlow = `-- name: GetMsgchainsForFlow :many type GetMsgchainsForFlowRow (line 144) | type GetMsgchainsForFlowRow struct method GetMsgchainsForFlow (line 156) | func (q *Queries) GetMsgchainsForFlow(ctx context.Context, flowID int64)... constant getSubtasksForTasks (line 188) | getSubtasksForTasks = `-- name: GetSubtasksForTasks :many type GetSubtasksForTasksRow (line 195) | type GetSubtasksForTasksRow struct method GetSubtasksForTasks (line 205) | func (q *Queries) GetSubtasksForTasks(ctx context.Context, taskIds []int... constant getTasksForFlow (line 235) | getTasksForFlow = `-- name: GetTasksForFlow :many type GetTasksForFlowRow (line 242) | type GetTasksForFlowRow struct method GetTasksForFlow (line 250) | func (q *Queries) GetTasksForFlow(ctx context.Context, flowID int64) ([]... constant getToolcallsForFlow (line 278) | getToolcallsForFlow = `-- name: GetToolcallsForFlow :many type GetToolcallsForFlowRow (line 290) | type GetToolcallsForFlowRow struct method GetToolcallsForFlow (line 302) | func (q *Queries) GetToolcallsForFlow(ctx context.Context, flowID int64)... FILE: backend/pkg/database/api_token_with_secret.go type APITokenWithSecret (line 3) | type APITokenWithSecret struct FILE: backend/pkg/database/api_tokens.sql.go constant createAPIToken (line 13) | createAPIToken = `-- name: CreateAPIToken :one type CreateAPITokenParams (line 27) | type CreateAPITokenParams struct method CreateAPIToken (line 36) | func (q *Queries) CreateAPIToken(ctx context.Context, arg CreateAPIToken... constant deleteAPIToken (line 61) | deleteAPIToken = `-- name: DeleteAPIToken :one method DeleteAPIToken (line 68) | func (q *Queries) DeleteAPIToken(ctx context.Context, id int64) (ApiToke... constant deleteUserAPIToken (line 86) | deleteUserAPIToken = `-- name: DeleteUserAPIToken :one type DeleteUserAPITokenParams (line 93) | type DeleteUserAPITokenParams struct method DeleteUserAPIToken (line 98) | func (q *Queries) DeleteUserAPIToken(ctx context.Context, arg DeleteUser... constant deleteUserAPITokenByTokenID (line 116) | deleteUserAPITokenByTokenID = `-- name: DeleteUserAPITokenByTokenID :one type DeleteUserAPITokenByTokenIDParams (line 123) | type DeleteUserAPITokenByTokenIDParams struct method DeleteUserAPITokenByTokenID (line 128) | func (q *Queries) DeleteUserAPITokenByTokenID(ctx context.Context, arg D... constant getAPIToken (line 146) | getAPIToken = `-- name: GetAPIToken :one method GetAPIToken (line 153) | func (q *Queries) GetAPIToken(ctx context.Context, id int64) (ApiToken, ... constant getAPITokenByTokenID (line 171) | getAPITokenByTokenID = `-- name: GetAPITokenByTokenID :one method GetAPITokenByTokenID (line 178) | func (q *Queries) GetAPITokenByTokenID(ctx context.Context, tokenID stri... constant getAPITokens (line 196) | getAPITokens = `-- name: GetAPITokens :many method GetAPITokens (line 204) | func (q *Queries) GetAPITokens(ctx context.Context) ([]ApiToken, error) { constant getUserAPIToken (line 238) | getUserAPIToken = `-- name: GetUserAPIToken :one type GetUserAPITokenParams (line 246) | type GetUserAPITokenParams struct method GetUserAPIToken (line 251) | func (q *Queries) GetUserAPIToken(ctx context.Context, arg GetUserAPITok... constant getUserAPITokenByTokenID (line 269) | getUserAPITokenByTokenID = `-- name: GetUserAPITokenByTokenID :one type GetUserAPITokenByTokenIDParams (line 277) | type GetUserAPITokenByTokenIDParams struct method GetUserAPITokenByTokenID (line 282) | func (q *Queries) GetUserAPITokenByTokenID(ctx context.Context, arg GetU... constant getUserAPITokens (line 300) | getUserAPITokens = `-- name: GetUserAPITokens :many method GetUserAPITokens (line 309) | func (q *Queries) GetUserAPITokens(ctx context.Context, userID int64) ([... constant updateAPIToken (line 343) | updateAPIToken = `-- name: UpdateAPIToken :one type UpdateAPITokenParams (line 350) | type UpdateAPITokenParams struct method UpdateAPIToken (line 356) | func (q *Queries) UpdateAPIToken(ctx context.Context, arg UpdateAPIToken... constant updateUserAPIToken (line 374) | updateUserAPIToken = `-- name: UpdateUserAPIToken :one type UpdateUserAPITokenParams (line 381) | type UpdateUserAPITokenParams struct method UpdateUserAPIToken (line 388) | func (q *Queries) UpdateUserAPIToken(ctx context.Context, arg UpdateUser... FILE: backend/pkg/database/assistantlogs.sql.go constant createAssistantLog (line 13) | createAssistantLog = `-- name: CreateAssistantLog :one type CreateAssistantLogParams (line 27) | type CreateAssistantLogParams struct method CreateAssistantLog (line 35) | func (q *Queries) CreateAssistantLog(ctx context.Context, arg CreateAssi... constant createResultAssistantLog (line 58) | createResultAssistantLog = `-- name: CreateResultAssistantLog :one type CreateResultAssistantLogParams (line 74) | type CreateResultAssistantLogParams struct method CreateResultAssistantLog (line 84) | func (q *Queries) CreateResultAssistantLog(ctx context.Context, arg Crea... constant deleteFlowAssistantLog (line 109) | deleteFlowAssistantLog = `-- name: DeleteFlowAssistantLog :exec method DeleteFlowAssistantLog (line 114) | func (q *Queries) DeleteFlowAssistantLog(ctx context.Context, id int64) ... constant getFlowAssistantLog (line 119) | getFlowAssistantLog = `-- name: GetFlowAssistantLog :one method GetFlowAssistantLog (line 128) | func (q *Queries) GetFlowAssistantLog(ctx context.Context, id int64) (As... constant getFlowAssistantLogs (line 145) | getFlowAssistantLogs = `-- name: GetFlowAssistantLogs :many type GetFlowAssistantLogsParams (line 155) | type GetFlowAssistantLogsParams struct method GetFlowAssistantLogs (line 160) | func (q *Queries) GetFlowAssistantLogs(ctx context.Context, arg GetFlowA... constant getUserFlowAssistantLogs (line 193) | getUserFlowAssistantLogs = `-- name: GetUserFlowAssistantLogs :many type GetUserFlowAssistantLogsParams (line 204) | type GetUserFlowAssistantLogsParams struct method GetUserFlowAssistantLogs (line 210) | func (q *Queries) GetUserFlowAssistantLogs(ctx context.Context, arg GetU... constant updateAssistantLog (line 243) | updateAssistantLog = `-- name: UpdateAssistantLog :one type UpdateAssistantLogParams (line 250) | type UpdateAssistantLogParams struct method UpdateAssistantLog (line 259) | func (q *Queries) UpdateAssistantLog(ctx context.Context, arg UpdateAssi... constant updateAssistantLogContent (line 283) | updateAssistantLogContent = `-- name: UpdateAssistantLogContent :one type UpdateAssistantLogContentParams (line 290) | type UpdateAssistantLogContentParams struct method UpdateAssistantLogContent (line 297) | func (q *Queries) UpdateAssistantLogContent(ctx context.Context, arg Upd... constant updateAssistantLogResult (line 319) | updateAssistantLogResult = `-- name: UpdateAssistantLogResult :one type UpdateAssistantLogResultParams (line 326) | type UpdateAssistantLogResultParams struct method UpdateAssistantLogResult (line 332) | func (q *Queries) UpdateAssistantLogResult(ctx context.Context, arg Upda... FILE: backend/pkg/database/assistants.sql.go constant createAssistant (line 14) | createAssistant = `-- name: CreateAssistant :one type CreateAssistantParams (line 23) | type CreateAssistantParams struct method CreateAssistant (line 36) | func (q *Queries) CreateAssistant(ctx context.Context, arg CreateAssista... constant deleteAssistant (line 71) | deleteAssistant = `-- name: DeleteAssistant :one method DeleteAssistant (line 78) | func (q *Queries) DeleteAssistant(ctx context.Context, id int64) (Assist... constant getAssistant (line 102) | getAssistant = `-- name: GetAssistant :one method GetAssistant (line 109) | func (q *Queries) GetAssistant(ctx context.Context, id int64) (Assistant... constant getAssistantUseAgents (line 133) | getAssistantUseAgents = `-- name: GetAssistantUseAgents :one method GetAssistantUseAgents (line 139) | func (q *Queries) GetAssistantUseAgents(ctx context.Context, id int64) (... constant getFlowAssistant (line 146) | getFlowAssistant = `-- name: GetFlowAssistant :one type GetFlowAssistantParams (line 154) | type GetFlowAssistantParams struct method GetFlowAssistant (line 159) | func (q *Queries) GetFlowAssistant(ctx context.Context, arg GetFlowAssis... constant getFlowAssistants (line 183) | getFlowAssistants = `-- name: GetFlowAssistants :many method GetFlowAssistants (line 192) | func (q *Queries) GetFlowAssistants(ctx context.Context, flowID int64) (... constant getUserFlowAssistant (line 232) | getUserFlowAssistant = `-- name: GetUserFlowAssistant :one type GetUserFlowAssistantParams (line 241) | type GetUserFlowAssistantParams struct method GetUserFlowAssistant (line 247) | func (q *Queries) GetUserFlowAssistant(ctx context.Context, arg GetUserF... constant getUserFlowAssistants (line 271) | getUserFlowAssistants = `-- name: GetUserFlowAssistants :many type GetUserFlowAssistantsParams (line 281) | type GetUserFlowAssistantsParams struct method GetUserFlowAssistants (line 286) | func (q *Queries) GetUserFlowAssistants(ctx context.Context, arg GetUser... constant updateAssistant (line 326) | updateAssistant = `-- name: UpdateAssistant :one type UpdateAssistantParams (line 333) | type UpdateAssistantParams struct method UpdateAssistant (line 344) | func (q *Queries) UpdateAssistant(ctx context.Context, arg UpdateAssista... constant updateAssistantLanguage (line 377) | updateAssistantLanguage = `-- name: UpdateAssistantLanguage :one type UpdateAssistantLanguageParams (line 384) | type UpdateAssistantLanguageParams struct method UpdateAssistantLanguage (line 389) | func (q *Queries) UpdateAssistantLanguage(ctx context.Context, arg Updat... constant updateAssistantModel (line 413) | updateAssistantModel = `-- name: UpdateAssistantModel :one type UpdateAssistantModelParams (line 420) | type UpdateAssistantModelParams struct method UpdateAssistantModel (line 425) | func (q *Queries) UpdateAssistantModel(ctx context.Context, arg UpdateAs... constant updateAssistantStatus (line 449) | updateAssistantStatus = `-- name: UpdateAssistantStatus :one type UpdateAssistantStatusParams (line 456) | type UpdateAssistantStatusParams struct method UpdateAssistantStatus (line 461) | func (q *Queries) UpdateAssistantStatus(ctx context.Context, arg UpdateA... constant updateAssistantTitle (line 485) | updateAssistantTitle = `-- name: UpdateAssistantTitle :one type UpdateAssistantTitleParams (line 492) | type UpdateAssistantTitleParams struct method UpdateAssistantTitle (line 497) | func (q *Queries) UpdateAssistantTitle(ctx context.Context, arg UpdateAs... constant updateAssistantToolCallIDTemplate (line 521) | updateAssistantToolCallIDTemplate = `-- name: UpdateAssistantToolCallIDT... type UpdateAssistantToolCallIDTemplateParams (line 528) | type UpdateAssistantToolCallIDTemplateParams struct method UpdateAssistantToolCallIDTemplate (line 533) | func (q *Queries) UpdateAssistantToolCallIDTemplate(ctx context.Context,... constant updateAssistantUseAgents (line 557) | updateAssistantUseAgents = `-- name: UpdateAssistantUseAgents :one type UpdateAssistantUseAgentsParams (line 564) | type UpdateAssistantUseAgentsParams struct method UpdateAssistantUseAgents (line 569) | func (q *Queries) UpdateAssistantUseAgents(ctx context.Context, arg Upda... FILE: backend/pkg/database/containers.sql.go constant createContainer (line 13) | createContainer = `-- name: CreateContainer :one type CreateContainerParams (line 31) | type CreateContainerParams struct method CreateContainer (line 41) | func (q *Queries) CreateContainer(ctx context.Context, arg CreateContain... constant getContainers (line 67) | getContainers = `-- name: GetContainers :many method GetContainers (line 76) | func (q *Queries) GetContainers(ctx context.Context) ([]Container, error) { constant getFlowContainers (line 110) | getFlowContainers = `-- name: GetFlowContainers :many method GetFlowContainers (line 119) | func (q *Queries) GetFlowContainers(ctx context.Context, flowID int64) (... constant getFlowPrimaryContainer (line 153) | getFlowPrimaryContainer = `-- name: GetFlowPrimaryContainer :one method GetFlowPrimaryContainer (line 163) | func (q *Queries) GetFlowPrimaryContainer(ctx context.Context, flowID in... constant getRunningContainers (line 181) | getRunningContainers = `-- name: GetRunningContainers :many method GetRunningContainers (line 190) | func (q *Queries) GetRunningContainers(ctx context.Context) ([]Container... constant getUserContainers (line 224) | getUserContainers = `-- name: GetUserContainers :many method GetUserContainers (line 234) | func (q *Queries) GetUserContainers(ctx context.Context, userID int64) (... constant getUserFlowContainers (line 268) | getUserFlowContainers = `-- name: GetUserFlowContainers :many type GetUserFlowContainersParams (line 278) | type GetUserFlowContainersParams struct method GetUserFlowContainers (line 283) | func (q *Queries) GetUserFlowContainers(ctx context.Context, arg GetUser... constant updateContainerImage (line 317) | updateContainerImage = `-- name: UpdateContainerImage :one type UpdateContainerImageParams (line 324) | type UpdateContainerImageParams struct method UpdateContainerImage (line 329) | func (q *Queries) UpdateContainerImage(ctx context.Context, arg UpdateCo... constant updateContainerLocalDir (line 347) | updateContainerLocalDir = `-- name: UpdateContainerLocalDir :one type UpdateContainerLocalDirParams (line 354) | type UpdateContainerLocalDirParams struct method UpdateContainerLocalDir (line 359) | func (q *Queries) UpdateContainerLocalDir(ctx context.Context, arg Updat... constant updateContainerLocalID (line 377) | updateContainerLocalID = `-- name: UpdateContainerLocalID :one type UpdateContainerLocalIDParams (line 384) | type UpdateContainerLocalIDParams struct method UpdateContainerLocalID (line 389) | func (q *Queries) UpdateContainerLocalID(ctx context.Context, arg Update... constant updateContainerStatus (line 407) | updateContainerStatus = `-- name: UpdateContainerStatus :one type UpdateContainerStatusParams (line 414) | type UpdateContainerStatusParams struct method UpdateContainerStatus (line 419) | func (q *Queries) UpdateContainerStatus(ctx context.Context, arg UpdateC... constant updateContainerStatusLocalID (line 437) | updateContainerStatusLocalID = `-- name: UpdateContainerStatusLocalID :one type UpdateContainerStatusLocalIDParams (line 444) | type UpdateContainerStatusLocalIDParams struct method UpdateContainerStatusLocalID (line 450) | func (q *Queries) UpdateContainerStatusLocalID(ctx context.Context, arg ... FILE: backend/pkg/database/converter/analytics.go function CalculateSubtaskDuration (line 19) | func CalculateSubtaskDuration(subtask database.Subtask, msgchains []data... type SubtaskDurationInfo (line 53) | type SubtaskDurationInfo struct function CalculateSubtasksWithOverlapCompensation (line 61) | func CalculateSubtasksWithOverlapCompensation(subtasks []database.Subtas... function CalculateTaskDuration (line 133) | func CalculateTaskDuration(task database.Task, subtasks []database.Subta... function getMsgchainDuration (line 154) | func getMsgchainDuration(msgchains []database.Msgchain, msgType database... function sumMsgchainsDuration (line 175) | func sumMsgchainsDuration(msgchains []database.Msgchain, msgType databas... function CalculateFlowDuration (line 190) | func CalculateFlowDuration(tasks []database.Task, subtasksMap map[int64]... function CountFinishedToolcalls (line 215) | func CountFinishedToolcalls(toolcalls []database.Toolcall) int { function CountFinishedToolcallsForSubtask (line 226) | func CountFinishedToolcallsForSubtask(toolcalls []database.Toolcall, sub... function CountFinishedToolcallsForTask (line 239) | func CountFinishedToolcallsForTask(toolcalls []database.Toolcall, taskID... function BuildFlowExecutionStats (line 266) | func BuildFlowExecutionStats(flowID int64, flowTitle string, tasks []dat... FILE: backend/pkg/database/converter/analytics_test.go function makeSubtask (line 13) | func makeSubtask(id int64, status database.SubtaskStatus, createdAt, upd... function makeMsgchain (line 24) | func makeMsgchain(id int64, msgType database.MsgchainType, taskID int64,... function makeToolcall (line 39) | func makeToolcall(id int64, status database.ToolcallStatus, taskID, subt... function TestCalculateSubtaskDuration_CreatedStatus (line 63) | func TestCalculateSubtaskDuration_CreatedStatus(t *testing.T) { function TestCalculateSubtaskDuration_WaitingStatus (line 74) | func TestCalculateSubtaskDuration_WaitingStatus(t *testing.T) { function TestCalculateSubtaskDuration_FinishedStatus (line 85) | func TestCalculateSubtaskDuration_FinishedStatus(t *testing.T) { function TestCalculateSubtaskDuration_WithMsgchainValidation (line 96) | func TestCalculateSubtaskDuration_WithMsgchainValidation(t *testing.T) { function TestCalculateSubtasksWithOverlapCompensation_NoOverlap (line 118) | func TestCalculateSubtasksWithOverlapCompensation_NoOverlap(t *testing.T) { function TestCalculateSubtasksWithOverlapCompensation_WithOverlap (line 145) | func TestCalculateSubtasksWithOverlapCompensation_WithOverlap(t *testing... function TestCalculateSubtasksWithOverlapCompensation_IgnoresCreated (line 177) | func TestCalculateSubtasksWithOverlapCompensation_IgnoresCreated(t *test... function TestCalculateTaskDuration_OnlySubtasks (line 211) | func TestCalculateTaskDuration_OnlySubtasks(t *testing.T) { function TestCalculateTaskDuration_WithGenerator (line 227) | func TestCalculateTaskDuration_WithGenerator(t *testing.T) { function TestCalculateTaskDuration_WithRefiner (line 247) | func TestCalculateTaskDuration_WithRefiner(t *testing.T) { function TestCountFinishedToolcalls (line 271) | func TestCountFinishedToolcalls(t *testing.T) { function TestCountFinishedToolcallsForSubtask (line 288) | func TestCountFinishedToolcallsForSubtask(t *testing.T) { function TestCountFinishedToolcallsForTask (line 306) | func TestCountFinishedToolcallsForTask(t *testing.T) { function TestCalculateFlowDuration_WithTasks (line 326) | func TestCalculateFlowDuration_WithTasks(t *testing.T) { function TestCalculateFlowDuration_WithAssistantMsgchains (line 353) | func TestCalculateFlowDuration_WithAssistantMsgchains(t *testing.T) { function TestCalculateFlowDuration_IgnoresMsgchainsWithTaskOrSubtask (line 391) | func TestCalculateFlowDuration_IgnoresMsgchainsWithTaskOrSubtask(t *test... function TestSubtasksSumEqualsTaskSubtasksPart (line 451) | func TestSubtasksSumEqualsTaskSubtasksPart(t *testing.T) { function TestCompensation_ExtremeBatchCreation (line 484) | func TestCompensation_ExtremeBatchCreation(t *testing.T) { function TestCompensation_MixedStatus (line 518) | func TestCompensation_MixedStatus(t *testing.T) { function TestCompensation_WithMsgchainValidation (line 553) | func TestCompensation_WithMsgchainValidation(t *testing.T) { function TestBuildFlowExecutionStats_CompleteFlow (line 591) | func TestBuildFlowExecutionStats_CompleteFlow(t *testing.T) { function TestBuildFlowExecutionStats_MathematicalConsistency (line 670) | func TestBuildFlowExecutionStats_MathematicalConsistency(t *testing.T) { function TestBuildFlowExecutionStats_MultipleTasksWithRefiner (line 736) | func TestBuildFlowExecutionStats_MultipleTasksWithRefiner(t *testing.T) { FILE: backend/pkg/database/converter/converter.go function ConvertFlows (line 17) | func ConvertFlows(flows []database.Flow, containers []database.Container... function ConvertFlow (line 31) | func ConvertFlow(flow database.Flow, containers []database.Container) *m... function ConvertContainers (line 47) | func ConvertContainers(containers []database.Container) []*model.Terminal { function ConvertContainer (line 56) | func ConvertContainer(container database.Container) *model.Terminal { function ConvertTasks (line 67) | func ConvertTasks(tasks []database.Task, subtasks []database.Subtask) []... function ConvertSubtasks (line 81) | func ConvertSubtasks(subtasks []database.Subtask) []*model.Subtask { function ConvertTask (line 90) | func ConvertTask(task database.Task, subtasks []database.Subtask) *model... function ConvertSubtask (line 104) | func ConvertSubtask(subtask database.Subtask) *model.Subtask { function ConvertFlowAssistant (line 117) | func ConvertFlowAssistant(flow database.Flow, containers []database.Cont... function ConvertAssistants (line 124) | func ConvertAssistants(assistants []database.Assistant) []*model.Assista... function ConvertAssistant (line 133) | func ConvertAssistant(assistant database.Assistant) *model.Assistant { function ConvertScreenshots (line 150) | func ConvertScreenshots(screenshots []database.Screenshot) []*model.Scre... function ConvertScreenshot (line 159) | func ConvertScreenshot(screenshot database.Screenshot) *model.Screenshot { function ConvertTerminalLogs (line 171) | func ConvertTerminalLogs(logs []database.Termlog) []*model.TerminalLog { function ConvertTerminalLog (line 180) | func ConvertTerminalLog(log database.Termlog) *model.TerminalLog { function ConvertMessageLogs (line 193) | func ConvertMessageLogs(logs []database.Msglog) []*model.MessageLog { function ConvertMessageLog (line 202) | func ConvertMessageLog(log database.Msglog) *model.MessageLog { function ConvertPrompts (line 217) | func ConvertPrompts(prompts []database.Prompt) []*model.UserPrompt { function ConvertAgentLogs (line 232) | func ConvertAgentLogs(logs []database.Agentlog) []*model.AgentLog { function ConvertAgentLog (line 241) | func ConvertAgentLog(log database.Agentlog) *model.AgentLog { function ConvertSearchLogs (line 255) | func ConvertSearchLogs(logs []database.Searchlog) []*model.SearchLog { function ConvertSearchLog (line 264) | func ConvertSearchLog(log database.Searchlog) *model.SearchLog { function ConvertVectorStoreLogs (line 279) | func ConvertVectorStoreLogs(logs []database.Vecstorelog) []*model.Vector... function ConvertVectorStoreLog (line 288) | func ConvertVectorStoreLog(log database.Vecstorelog) *model.VectorStoreL... function ConvertAssistantLogs (line 304) | func ConvertAssistantLogs(logs []database.Assistantlog) []*model.Assista... function ConvertAssistantLog (line 313) | func ConvertAssistantLog(log database.Assistantlog, appendPart bool) *mo... function ConvertDefaultPrompt (line 328) | func ConvertDefaultPrompt(prompt *templates.Prompt) *model.DefaultPrompt { function ConvertAgentPrompt (line 340) | func ConvertAgentPrompt(prompt *templates.AgentPrompt) *model.AgentPrompt { function ConvertAgentPrompts (line 350) | func ConvertAgentPrompts(prompts *templates.AgentPrompts) *model.AgentPr... function ConvertDefaultPrompts (line 361) | func ConvertDefaultPrompts(prompts *templates.DefaultPrompts) *model.Def... function ConvertPrompt (line 397) | func ConvertPrompt(prompt database.Prompt) *model.UserPrompt { function ConvertUserPreferences (line 407) | func ConvertUserPreferences(pref database.UserPreference) *model.UserPre... function ConvertAPIToken (line 429) | func ConvertAPIToken(token database.ApiToken) *model.APIToken { function ConvertAPITokenRemoveSecret (line 448) | func ConvertAPITokenRemoveSecret(token database.APITokenWithSecret) *mod... function ConvertAPITokenWithSecret (line 467) | func ConvertAPITokenWithSecret(token database.APITokenWithSecret) *model... function ConvertAPITokens (line 487) | func ConvertAPITokens(tokens []database.ApiToken) []*model.APIToken { function ConvertModels (line 495) | func ConvertModels(models pconfig.ModelsConfig) []*model.ModelConfig { function ConvertProvider (line 527) | func ConvertProvider(prv database.Provider, cfg *pconfig.ProviderConfig)... function ConvertProviderConfigToGqlModel (line 538) | func ConvertProviderConfigToGqlModel(cfg *pconfig.ProviderConfig) *model... function ConvertAgentConfigToGqlModel (line 560) | func ConvertAgentConfigToGqlModel(ac *pconfig.AgentConfig) *model.AgentC... function ConvertAgentsConfigFromGqlModel (line 623) | func ConvertAgentsConfigFromGqlModel(cfg *model.AgentsConfig) *pconfig.P... function ConvertAgentConfigFromGqlModel (line 654) | func ConvertAgentConfigFromGqlModel(ac *model.AgentConfig) *pconfig.Agen... function ConvertTestResult (line 724) | func ConvertTestResult(result testdata.TestResult) *model.TestResult { function ConvertTestResults (line 751) | func ConvertTestResults(results tester.AgentTestResults) *model.AgentTes... function ConvertProviderTestResults (line 762) | func ConvertProviderTestResults(results tester.ProviderTestResults) *mod... type UsageStatsRow (line 781) | type UsageStatsRow interface type ToolcallsStatsRow (line 796) | type ToolcallsStatsRow interface type FlowsStatsRow (line 804) | type FlowsStatsRow interface type FlowStatsRow (line 809) | type FlowStatsRow interface function ConvertUsageStats (line 814) | func ConvertUsageStats[T UsageStatsRow](stats T) *model.UsageStats { function ConvertDailyUsageStats (line 877) | func ConvertDailyUsageStats(stats []database.GetUsageStatsByDayLastWeekR... function ConvertDailyUsageStatsMonth (line 889) | func ConvertDailyUsageStatsMonth(stats []database.GetUsageStatsByDayLast... function ConvertDailyUsageStatsQuarter (line 901) | func ConvertDailyUsageStatsQuarter(stats []database.GetUsageStatsByDayLa... function ConvertProviderUsageStats (line 913) | func ConvertProviderUsageStats(stats []database.GetUsageStatsByProviderR... function ConvertModelUsageStats (line 925) | func ConvertModelUsageStats(stats []database.GetUsageStatsByModelRow) []... function ConvertAgentTypeUsageStats (line 938) | func ConvertAgentTypeUsageStats(stats []database.GetUsageStatsByTypeRow)... function ConvertAgentTypeUsageStatsForFlow (line 950) | func ConvertAgentTypeUsageStatsForFlow(stats []database.GetUsageStatsByT... function ConvertToolcallsStats (line 964) | func ConvertToolcallsStats[T ToolcallsStatsRow](stats T) *model.Toolcall... function ConvertDailyToolcallsStatsWeek (line 987) | func ConvertDailyToolcallsStatsWeek(stats []database.GetToolcallsStatsBy... function ConvertDailyToolcallsStatsMonth (line 1002) | func ConvertDailyToolcallsStatsMonth(stats []database.GetToolcallsStatsB... function ConvertDailyToolcallsStatsQuarter (line 1017) | func ConvertDailyToolcallsStatsQuarter(stats []database.GetToolcallsStat... function isAgentTool (line 1032) | func isAgentTool(functionName string) bool { function ConvertFunctionToolcallsStats (line 1043) | func ConvertFunctionToolcallsStats(stats []database.GetToolcallsStatsByF... function ConvertFunctionToolcallsStatsForFlow (line 1058) | func ConvertFunctionToolcallsStatsForFlow(stats []database.GetToolcallsS... function ConvertFlowsStats (line 1075) | func ConvertFlowsStats[T FlowsStatsRow](stats T) *model.FlowsStats { function ConvertFlowStats (line 1093) | func ConvertFlowStats[T FlowStatsRow](stats T) *model.FlowStats { function ConvertDailyFlowsStatsWeek (line 1110) | func ConvertDailyFlowsStatsWeek(stats []database.GetFlowsStatsByDayLastW... function ConvertDailyFlowsStatsMonth (line 1127) | func ConvertDailyFlowsStatsMonth(stats []database.GetFlowsStatsByDayLast... function ConvertDailyFlowsStatsQuarter (line 1144) | func ConvertDailyFlowsStatsQuarter(stats []database.GetFlowsStatsByDayLa... FILE: backend/pkg/database/converter/converter_test.go function TestIsAgentTool (line 7) | func TestIsAgentTool(t *testing.T) { FILE: backend/pkg/database/database.go function StringToNullString (line 17) | func StringToNullString(s string) sql.NullString { function PtrStringToNullString (line 21) | func PtrStringToNullString(s *string) sql.NullString { function NullStringToPtrString (line 28) | func NullStringToPtrString(s sql.NullString) *string { function Int64ToNullInt64 (line 35) | func Int64ToNullInt64(i *int64) sql.NullInt64 { function Uint64ToNullInt64 (line 42) | func Uint64ToNullInt64(i *uint64) sql.NullInt64 { function NullInt64ToInt64 (line 49) | func NullInt64ToInt64(i sql.NullInt64) *int64 { function TimeToNullTime (line 56) | func TimeToNullTime(t time.Time) sql.NullTime { function PtrTimeToNullTime (line 60) | func PtrTimeToNullTime(t *time.Time) sql.NullTime { function SanitizeUTF8 (line 67) | func SanitizeUTF8(msg string) string { type GormLogger (line 96) | type GormLogger struct method Print (line 98) | func (*GormLogger) Print(v ...interface{}) { function NewGorm (line 126) | func NewGorm(dsn, dbType string) (*gorm.DB, error) { FILE: backend/pkg/database/db.go type DBTX (line 12) | type DBTX interface function New (line 19) | func New(db DBTX) *Queries { type Queries (line 23) | type Queries struct method WithTx (line 27) | func (q *Queries) WithTx(tx *sql.Tx) *Queries { FILE: backend/pkg/database/flows.sql.go constant createFlow (line 15) | createFlow = `-- name: CreateFlow :one type CreateFlowParams (line 25) | type CreateFlowParams struct method CreateFlow (line 37) | func (q *Queries) CreateFlow(ctx context.Context, arg CreateFlowParams) ... constant deleteFlow (line 69) | deleteFlow = `-- name: DeleteFlow :one method DeleteFlow (line 76) | func (q *Queries) DeleteFlow(ctx context.Context, id int64) (Flow, error) { constant getFlow (line 98) | getFlow = `-- name: GetFlow :one method GetFlow (line 105) | func (q *Queries) GetFlow(ctx context.Context, id int64) (Flow, error) { constant getFlowStats (line 127) | getFlowStats = `-- name: GetFlowStats :one type GetFlowStatsRow (line 140) | type GetFlowStatsRow struct method GetFlowStats (line 148) | func (q *Queries) GetFlowStats(ctx context.Context, id int64) (GetFlowSt... constant getFlows (line 155) | getFlows = `-- name: GetFlows :many method GetFlows (line 163) | func (q *Queries) GetFlows(ctx context.Context) ([]Flow, error) { constant getFlowsStatsByDayLast3Months (line 201) | getFlowsStatsByDayLast3Months = `-- name: GetFlowsStatsByDayLast3Months ... type GetFlowsStatsByDayLast3MonthsRow (line 217) | type GetFlowsStatsByDayLast3MonthsRow struct method GetFlowsStatsByDayLast3Months (line 226) | func (q *Queries) GetFlowsStatsByDayLast3Months(ctx context.Context, use... constant getFlowsStatsByDayLastMonth (line 255) | getFlowsStatsByDayLastMonth = `-- name: GetFlowsStatsByDayLastMonth :many type GetFlowsStatsByDayLastMonthRow (line 271) | type GetFlowsStatsByDayLastMonthRow struct method GetFlowsStatsByDayLastMonth (line 280) | func (q *Queries) GetFlowsStatsByDayLastMonth(ctx context.Context, userI... constant getFlowsStatsByDayLastWeek (line 309) | getFlowsStatsByDayLastWeek = `-- name: GetFlowsStatsByDayLastWeek :many type GetFlowsStatsByDayLastWeekRow (line 325) | type GetFlowsStatsByDayLastWeekRow struct method GetFlowsStatsByDayLastWeek (line 334) | func (q *Queries) GetFlowsStatsByDayLastWeek(ctx context.Context, userID... constant getUserFlow (line 363) | getUserFlow = `-- name: GetUserFlow :one type GetUserFlowParams (line 371) | type GetUserFlowParams struct method GetUserFlow (line 376) | func (q *Queries) GetUserFlow(ctx context.Context, arg GetUserFlowParams... constant getUserFlows (line 398) | getUserFlows = `-- name: GetUserFlows :many method GetUserFlows (line 407) | func (q *Queries) GetUserFlows(ctx context.Context, userID int64) ([]Flo... constant getUserTotalFlowsStats (line 445) | getUserTotalFlowsStats = `-- name: GetUserTotalFlowsStats :one type GetUserTotalFlowsStatsRow (line 458) | type GetUserTotalFlowsStatsRow struct method GetUserTotalFlowsStats (line 466) | func (q *Queries) GetUserTotalFlowsStats(ctx context.Context, userID int... constant updateFlow (line 478) | updateFlow = `-- name: UpdateFlow :one type UpdateFlowParams (line 485) | type UpdateFlowParams struct method UpdateFlow (line 495) | func (q *Queries) UpdateFlow(ctx context.Context, arg UpdateFlowParams) ... constant updateFlowLanguage (line 525) | updateFlowLanguage = `-- name: UpdateFlowLanguage :one type UpdateFlowLanguageParams (line 532) | type UpdateFlowLanguageParams struct method UpdateFlowLanguage (line 537) | func (q *Queries) UpdateFlowLanguage(ctx context.Context, arg UpdateFlow... constant updateFlowStatus (line 559) | updateFlowStatus = `-- name: UpdateFlowStatus :one type UpdateFlowStatusParams (line 566) | type UpdateFlowStatusParams struct method UpdateFlowStatus (line 571) | func (q *Queries) UpdateFlowStatus(ctx context.Context, arg UpdateFlowSt... constant updateFlowTitle (line 593) | updateFlowTitle = `-- name: UpdateFlowTitle :one type UpdateFlowTitleParams (line 600) | type UpdateFlowTitleParams struct method UpdateFlowTitle (line 605) | func (q *Queries) UpdateFlowTitle(ctx context.Context, arg UpdateFlowTit... constant updateFlowToolCallIDTemplate (line 627) | updateFlowToolCallIDTemplate = `-- name: UpdateFlowToolCallIDTemplate :one type UpdateFlowToolCallIDTemplateParams (line 634) | type UpdateFlowToolCallIDTemplateParams struct method UpdateFlowToolCallIDTemplate (line 639) | func (q *Queries) UpdateFlowToolCallIDTemplate(ctx context.Context, arg ... FILE: backend/pkg/database/models.go type AssistantStatus (line 14) | type AssistantStatus method Scan (line 24) | func (e *AssistantStatus) Scan(src interface{}) error { constant AssistantStatusCreated (line 17) | AssistantStatusCreated AssistantStatus = "created" constant AssistantStatusRunning (line 18) | AssistantStatusRunning AssistantStatus = "running" constant AssistantStatusWaiting (line 19) | AssistantStatusWaiting AssistantStatus = "waiting" constant AssistantStatusFinished (line 20) | AssistantStatusFinished AssistantStatus = "finished" constant AssistantStatusFailed (line 21) | AssistantStatusFailed AssistantStatus = "failed" type NullAssistantStatus (line 36) | type NullAssistantStatus struct method Scan (line 42) | func (ns *NullAssistantStatus) Scan(value interface{}) error { method Value (line 52) | func (ns NullAssistantStatus) Value() (driver.Value, error) { type ContainerStatus (line 59) | type ContainerStatus method Scan (line 69) | func (e *ContainerStatus) Scan(src interface{}) error { constant ContainerStatusStarting (line 62) | ContainerStatusStarting ContainerStatus = "starting" constant ContainerStatusRunning (line 63) | ContainerStatusRunning ContainerStatus = "running" constant ContainerStatusStopped (line 64) | ContainerStatusStopped ContainerStatus = "stopped" constant ContainerStatusDeleted (line 65) | ContainerStatusDeleted ContainerStatus = "deleted" constant ContainerStatusFailed (line 66) | ContainerStatusFailed ContainerStatus = "failed" type NullContainerStatus (line 81) | type NullContainerStatus struct method Scan (line 87) | func (ns *NullContainerStatus) Scan(value interface{}) error { method Value (line 97) | func (ns NullContainerStatus) Value() (driver.Value, error) { type ContainerType (line 104) | type ContainerType method Scan (line 111) | func (e *ContainerType) Scan(src interface{}) error { constant ContainerTypePrimary (line 107) | ContainerTypePrimary ContainerType = "primary" constant ContainerTypeSecondary (line 108) | ContainerTypeSecondary ContainerType = "secondary" type NullContainerType (line 123) | type NullContainerType struct method Scan (line 129) | func (ns *NullContainerType) Scan(value interface{}) error { method Value (line 139) | func (ns NullContainerType) Value() (driver.Value, error) { type FlowStatus (line 146) | type FlowStatus method Scan (line 156) | func (e *FlowStatus) Scan(src interface{}) error { constant FlowStatusCreated (line 149) | FlowStatusCreated FlowStatus = "created" constant FlowStatusRunning (line 150) | FlowStatusRunning FlowStatus = "running" constant FlowStatusWaiting (line 151) | FlowStatusWaiting FlowStatus = "waiting" constant FlowStatusFinished (line 152) | FlowStatusFinished FlowStatus = "finished" constant FlowStatusFailed (line 153) | FlowStatusFailed FlowStatus = "failed" type NullFlowStatus (line 168) | type NullFlowStatus struct method Scan (line 174) | func (ns *NullFlowStatus) Scan(value interface{}) error { method Value (line 184) | func (ns NullFlowStatus) Value() (driver.Value, error) { type MsgchainType (line 191) | type MsgchainType method Scan (line 211) | func (e *MsgchainType) Scan(src interface{}) error { constant MsgchainTypePrimaryAgent (line 194) | MsgchainTypePrimaryAgent MsgchainType = "primary_agent" constant MsgchainTypeReporter (line 195) | MsgchainTypeReporter MsgchainType = "reporter" constant MsgchainTypeGenerator (line 196) | MsgchainTypeGenerator MsgchainType = "generator" constant MsgchainTypeRefiner (line 197) | MsgchainTypeRefiner MsgchainType = "refiner" constant MsgchainTypeReflector (line 198) | MsgchainTypeReflector MsgchainType = "reflector" constant MsgchainTypeEnricher (line 199) | MsgchainTypeEnricher MsgchainType = "enricher" constant MsgchainTypeAdviser (line 200) | MsgchainTypeAdviser MsgchainType = "adviser" constant MsgchainTypeCoder (line 201) | MsgchainTypeCoder MsgchainType = "coder" constant MsgchainTypeMemorist (line 202) | MsgchainTypeMemorist MsgchainType = "memorist" constant MsgchainTypeSearcher (line 203) | MsgchainTypeSearcher MsgchainType = "searcher" constant MsgchainTypeInstaller (line 204) | MsgchainTypeInstaller MsgchainType = "installer" constant MsgchainTypePentester (line 205) | MsgchainTypePentester MsgchainType = "pentester" constant MsgchainTypeSummarizer (line 206) | MsgchainTypeSummarizer MsgchainType = "summarizer" constant MsgchainTypeToolCallFixer (line 207) | MsgchainTypeToolCallFixer MsgchainType = "tool_call_fixer" constant MsgchainTypeAssistant (line 208) | MsgchainTypeAssistant MsgchainType = "assistant" type NullMsgchainType (line 223) | type NullMsgchainType struct method Scan (line 229) | func (ns *NullMsgchainType) Scan(value interface{}) error { method Value (line 239) | func (ns NullMsgchainType) Value() (driver.Value, error) { type MsglogResultFormat (line 246) | type MsglogResultFormat method Scan (line 254) | func (e *MsglogResultFormat) Scan(src interface{}) error { constant MsglogResultFormatPlain (line 249) | MsglogResultFormatPlain MsglogResultFormat = "plain" constant MsglogResultFormatMarkdown (line 250) | MsglogResultFormatMarkdown MsglogResultFormat = "markdown" constant MsglogResultFormatTerminal (line 251) | MsglogResultFormatTerminal MsglogResultFormat = "terminal" type NullMsglogResultFormat (line 266) | type NullMsglogResultFormat struct method Scan (line 272) | func (ns *NullMsglogResultFormat) Scan(value interface{}) error { method Value (line 282) | func (ns NullMsglogResultFormat) Value() (driver.Value, error) { type MsglogType (line 289) | type MsglogType method Scan (line 305) | func (e *MsglogType) Scan(src interface{}) error { constant MsglogTypeAnswer (line 292) | MsglogTypeAnswer MsglogType = "answer" constant MsglogTypeReport (line 293) | MsglogTypeReport MsglogType = "report" constant MsglogTypeThoughts (line 294) | MsglogTypeThoughts MsglogType = "thoughts" constant MsglogTypeBrowser (line 295) | MsglogTypeBrowser MsglogType = "browser" constant MsglogTypeTerminal (line 296) | MsglogTypeTerminal MsglogType = "terminal" constant MsglogTypeFile (line 297) | MsglogTypeFile MsglogType = "file" constant MsglogTypeSearch (line 298) | MsglogTypeSearch MsglogType = "search" constant MsglogTypeAdvice (line 299) | MsglogTypeAdvice MsglogType = "advice" constant MsglogTypeAsk (line 300) | MsglogTypeAsk MsglogType = "ask" constant MsglogTypeInput (line 301) | MsglogTypeInput MsglogType = "input" constant MsglogTypeDone (line 302) | MsglogTypeDone MsglogType = "done" type NullMsglogType (line 317) | type NullMsglogType struct method Scan (line 323) | func (ns *NullMsglogType) Scan(value interface{}) error { method Value (line 333) | func (ns NullMsglogType) Value() (driver.Value, error) { type PromptType (line 340) | type PromptType method Scan (line 384) | func (e *PromptType) Scan(src interface{}) error { constant PromptTypePrimaryAgent (line 343) | PromptTypePrimaryAgent PromptType = "primary_agent" constant PromptTypeAssistant (line 344) | PromptTypeAssistant PromptType = "assistant" constant PromptTypePentester (line 345) | PromptTypePentester PromptType = "pentester" constant PromptTypeQuestionPentester (line 346) | PromptTypeQuestionPentester PromptType = "question_pentester" constant PromptTypeCoder (line 347) | PromptTypeCoder PromptType = "coder" constant PromptTypeQuestionCoder (line 348) | PromptTypeQuestionCoder PromptType = "question_coder" constant PromptTypeInstaller (line 349) | PromptTypeInstaller PromptType = "installer" constant PromptTypeQuestionInstaller (line 350) | PromptTypeQuestionInstaller PromptType = "question_installer" constant PromptTypeSearcher (line 351) | PromptTypeSearcher PromptType = "searcher" constant PromptTypeQuestionSearcher (line 352) | PromptTypeQuestionSearcher PromptType = "question_searcher" constant PromptTypeMemorist (line 353) | PromptTypeMemorist PromptType = "memorist" constant PromptTypeQuestionMemorist (line 354) | PromptTypeQuestionMemorist PromptType = "question_memorist" constant PromptTypeAdviser (line 355) | PromptTypeAdviser PromptType = "adviser" constant PromptTypeQuestionAdviser (line 356) | PromptTypeQuestionAdviser PromptType = "question_adviser" constant PromptTypeGenerator (line 357) | PromptTypeGenerator PromptType = "generator" constant PromptTypeSubtasksGenerator (line 358) | PromptTypeSubtasksGenerator PromptType = "subtasks_generator" constant PromptTypeRefiner (line 359) | PromptTypeRefiner PromptType = "refiner" constant PromptTypeSubtasksRefiner (line 360) | PromptTypeSubtasksRefiner PromptType = "subtasks_refiner" constant PromptTypeReporter (line 361) | PromptTypeReporter PromptType = "reporter" constant PromptTypeTaskReporter (line 362) | PromptTypeTaskReporter PromptType = "task_reporter" constant PromptTypeReflector (line 363) | PromptTypeReflector PromptType = "reflector" constant PromptTypeQuestionReflector (line 364) | PromptTypeQuestionReflector PromptType = "question_reflector" constant PromptTypeEnricher (line 365) | PromptTypeEnricher PromptType = "enricher" constant PromptTypeQuestionEnricher (line 366) | PromptTypeQuestionEnricher PromptType = "question_enricher" constant PromptTypeToolcallFixer (line 367) | PromptTypeToolcallFixer PromptType = "toolcall_fixer" constant PromptTypeInputToolcallFixer (line 368) | PromptTypeInputToolcallFixer PromptType = "input_toolcall_fixer" constant PromptTypeSummarizer (line 369) | PromptTypeSummarizer PromptType = "summarizer" constant PromptTypeImageChooser (line 370) | PromptTypeImageChooser PromptType = "image_chooser" constant PromptTypeLanguageChooser (line 371) | PromptTypeLanguageChooser PromptType = "language_chooser" constant PromptTypeFlowDescriptor (line 372) | PromptTypeFlowDescriptor PromptType = "flow_descriptor" constant PromptTypeTaskDescriptor (line 373) | PromptTypeTaskDescriptor PromptType = "task_descriptor" constant PromptTypeExecutionLogs (line 374) | PromptTypeExecutionLogs PromptType = "execution_logs" constant PromptTypeFullExecutionContext (line 375) | PromptTypeFullExecutionContext PromptType = "full_execution_context" constant PromptTypeShortExecutionContext (line 376) | PromptTypeShortExecutionContext PromptType = "short_execution_context" constant PromptTypeToolCallIDCollector (line 377) | PromptTypeToolCallIDCollector PromptType = "tool_call_id_collector" constant PromptTypeToolCallIDDetector (line 378) | PromptTypeToolCallIDDetector PromptType = "tool_call_id_detector" constant PromptTypeQuestionExecutionMonitor (line 379) | PromptTypeQuestionExecutionMonitor PromptType = "question_execution_moni... constant PromptTypeQuestionTaskPlanner (line 380) | PromptTypeQuestionTaskPlanner PromptType = "question_task_planner" constant PromptTypeTaskAssignmentWrapper (line 381) | PromptTypeTaskAssignmentWrapper PromptType = "task_assignment_wrapper" type NullPromptType (line 396) | type NullPromptType struct method Scan (line 402) | func (ns *NullPromptType) Scan(value interface{}) error { method Value (line 412) | func (ns NullPromptType) Value() (driver.Value, error) { type ProviderType (line 419) | type ProviderType method Scan (line 434) | func (e *ProviderType) Scan(src interface{}) error { constant ProviderTypeOpenai (line 422) | ProviderTypeOpenai ProviderType = "openai" constant ProviderTypeAnthropic (line 423) | ProviderTypeAnthropic ProviderType = "anthropic" constant ProviderTypeGemini (line 424) | ProviderTypeGemini ProviderType = "gemini" constant ProviderTypeBedrock (line 425) | ProviderTypeBedrock ProviderType = "bedrock" constant ProviderTypeOllama (line 426) | ProviderTypeOllama ProviderType = "ollama" constant ProviderTypeCustom (line 427) | ProviderTypeCustom ProviderType = "custom" constant ProviderTypeDeepseek (line 428) | ProviderTypeDeepseek ProviderType = "deepseek" constant ProviderTypeGlm (line 429) | ProviderTypeGlm ProviderType = "glm" constant ProviderTypeKimi (line 430) | ProviderTypeKimi ProviderType = "kimi" constant ProviderTypeQwen (line 431) | ProviderTypeQwen ProviderType = "qwen" type NullProviderType (line 446) | type NullProviderType struct method Scan (line 452) | func (ns *NullProviderType) Scan(value interface{}) error { method Value (line 462) | func (ns NullProviderType) Value() (driver.Value, error) { type SearchengineType (line 469) | type SearchengineType method Scan (line 482) | func (e *SearchengineType) Scan(src interface{}) error { constant SearchengineTypeGoogle (line 472) | SearchengineTypeGoogle SearchengineType = "google" constant SearchengineTypeTavily (line 473) | SearchengineTypeTavily SearchengineType = "tavily" constant SearchengineTypeTraversaal (line 474) | SearchengineTypeTraversaal SearchengineType = "traversaal" constant SearchengineTypeBrowser (line 475) | SearchengineTypeBrowser SearchengineType = "browser" constant SearchengineTypeDuckduckgo (line 476) | SearchengineTypeDuckduckgo SearchengineType = "duckduckgo" constant SearchengineTypePerplexity (line 477) | SearchengineTypePerplexity SearchengineType = "perplexity" constant SearchengineTypeSearxng (line 478) | SearchengineTypeSearxng SearchengineType = "searxng" constant SearchengineTypeSploitus (line 479) | SearchengineTypeSploitus SearchengineType = "sploitus" type NullSearchengineType (line 494) | type NullSearchengineType struct method Scan (line 500) | func (ns *NullSearchengineType) Scan(value interface{}) error { method Value (line 510) | func (ns NullSearchengineType) Value() (driver.Value, error) { type SubtaskStatus (line 517) | type SubtaskStatus method Scan (line 527) | func (e *SubtaskStatus) Scan(src interface{}) error { constant SubtaskStatusCreated (line 520) | SubtaskStatusCreated SubtaskStatus = "created" constant SubtaskStatusRunning (line 521) | SubtaskStatusRunning SubtaskStatus = "running" constant SubtaskStatusWaiting (line 522) | SubtaskStatusWaiting SubtaskStatus = "waiting" constant SubtaskStatusFinished (line 523) | SubtaskStatusFinished SubtaskStatus = "finished" constant SubtaskStatusFailed (line 524) | SubtaskStatusFailed SubtaskStatus = "failed" type NullSubtaskStatus (line 539) | type NullSubtaskStatus struct method Scan (line 545) | func (ns *NullSubtaskStatus) Scan(value interface{}) error { method Value (line 555) | func (ns NullSubtaskStatus) Value() (driver.Value, error) { type TaskStatus (line 562) | type TaskStatus method Scan (line 572) | func (e *TaskStatus) Scan(src interface{}) error { constant TaskStatusCreated (line 565) | TaskStatusCreated TaskStatus = "created" constant TaskStatusRunning (line 566) | TaskStatusRunning TaskStatus = "running" constant TaskStatusWaiting (line 567) | TaskStatusWaiting TaskStatus = "waiting" constant TaskStatusFinished (line 568) | TaskStatusFinished TaskStatus = "finished" constant TaskStatusFailed (line 569) | TaskStatusFailed TaskStatus = "failed" type NullTaskStatus (line 584) | type NullTaskStatus struct method Scan (line 590) | func (ns *NullTaskStatus) Scan(value interface{}) error { method Value (line 600) | func (ns NullTaskStatus) Value() (driver.Value, error) { type TermlogType (line 607) | type TermlogType method Scan (line 615) | func (e *TermlogType) Scan(src interface{}) error { constant TermlogTypeStdin (line 610) | TermlogTypeStdin TermlogType = "stdin" constant TermlogTypeStdout (line 611) | TermlogTypeStdout TermlogType = "stdout" constant TermlogTypeStderr (line 612) | TermlogTypeStderr TermlogType = "stderr" type NullTermlogType (line 627) | type NullTermlogType struct method Scan (line 633) | func (ns *NullTermlogType) Scan(value interface{}) error { method Value (line 643) | func (ns NullTermlogType) Value() (driver.Value, error) { type TokenStatus (line 650) | type TokenStatus method Scan (line 657) | func (e *TokenStatus) Scan(src interface{}) error { constant TokenStatusActive (line 653) | TokenStatusActive TokenStatus = "active" constant TokenStatusRevoked (line 654) | TokenStatusRevoked TokenStatus = "revoked" type NullTokenStatus (line 669) | type NullTokenStatus struct method Scan (line 675) | func (ns *NullTokenStatus) Scan(value interface{}) error { method Value (line 685) | func (ns NullTokenStatus) Value() (driver.Value, error) { type ToolcallStatus (line 692) | type ToolcallStatus method Scan (line 701) | func (e *ToolcallStatus) Scan(src interface{}) error { constant ToolcallStatusReceived (line 695) | ToolcallStatusReceived ToolcallStatus = "received" constant ToolcallStatusRunning (line 696) | ToolcallStatusRunning ToolcallStatus = "running" constant ToolcallStatusFinished (line 697) | ToolcallStatusFinished ToolcallStatus = "finished" constant ToolcallStatusFailed (line 698) | ToolcallStatusFailed ToolcallStatus = "failed" type NullToolcallStatus (line 713) | type NullToolcallStatus struct method Scan (line 719) | func (ns *NullToolcallStatus) Scan(value interface{}) error { method Value (line 729) | func (ns NullToolcallStatus) Value() (driver.Value, error) { type UserStatus (line 736) | type UserStatus method Scan (line 744) | func (e *UserStatus) Scan(src interface{}) error { constant UserStatusCreated (line 739) | UserStatusCreated UserStatus = "created" constant UserStatusActive (line 740) | UserStatusActive UserStatus = "active" constant UserStatusBlocked (line 741) | UserStatusBlocked UserStatus = "blocked" type NullUserStatus (line 756) | type NullUserStatus struct method Scan (line 762) | func (ns *NullUserStatus) Scan(value interface{}) error { method Value (line 772) | func (ns NullUserStatus) Value() (driver.Value, error) { type UserType (line 779) | type UserType method Scan (line 786) | func (e *UserType) Scan(src interface{}) error { constant UserTypeLocal (line 782) | UserTypeLocal UserType = "local" constant UserTypeOauth (line 783) | UserTypeOauth UserType = "oauth" type NullUserType (line 798) | type NullUserType struct method Scan (line 804) | func (ns *NullUserType) Scan(value interface{}) error { method Value (line 814) | func (ns NullUserType) Value() (driver.Value, error) { type VecstoreActionType (line 821) | type VecstoreActionType method Scan (line 828) | func (e *VecstoreActionType) Scan(src interface{}) error { constant VecstoreActionTypeRetrieve (line 824) | VecstoreActionTypeRetrieve VecstoreActionType = "retrieve" constant VecstoreActionTypeStore (line 825) | VecstoreActionTypeStore VecstoreActionType = "store" type NullVecstoreActionType (line 840) | type NullVecstoreActionType struct method Scan (line 846) | func (ns *NullVecstoreActionType) Scan(value interface{}) error { method Value (line 856) | func (ns NullVecstoreActionType) Value() (driver.Value, error) { type Agentlog (line 863) | type Agentlog struct type ApiToken (line 875) | type ApiToken struct type Assistant (line 888) | type Assistant struct type Assistantlog (line 907) | type Assistantlog struct type Container (line 919) | type Container struct type Flow (line 932) | type Flow struct type Msgchain (line 949) | type Msgchain struct type Msglog (line 969) | type Msglog struct type Privilege (line 982) | type Privilege struct type Prompt (line 988) | type Prompt struct type Provider (line 997) | type Provider struct type Role (line 1008) | type Role struct type Screenshot (line 1013) | type Screenshot struct type Searchlog (line 1023) | type Searchlog struct type Subtask (line 1036) | type Subtask struct type Task (line 1048) | type Task struct type Termlog (line 1059) | type Termlog struct type Toolcall (line 1070) | type Toolcall struct type User (line 1085) | type User struct type UserPreference (line 1099) | type UserPreference struct type Vecstorelog (line 1107) | type Vecstorelog struct FILE: backend/pkg/database/msgchains.sql.go constant createMsgChain (line 15) | createMsgChain = `-- name: CreateMsgChain :one type CreateMsgChainParams (line 37) | type CreateMsgChainParams struct method CreateMsgChain (line 54) | func (q *Queries) CreateMsgChain(ctx context.Context, arg CreateMsgChain... constant getAllFlowsUsageStats (line 94) | getAllFlowsUsageStats = `-- name: GetAllFlowsUsageStats :many type GetAllFlowsUsageStatsRow (line 112) | type GetAllFlowsUsageStatsRow struct method GetAllFlowsUsageStats (line 122) | func (q *Queries) GetAllFlowsUsageStats(ctx context.Context) ([]GetAllFl... constant getFlowMsgChains (line 153) | getFlowMsgChains = `-- name: GetFlowMsgChains :many method GetFlowMsgChains (line 163) | func (q *Queries) GetFlowMsgChains(ctx context.Context, flowID int64) ([... constant getFlowTaskTypeLastMsgChain (line 204) | getFlowTaskTypeLastMsgChain = `-- name: GetFlowTaskTypeLastMsgChain :one type GetFlowTaskTypeLastMsgChainParams (line 213) | type GetFlowTaskTypeLastMsgChainParams struct method GetFlowTaskTypeLastMsgChain (line 219) | func (q *Queries) GetFlowTaskTypeLastMsgChain(ctx context.Context, arg G... constant getFlowTypeMsgChains (line 244) | getFlowTypeMsgChains = `-- name: GetFlowTypeMsgChains :many type GetFlowTypeMsgChainsParams (line 254) | type GetFlowTypeMsgChainsParams struct method GetFlowTypeMsgChains (line 259) | func (q *Queries) GetFlowTypeMsgChains(ctx context.Context, arg GetFlowT... constant getFlowUsageStats (line 300) | getFlowUsageStats = `-- name: GetFlowUsageStats :one type GetFlowUsageStatsRow (line 315) | type GetFlowUsageStatsRow struct method GetFlowUsageStats (line 324) | func (q *Queries) GetFlowUsageStats(ctx context.Context, flowID int64) (... constant getMsgChain (line 338) | getMsgChain = `-- name: GetMsgChain :one method GetMsgChain (line 345) | func (q *Queries) GetMsgChain(ctx context.Context, id int64) (Msgchain, ... constant getSubtaskMsgChains (line 370) | getSubtaskMsgChains = `-- name: GetSubtaskMsgChains :many method GetSubtaskMsgChains (line 378) | func (q *Queries) GetSubtaskMsgChains(ctx context.Context, subtaskID sql... constant getSubtaskPrimaryMsgChains (line 419) | getSubtaskPrimaryMsgChains = `-- name: GetSubtaskPrimaryMsgChains :many method GetSubtaskPrimaryMsgChains (line 427) | func (q *Queries) GetSubtaskPrimaryMsgChains(ctx context.Context, subtas... constant getSubtaskTypeMsgChains (line 468) | getSubtaskTypeMsgChains = `-- name: GetSubtaskTypeMsgChains :many type GetSubtaskTypeMsgChainsParams (line 476) | type GetSubtaskTypeMsgChainsParams struct method GetSubtaskTypeMsgChains (line 481) | func (q *Queries) GetSubtaskTypeMsgChains(ctx context.Context, arg GetSu... constant getSubtaskUsageStats (line 522) | getSubtaskUsageStats = `-- name: GetSubtaskUsageStats :one type GetSubtaskUsageStatsRow (line 537) | type GetSubtaskUsageStatsRow struct method GetSubtaskUsageStats (line 546) | func (q *Queries) GetSubtaskUsageStats(ctx context.Context, subtaskID sq... constant getTaskMsgChains (line 560) | getTaskMsgChains = `-- name: GetTaskMsgChains :many method GetTaskMsgChains (line 569) | func (q *Queries) GetTaskMsgChains(ctx context.Context, taskID sql.NullI... constant getTaskPrimaryMsgChainIDs (line 610) | getTaskPrimaryMsgChainIDs = `-- name: GetTaskPrimaryMsgChainIDs :many type GetTaskPrimaryMsgChainIDsRow (line 619) | type GetTaskPrimaryMsgChainIDsRow struct method GetTaskPrimaryMsgChainIDs (line 624) | func (q *Queries) GetTaskPrimaryMsgChainIDs(ctx context.Context, taskID ... constant getTaskPrimaryMsgChains (line 647) | getTaskPrimaryMsgChains = `-- name: GetTaskPrimaryMsgChains :many method GetTaskPrimaryMsgChains (line 656) | func (q *Queries) GetTaskPrimaryMsgChains(ctx context.Context, taskID sq... constant getTaskTypeMsgChains (line 697) | getTaskTypeMsgChains = `-- name: GetTaskTypeMsgChains :many type GetTaskTypeMsgChainsParams (line 706) | type GetTaskTypeMsgChainsParams struct method GetTaskTypeMsgChains (line 711) | func (q *Queries) GetTaskTypeMsgChains(ctx context.Context, arg GetTaskT... constant getTaskUsageStats (line 752) | getTaskUsageStats = `-- name: GetTaskUsageStats :one type GetTaskUsageStatsRow (line 767) | type GetTaskUsageStatsRow struct method GetTaskUsageStats (line 776) | func (q *Queries) GetTaskUsageStats(ctx context.Context, taskID sql.Null... constant getUsageStatsByDayLast3Months (line 790) | getUsageStatsByDayLast3Months = `-- name: GetUsageStatsByDayLast3Months ... type GetUsageStatsByDayLast3MonthsRow (line 808) | type GetUsageStatsByDayLast3MonthsRow struct method GetUsageStatsByDayLast3Months (line 818) | func (q *Queries) GetUsageStatsByDayLast3Months(ctx context.Context, use... constant getUsageStatsByDayLastMonth (line 849) | getUsageStatsByDayLastMonth = `-- name: GetUsageStatsByDayLastMonth :many type GetUsageStatsByDayLastMonthRow (line 867) | type GetUsageStatsByDayLastMonthRow struct method GetUsageStatsByDayLastMonth (line 877) | func (q *Queries) GetUsageStatsByDayLastMonth(ctx context.Context, userI... constant getUsageStatsByDayLastWeek (line 908) | getUsageStatsByDayLastWeek = `-- name: GetUsageStatsByDayLastWeek :many type GetUsageStatsByDayLastWeekRow (line 926) | type GetUsageStatsByDayLastWeekRow struct method GetUsageStatsByDayLastWeek (line 936) | func (q *Queries) GetUsageStatsByDayLastWeek(ctx context.Context, userID... constant getUsageStatsByModel (line 967) | getUsageStatsByModel = `-- name: GetUsageStatsByModel :many type GetUsageStatsByModelRow (line 986) | type GetUsageStatsByModelRow struct method GetUsageStatsByModel (line 997) | func (q *Queries) GetUsageStatsByModel(ctx context.Context, userID int64... constant getUsageStatsByProvider (line 1029) | getUsageStatsByProvider = `-- name: GetUsageStatsByProvider :many type GetUsageStatsByProviderRow (line 1047) | type GetUsageStatsByProviderRow struct method GetUsageStatsByProvider (line 1057) | func (q *Queries) GetUsageStatsByProvider(ctx context.Context, userID in... constant getUsageStatsByType (line 1088) | getUsageStatsByType = `-- name: GetUsageStatsByType :many type GetUsageStatsByTypeRow (line 1106) | type GetUsageStatsByTypeRow struct method GetUsageStatsByType (line 1116) | func (q *Queries) GetUsageStatsByType(ctx context.Context, userID int64)... constant getUsageStatsByTypeForFlow (line 1147) | getUsageStatsByTypeForFlow = `-- name: GetUsageStatsByTypeForFlow :many type GetUsageStatsByTypeForFlowRow (line 1165) | type GetUsageStatsByTypeForFlowRow struct method GetUsageStatsByTypeForFlow (line 1175) | func (q *Queries) GetUsageStatsByTypeForFlow(ctx context.Context, flowID... constant getUserTotalUsageStats (line 1206) | getUserTotalUsageStats = `-- name: GetUserTotalUsageStats :one type GetUserTotalUsageStatsRow (line 1221) | type GetUserTotalUsageStatsRow struct method GetUserTotalUsageStats (line 1230) | func (q *Queries) GetUserTotalUsageStats(ctx context.Context, userID int... constant updateMsgChain (line 1244) | updateMsgChain = `-- name: UpdateMsgChain :one type UpdateMsgChainParams (line 1251) | type UpdateMsgChainParams struct method UpdateMsgChain (line 1257) | func (q *Queries) UpdateMsgChain(ctx context.Context, arg UpdateMsgChain... constant updateMsgChainUsage (line 1282) | updateMsgChainUsage = `-- name: UpdateMsgChainUsage :one type UpdateMsgChainUsageParams (line 1296) | type UpdateMsgChainUsageParams struct method UpdateMsgChainUsage (line 1307) | func (q *Queries) UpdateMsgChainUsage(ctx context.Context, arg UpdateMsg... FILE: backend/pkg/database/msglogs.sql.go constant createMsgLog (line 13) | createMsgLog = `-- name: CreateMsgLog :one type CreateMsgLogParams (line 28) | type CreateMsgLogParams struct method CreateMsgLog (line 37) | func (q *Queries) CreateMsgLog(ctx context.Context, arg CreateMsgLogPara... constant createResultMsgLog (line 62) | createResultMsgLog = `-- name: CreateResultMsgLog :one type CreateResultMsgLogParams (line 79) | type CreateResultMsgLogParams struct method CreateResultMsgLog (line 90) | func (q *Queries) CreateResultMsgLog(ctx context.Context, arg CreateResu... constant getFlowMsgLogs (line 117) | getFlowMsgLogs = `-- name: GetFlowMsgLogs :many method GetFlowMsgLogs (line 126) | func (q *Queries) GetFlowMsgLogs(ctx context.Context, flowID int64) ([]M... constant getSubtaskMsgLogs (line 160) | getSubtaskMsgLogs = `-- name: GetSubtaskMsgLogs :many method GetSubtaskMsgLogs (line 171) | func (q *Queries) GetSubtaskMsgLogs(ctx context.Context, subtaskID sql.N... constant getTaskMsgLogs (line 205) | getTaskMsgLogs = `-- name: GetTaskMsgLogs :many method GetTaskMsgLogs (line 215) | func (q *Queries) GetTaskMsgLogs(ctx context.Context, taskID sql.NullInt... constant getUserFlowMsgLogs (line 249) | getUserFlowMsgLogs = `-- name: GetUserFlowMsgLogs :many type GetUserFlowMsgLogsParams (line 259) | type GetUserFlowMsgLogsParams struct method GetUserFlowMsgLogs (line 264) | func (q *Queries) GetUserFlowMsgLogs(ctx context.Context, arg GetUserFlo... constant updateMsgLogResult (line 298) | updateMsgLogResult = `-- name: UpdateMsgLogResult :one type UpdateMsgLogResultParams (line 305) | type UpdateMsgLogResultParams struct method UpdateMsgLogResult (line 311) | func (q *Queries) UpdateMsgLogResult(ctx context.Context, arg UpdateMsgL... FILE: backend/pkg/database/prompts.sql.go constant createUserPrompt (line 12) | createUserPrompt = `-- name: CreateUserPrompt :one type CreateUserPromptParams (line 23) | type CreateUserPromptParams struct method CreateUserPrompt (line 29) | func (q *Queries) CreateUserPrompt(ctx context.Context, arg CreateUserPr... constant deletePrompt (line 43) | deletePrompt = `-- name: DeletePrompt :exec method DeletePrompt (line 48) | func (q *Queries) DeletePrompt(ctx context.Context, id int64) error { constant deleteUserPrompt (line 53) | deleteUserPrompt = `-- name: DeleteUserPrompt :exec type DeleteUserPromptParams (line 58) | type DeleteUserPromptParams struct method DeleteUserPrompt (line 63) | func (q *Queries) DeleteUserPrompt(ctx context.Context, arg DeleteUserPr... constant getPrompts (line 68) | getPrompts = `-- name: GetPrompts :many method GetPrompts (line 75) | func (q *Queries) GetPrompts(ctx context.Context) ([]Prompt, error) { constant getUserPrompt (line 105) | getUserPrompt = `-- name: GetUserPrompt :one type GetUserPromptParams (line 113) | type GetUserPromptParams struct method GetUserPrompt (line 118) | func (q *Queries) GetUserPrompt(ctx context.Context, arg GetUserPromptPa... constant getUserPromptByType (line 132) | getUserPromptByType = `-- name: GetUserPromptByType :one type GetUserPromptByTypeParams (line 141) | type GetUserPromptByTypeParams struct method GetUserPromptByType (line 146) | func (q *Queries) GetUserPromptByType(ctx context.Context, arg GetUserPr... constant getUserPrompts (line 160) | getUserPrompts = `-- name: GetUserPrompts :many method GetUserPrompts (line 169) | func (q *Queries) GetUserPrompts(ctx context.Context, userID int64) ([]P... constant updatePrompt (line 199) | updatePrompt = `-- name: UpdatePrompt :one type UpdatePromptParams (line 206) | type UpdatePromptParams struct method UpdatePrompt (line 211) | func (q *Queries) UpdatePrompt(ctx context.Context, arg UpdatePromptPara... constant updateUserPrompt (line 225) | updateUserPrompt = `-- name: UpdateUserPrompt :one type UpdateUserPromptParams (line 232) | type UpdateUserPromptParams struct method UpdateUserPrompt (line 238) | func (q *Queries) UpdateUserPrompt(ctx context.Context, arg UpdateUserPr... constant updateUserPromptByType (line 252) | updateUserPromptByType = `-- name: UpdateUserPromptByType :one type UpdateUserPromptByTypeParams (line 259) | type UpdateUserPromptByTypeParams struct method UpdateUserPromptByType (line 265) | func (q *Queries) UpdateUserPromptByType(ctx context.Context, arg Update... FILE: backend/pkg/database/providers.sql.go constant createProvider (line 13) | createProvider = `-- name: CreateProvider :one type CreateProviderParams (line 25) | type CreateProviderParams struct method CreateProvider (line 32) | func (q *Queries) CreateProvider(ctx context.Context, arg CreateProvider... constant deleteProvider (line 53) | deleteProvider = `-- name: DeleteProvider :one method DeleteProvider (line 60) | func (q *Queries) DeleteProvider(ctx context.Context, id int64) (Provide... constant deleteUserProvider (line 76) | deleteUserProvider = `-- name: DeleteUserProvider :one type DeleteUserProviderParams (line 83) | type DeleteUserProviderParams struct method DeleteUserProvider (line 88) | func (q *Queries) DeleteUserProvider(ctx context.Context, arg DeleteUser... constant getProvider (line 104) | getProvider = `-- name: GetProvider :one method GetProvider (line 111) | func (q *Queries) GetProvider(ctx context.Context, id int64) (Provider, ... constant getProviders (line 127) | getProviders = `-- name: GetProviders :many method GetProviders (line 135) | func (q *Queries) GetProviders(ctx context.Context) ([]Provider, error) { constant getProvidersByType (line 167) | getProvidersByType = `-- name: GetProvidersByType :many method GetProvidersByType (line 175) | func (q *Queries) GetProvidersByType(ctx context.Context, type_ Provider... constant getUserProvider (line 207) | getUserProvider = `-- name: GetUserProvider :one type GetUserProviderParams (line 215) | type GetUserProviderParams struct method GetUserProvider (line 220) | func (q *Queries) GetUserProvider(ctx context.Context, arg GetUserProvid... constant getUserProviderByName (line 236) | getUserProviderByName = `-- name: GetUserProviderByName :one type GetUserProviderByNameParams (line 244) | type GetUserProviderByNameParams struct method GetUserProviderByName (line 249) | func (q *Queries) GetUserProviderByName(ctx context.Context, arg GetUser... constant getUserProviders (line 265) | getUserProviders = `-- name: GetUserProviders :many method GetUserProviders (line 274) | func (q *Queries) GetUserProviders(ctx context.Context, userID int64) ([... constant getUserProvidersByType (line 306) | getUserProvidersByType = `-- name: GetUserProvidersByType :many type GetUserProvidersByTypeParams (line 315) | type GetUserProvidersByTypeParams struct method GetUserProvidersByType (line 320) | func (q *Queries) GetUserProvidersByType(ctx context.Context, arg GetUse... constant updateProvider (line 352) | updateProvider = `-- name: UpdateProvider :one type UpdateProviderParams (line 359) | type UpdateProviderParams struct method UpdateProvider (line 365) | func (q *Queries) UpdateProvider(ctx context.Context, arg UpdateProvider... constant updateUserProvider (line 381) | updateUserProvider = `-- name: UpdateUserProvider :one type UpdateUserProviderParams (line 388) | type UpdateUserProviderParams struct method UpdateUserProvider (line 395) | func (q *Queries) UpdateUserProvider(ctx context.Context, arg UpdateUser... FILE: backend/pkg/database/querier.go type Querier (line 12) | type Querier interface FILE: backend/pkg/database/roles.sql.go constant getRole (line 14) | getRole = `-- name: GetRole :one type GetRoleRow (line 27) | type GetRoleRow struct method GetRole (line 33) | func (q *Queries) GetRole(ctx context.Context, id int64) (GetRoleRow, er... constant getRoleByName (line 40) | getRoleByName = `-- name: GetRoleByName :one type GetRoleByNameRow (line 53) | type GetRoleByNameRow struct method GetRoleByName (line 59) | func (q *Queries) GetRoleByName(ctx context.Context, name string) (GetRo... constant getRoles (line 66) | getRoles = `-- name: GetRoles :many type GetRolesRow (line 79) | type GetRolesRow struct method GetRoles (line 85) | func (q *Queries) GetRoles(ctx context.Context) ([]GetRolesRow, error) { FILE: backend/pkg/database/screenshots.sql.go constant createScreenshot (line 13) | createScreenshot = `-- name: CreateScreenshot :one type CreateScreenshotParams (line 27) | type CreateScreenshotParams struct method CreateScreenshot (line 35) | func (q *Queries) CreateScreenshot(ctx context.Context, arg CreateScreen... constant getFlowScreenshots (line 56) | getFlowScreenshots = `-- name: GetFlowScreenshots :many method GetFlowScreenshots (line 65) | func (q *Queries) GetFlowScreenshots(ctx context.Context, flowID int64) ... constant getScreenshot (line 96) | getScreenshot = `-- name: GetScreenshot :one method GetScreenshot (line 103) | func (q *Queries) GetScreenshot(ctx context.Context, id int64) (Screensh... constant getSubtaskScreenshots (line 118) | getSubtaskScreenshots = `-- name: GetSubtaskScreenshots :many method GetSubtaskScreenshots (line 128) | func (q *Queries) GetSubtaskScreenshots(ctx context.Context, subtaskID s... constant getTaskScreenshots (line 159) | getTaskScreenshots = `-- name: GetTaskScreenshots :many method GetTaskScreenshots (line 169) | func (q *Queries) GetTaskScreenshots(ctx context.Context, taskID sql.Nul... constant getUserFlowScreenshots (line 200) | getUserFlowScreenshots = `-- name: GetUserFlowScreenshots :many type GetUserFlowScreenshotsParams (line 210) | type GetUserFlowScreenshotsParams struct method GetUserFlowScreenshots (line 215) | func (q *Queries) GetUserFlowScreenshots(ctx context.Context, arg GetUse... FILE: backend/pkg/database/searchlogs.sql.go constant createSearchLog (line 13) | createSearchLog = `-- name: CreateSearchLog :one type CreateSearchLogParams (line 30) | type CreateSearchLogParams struct method CreateSearchLog (line 41) | func (q *Queries) CreateSearchLog(ctx context.Context, arg CreateSearchL... constant getFlowSearchLog (line 68) | getFlowSearchLog = `-- name: GetFlowSearchLog :one type GetFlowSearchLogParams (line 76) | type GetFlowSearchLogParams struct method GetFlowSearchLog (line 81) | func (q *Queries) GetFlowSearchLog(ctx context.Context, arg GetFlowSearc... constant getFlowSearchLogs (line 99) | getFlowSearchLogs = `-- name: GetFlowSearchLogs :many method GetFlowSearchLogs (line 108) | func (q *Queries) GetFlowSearchLogs(ctx context.Context, flowID int64) (... constant getSubtaskSearchLogs (line 142) | getSubtaskSearchLogs = `-- name: GetSubtaskSearchLogs :many method GetSubtaskSearchLogs (line 152) | func (q *Queries) GetSubtaskSearchLogs(ctx context.Context, subtaskID sq... constant getTaskSearchLogs (line 186) | getTaskSearchLogs = `-- name: GetTaskSearchLogs :many method GetTaskSearchLogs (line 196) | func (q *Queries) GetTaskSearchLogs(ctx context.Context, taskID sql.Null... constant getUserFlowSearchLogs (line 230) | getUserFlowSearchLogs = `-- name: GetUserFlowSearchLogs :many type GetUserFlowSearchLogsParams (line 240) | type GetUserFlowSearchLogsParams struct method GetUserFlowSearchLogs (line 245) | func (q *Queries) GetUserFlowSearchLogs(ctx context.Context, arg GetUser... FILE: backend/pkg/database/subtasks.sql.go constant createSubtask (line 14) | createSubtask = `-- name: CreateSubtask :one type CreateSubtaskParams (line 26) | type CreateSubtaskParams struct method CreateSubtask (line 33) | func (q *Queries) CreateSubtask(ctx context.Context, arg CreateSubtaskPa... constant deleteSubtask (line 55) | deleteSubtask = `-- name: DeleteSubtask :exec method DeleteSubtask (line 60) | func (q *Queries) DeleteSubtask(ctx context.Context, id int64) error { constant deleteSubtasks (line 65) | deleteSubtasks = `-- name: DeleteSubtasks :exec method DeleteSubtasks (line 70) | func (q *Queries) DeleteSubtasks(ctx context.Context, ids []int64) error { constant getFlowSubtask (line 75) | getFlowSubtask = `-- name: GetFlowSubtask :one type GetFlowSubtaskParams (line 84) | type GetFlowSubtaskParams struct method GetFlowSubtask (line 89) | func (q *Queries) GetFlowSubtask(ctx context.Context, arg GetFlowSubtask... constant getFlowSubtasks (line 106) | getFlowSubtasks = `-- name: GetFlowSubtasks :many method GetFlowSubtasks (line 116) | func (q *Queries) GetFlowSubtasks(ctx context.Context, flowID int64) ([]... constant getFlowTaskSubtasks (line 149) | getFlowTaskSubtasks = `-- name: GetFlowTaskSubtasks :many type GetFlowTaskSubtasksParams (line 159) | type GetFlowTaskSubtasksParams struct method GetFlowTaskSubtasks (line 164) | func (q *Queries) GetFlowTaskSubtasks(ctx context.Context, arg GetFlowTa... constant getSubtask (line 197) | getSubtask = `-- name: GetSubtask :one method GetSubtask (line 204) | func (q *Queries) GetSubtask(ctx context.Context, id int64) (Subtask, er... constant getTaskCompletedSubtasks (line 221) | getTaskCompletedSubtasks = `-- name: GetTaskCompletedSubtasks :many method GetTaskCompletedSubtasks (line 231) | func (q *Queries) GetTaskCompletedSubtasks(ctx context.Context, taskID i... constant getTaskPlannedSubtasks (line 264) | getTaskPlannedSubtasks = `-- name: GetTaskPlannedSubtasks :many method GetTaskPlannedSubtasks (line 274) | func (q *Queries) GetTaskPlannedSubtasks(ctx context.Context, taskID int... constant getTaskSubtasks (line 307) | getTaskSubtasks = `-- name: GetTaskSubtasks :many method GetTaskSubtasks (line 317) | func (q *Queries) GetTaskSubtasks(ctx context.Context, taskID int64) ([]... constant getUserFlowSubtasks (line 350) | getUserFlowSubtasks = `-- name: GetUserFlowSubtasks :many type GetUserFlowSubtasksParams (line 361) | type GetUserFlowSubtasksParams struct method GetUserFlowSubtasks (line 366) | func (q *Queries) GetUserFlowSubtasks(ctx context.Context, arg GetUserFl... constant getUserFlowTaskSubtasks (line 399) | getUserFlowTaskSubtasks = `-- name: GetUserFlowTaskSubtasks :many type GetUserFlowTaskSubtasksParams (line 410) | type GetUserFlowTaskSubtasksParams struct method GetUserFlowTaskSubtasks (line 416) | func (q *Queries) GetUserFlowTaskSubtasks(ctx context.Context, arg GetUs... constant updateSubtaskContext (line 449) | updateSubtaskContext = `-- name: UpdateSubtaskContext :one type UpdateSubtaskContextParams (line 456) | type UpdateSubtaskContextParams struct method UpdateSubtaskContext (line 461) | func (q *Queries) UpdateSubtaskContext(ctx context.Context, arg UpdateSu... constant updateSubtaskFailedResult (line 478) | updateSubtaskFailedResult = `-- name: UpdateSubtaskFailedResult :one type UpdateSubtaskFailedResultParams (line 485) | type UpdateSubtaskFailedResultParams struct method UpdateSubtaskFailedResult (line 490) | func (q *Queries) UpdateSubtaskFailedResult(ctx context.Context, arg Upd... constant updateSubtaskFinishedResult (line 507) | updateSubtaskFinishedResult = `-- name: UpdateSubtaskFinishedResult :one type UpdateSubtaskFinishedResultParams (line 514) | type UpdateSubtaskFinishedResultParams struct method UpdateSubtaskFinishedResult (line 519) | func (q *Queries) UpdateSubtaskFinishedResult(ctx context.Context, arg U... constant updateSubtaskResult (line 536) | updateSubtaskResult = `-- name: UpdateSubtaskResult :one type UpdateSubtaskResultParams (line 543) | type UpdateSubtaskResultParams struct method UpdateSubtaskResult (line 548) | func (q *Queries) UpdateSubtaskResult(ctx context.Context, arg UpdateSub... constant updateSubtaskStatus (line 565) | updateSubtaskStatus = `-- name: UpdateSubtaskStatus :one type UpdateSubtaskStatusParams (line 572) | type UpdateSubtaskStatusParams struct method UpdateSubtaskStatus (line 577) | func (q *Queries) UpdateSubtaskStatus(ctx context.Context, arg UpdateSub... FILE: backend/pkg/database/tasks.sql.go constant createTask (line 12) | createTask = `-- name: CreateTask :one type CreateTaskParams (line 24) | type CreateTaskParams struct method CreateTask (line 31) | func (q *Queries) CreateTask(ctx context.Context, arg CreateTaskParams) ... constant getFlowTask (line 52) | getFlowTask = `-- name: GetFlowTask :one type GetFlowTaskParams (line 60) | type GetFlowTaskParams struct method GetFlowTask (line 65) | func (q *Queries) GetFlowTask(ctx context.Context, arg GetFlowTaskParams... constant getFlowTasks (line 81) | getFlowTasks = `-- name: GetFlowTasks :many method GetFlowTasks (line 90) | func (q *Queries) GetFlowTasks(ctx context.Context, flowID int64) ([]Tas... constant getTask (line 122) | getTask = `-- name: GetTask :one method GetTask (line 129) | func (q *Queries) GetTask(ctx context.Context, id int64) (Task, error) { constant getUserFlowTask (line 145) | getUserFlowTask = `-- name: GetUserFlowTask :one type GetUserFlowTaskParams (line 154) | type GetUserFlowTaskParams struct method GetUserFlowTask (line 160) | func (q *Queries) GetUserFlowTask(ctx context.Context, arg GetUserFlowTa... constant getUserFlowTasks (line 176) | getUserFlowTasks = `-- name: GetUserFlowTasks :many type GetUserFlowTasksParams (line 186) | type GetUserFlowTasksParams struct method GetUserFlowTasks (line 191) | func (q *Queries) GetUserFlowTasks(ctx context.Context, arg GetUserFlowT... constant updateTaskFailedResult (line 223) | updateTaskFailedResult = `-- name: UpdateTaskFailedResult :one type UpdateTaskFailedResultParams (line 230) | type UpdateTaskFailedResultParams struct method UpdateTaskFailedResult (line 235) | func (q *Queries) UpdateTaskFailedResult(ctx context.Context, arg Update... constant updateTaskFinishedResult (line 251) | updateTaskFinishedResult = `-- name: UpdateTaskFinishedResult :one type UpdateTaskFinishedResultParams (line 258) | type UpdateTaskFinishedResultParams struct method UpdateTaskFinishedResult (line 263) | func (q *Queries) UpdateTaskFinishedResult(ctx context.Context, arg Upda... constant updateTaskResult (line 279) | updateTaskResult = `-- name: UpdateTaskResult :one type UpdateTaskResultParams (line 286) | type UpdateTaskResultParams struct method UpdateTaskResult (line 291) | func (q *Queries) UpdateTaskResult(ctx context.Context, arg UpdateTaskRe... constant updateTaskStatus (line 307) | updateTaskStatus = `-- name: UpdateTaskStatus :one type UpdateTaskStatusParams (line 314) | type UpdateTaskStatusParams struct method UpdateTaskStatus (line 319) | func (q *Queries) UpdateTaskStatus(ctx context.Context, arg UpdateTaskSt... FILE: backend/pkg/database/termlogs.sql.go constant createTermLog (line 13) | createTermLog = `-- name: CreateTermLog :one type CreateTermLogParams (line 28) | type CreateTermLogParams struct method CreateTermLog (line 37) | func (q *Queries) CreateTermLog(ctx context.Context, arg CreateTermLogPa... constant getContainerTermLogs (line 60) | getContainerTermLogs = `-- name: GetContainerTermLogs :many method GetContainerTermLogs (line 69) | func (q *Queries) GetContainerTermLogs(ctx context.Context, containerID ... constant getFlowTermLogs (line 101) | getFlowTermLogs = `-- name: GetFlowTermLogs :many method GetFlowTermLogs (line 110) | func (q *Queries) GetFlowTermLogs(ctx context.Context, flowID int64) ([]... constant getSubtaskTermLogs (line 142) | getSubtaskTermLogs = `-- name: GetSubtaskTermLogs :many method GetSubtaskTermLogs (line 151) | func (q *Queries) GetSubtaskTermLogs(ctx context.Context, subtaskID sql.... constant getTaskTermLogs (line 183) | getTaskTermLogs = `-- name: GetTaskTermLogs :many method GetTaskTermLogs (line 192) | func (q *Queries) GetTaskTermLogs(ctx context.Context, taskID sql.NullIn... constant getTermLog (line 224) | getTermLog = `-- name: GetTermLog :one method GetTermLog (line 231) | func (q *Queries) GetTermLog(ctx context.Context, id int64) (Termlog, er... constant getUserFlowTermLogs (line 247) | getUserFlowTermLogs = `-- name: GetUserFlowTermLogs :many type GetUserFlowTermLogsParams (line 257) | type GetUserFlowTermLogsParams struct method GetUserFlowTermLogs (line 262) | func (q *Queries) GetUserFlowTermLogs(ctx context.Context, arg GetUserFl... FILE: backend/pkg/database/toolcalls.sql.go constant createToolcall (line 15) | createToolcall = `-- name: CreateToolcall :one type CreateToolcallParams (line 30) | type CreateToolcallParams struct method CreateToolcall (line 40) | func (q *Queries) CreateToolcall(ctx context.Context, arg CreateToolcall... constant getAllFlowsToolcallsStats (line 68) | getAllFlowsToolcallsStats = `-- name: GetAllFlowsToolcallsStats :many type GetAllFlowsToolcallsStatsRow (line 82) | type GetAllFlowsToolcallsStatsRow struct method GetAllFlowsToolcallsStats (line 89) | func (q *Queries) GetAllFlowsToolcallsStats(ctx context.Context) ([]GetA... constant getCallToolcall (line 112) | getCallToolcall = `-- name: GetCallToolcall :one method GetCallToolcall (line 119) | func (q *Queries) GetCallToolcall(ctx context.Context, callID string) (T... constant getFlowToolcallsStats (line 139) | getFlowToolcallsStats = `-- name: GetFlowToolcallsStats :one type GetFlowToolcallsStatsRow (line 153) | type GetFlowToolcallsStatsRow struct method GetFlowToolcallsStats (line 160) | func (q *Queries) GetFlowToolcallsStats(ctx context.Context, flowID int6... constant getSubtaskToolcalls (line 167) | getSubtaskToolcalls = `-- name: GetSubtaskToolcalls :many method GetSubtaskToolcalls (line 178) | func (q *Queries) GetSubtaskToolcalls(ctx context.Context, subtaskID sql... constant getSubtaskToolcallsStats (line 214) | getSubtaskToolcallsStats = `-- name: GetSubtaskToolcallsStats :one type GetSubtaskToolcallsStatsRow (line 225) | type GetSubtaskToolcallsStatsRow struct method GetSubtaskToolcallsStats (line 231) | func (q *Queries) GetSubtaskToolcallsStats(ctx context.Context, subtaskI... constant getTaskToolcallsStats (line 238) | getTaskToolcallsStats = `-- name: GetTaskToolcallsStats :one type GetTaskToolcallsStatsRow (line 250) | type GetTaskToolcallsStatsRow struct method GetTaskToolcallsStats (line 256) | func (q *Queries) GetTaskToolcallsStats(ctx context.Context, taskID sql.... constant getToolcallsStatsByDayLast3Months (line 263) | getToolcallsStatsByDayLast3Months = `-- name: GetToolcallsStatsByDayLast... type GetToolcallsStatsByDayLast3MonthsRow (line 277) | type GetToolcallsStatsByDayLast3MonthsRow struct method GetToolcallsStatsByDayLast3Months (line 284) | func (q *Queries) GetToolcallsStatsByDayLast3Months(ctx context.Context,... constant getToolcallsStatsByDayLastMonth (line 307) | getToolcallsStatsByDayLastMonth = `-- name: GetToolcallsStatsByDayLastMo... type GetToolcallsStatsByDayLastMonthRow (line 321) | type GetToolcallsStatsByDayLastMonthRow struct method GetToolcallsStatsByDayLastMonth (line 328) | func (q *Queries) GetToolcallsStatsByDayLastMonth(ctx context.Context, u... constant getToolcallsStatsByDayLastWeek (line 351) | getToolcallsStatsByDayLastWeek = `-- name: GetToolcallsStatsByDayLastWee... type GetToolcallsStatsByDayLastWeekRow (line 365) | type GetToolcallsStatsByDayLastWeekRow struct method GetToolcallsStatsByDayLastWeek (line 372) | func (q *Queries) GetToolcallsStatsByDayLastWeek(ctx context.Context, us... constant getToolcallsStatsByFunction (line 395) | getToolcallsStatsByFunction = `-- name: GetToolcallsStatsByFunction :many type GetToolcallsStatsByFunctionRow (line 410) | type GetToolcallsStatsByFunctionRow struct method GetToolcallsStatsByFunction (line 418) | func (q *Queries) GetToolcallsStatsByFunction(ctx context.Context, userI... constant getToolcallsStatsByFunctionForFlow (line 446) | getToolcallsStatsByFunctionForFlow = `-- name: GetToolcallsStatsByFuncti... type GetToolcallsStatsByFunctionForFlowRow (line 461) | type GetToolcallsStatsByFunctionForFlowRow struct method GetToolcallsStatsByFunctionForFlow (line 469) | func (q *Queries) GetToolcallsStatsByFunctionForFlow(ctx context.Context... constant getUserTotalToolcallsStats (line 497) | getUserTotalToolcallsStats = `-- name: GetUserTotalToolcallsStats :one type GetUserTotalToolcallsStatsRow (line 510) | type GetUserTotalToolcallsStatsRow struct method GetUserTotalToolcallsStats (line 516) | func (q *Queries) GetUserTotalToolcallsStats(ctx context.Context, userID... constant updateToolcallFailedResult (line 523) | updateToolcallFailedResult = `-- name: UpdateToolcallFailedResult :one type UpdateToolcallFailedResultParams (line 533) | type UpdateToolcallFailedResultParams struct method UpdateToolcallFailedResult (line 539) | func (q *Queries) UpdateToolcallFailedResult(ctx context.Context, arg Up... constant updateToolcallFinishedResult (line 559) | updateToolcallFinishedResult = `-- name: UpdateToolcallFinishedResult :one type UpdateToolcallFinishedResultParams (line 569) | type UpdateToolcallFinishedResultParams struct method UpdateToolcallFinishedResult (line 575) | func (q *Queries) UpdateToolcallFinishedResult(ctx context.Context, arg ... constant updateToolcallStatus (line 595) | updateToolcallStatus = `-- name: UpdateToolcallStatus :one type UpdateToolcallStatusParams (line 604) | type UpdateToolcallStatusParams struct method UpdateToolcallStatus (line 610) | func (q *Queries) UpdateToolcallStatus(ctx context.Context, arg UpdateTo... FILE: backend/pkg/database/user_preferences.sql.go constant addFavoriteFlow (line 13) | addFavoriteFlow = `-- name: AddFavoriteFlow :one type AddFavoriteFlowParams (line 33) | type AddFavoriteFlowParams struct method AddFavoriteFlow (line 38) | func (q *Queries) AddFavoriteFlow(ctx context.Context, arg AddFavoriteFl... constant createUserPreferences (line 51) | createUserPreferences = `-- name: CreateUserPreferences :one type CreateUserPreferencesParams (line 62) | type CreateUserPreferencesParams struct method CreateUserPreferences (line 67) | func (q *Queries) CreateUserPreferences(ctx context.Context, arg CreateU... constant deleteFavoriteFlow (line 80) | deleteFavoriteFlow = `-- name: DeleteFavoriteFlow :one type DeleteFavoriteFlowParams (line 95) | type DeleteFavoriteFlowParams struct method DeleteFavoriteFlow (line 100) | func (q *Queries) DeleteFavoriteFlow(ctx context.Context, arg DeleteFavo... constant deleteUserPreferences (line 113) | deleteUserPreferences = `-- name: DeleteUserPreferences :exec method DeleteUserPreferences (line 118) | func (q *Queries) DeleteUserPreferences(ctx context.Context, userID int6... constant getUserPreferencesByUserID (line 123) | getUserPreferencesByUserID = `-- name: GetUserPreferencesByUserID :one method GetUserPreferencesByUserID (line 128) | func (q *Queries) GetUserPreferencesByUserID(ctx context.Context, userID... constant updateUserPreferences (line 141) | updateUserPreferences = `-- name: UpdateUserPreferences :one type UpdateUserPreferencesParams (line 148) | type UpdateUserPreferencesParams struct method UpdateUserPreferences (line 153) | func (q *Queries) UpdateUserPreferences(ctx context.Context, arg UpdateU... constant upsertUserPreferences (line 166) | upsertUserPreferences = `-- name: UpsertUserPreferences :one type UpsertUserPreferencesParams (line 179) | type UpsertUserPreferencesParams struct method UpsertUserPreferences (line 184) | func (q *Queries) UpsertUserPreferences(ctx context.Context, arg UpsertU... FILE: backend/pkg/database/users.sql.go constant createUser (line 15) | createUser = `-- name: CreateUser :one type CreateUserParams (line 31) | type CreateUserParams struct method CreateUser (line 41) | func (q *Queries) CreateUser(ctx context.Context, arg CreateUserParams) ... constant deleteUser (line 68) | deleteUser = `-- name: DeleteUser :exec method DeleteUser (line 73) | func (q *Queries) DeleteUser(ctx context.Context, id int64) error { constant getUser (line 78) | getUser = `-- name: GetUser :one type GetUserRow (line 92) | type GetUserRow struct method GetUser (line 108) | func (q *Queries) GetUser(ctx context.Context, id int64) (GetUserRow, er... constant getUserByHash (line 129) | getUserByHash = `-- name: GetUserByHash :one type GetUserByHashRow (line 143) | type GetUserByHashRow struct method GetUserByHash (line 159) | func (q *Queries) GetUserByHash(ctx context.Context, hash string) (GetUs... constant getUsers (line 180) | getUsers = `-- name: GetUsers :many type GetUsersRow (line 194) | type GetUsersRow struct method GetUsers (line 210) | func (q *Queries) GetUsers(ctx context.Context) ([]GetUsersRow, error) { constant updateUserName (line 247) | updateUserName = `-- name: UpdateUserName :one type UpdateUserNameParams (line 254) | type UpdateUserNameParams struct method UpdateUserName (line 259) | func (q *Queries) UpdateUserName(ctx context.Context, arg UpdateUserName... constant updateUserPassword (line 278) | updateUserPassword = `-- name: UpdateUserPassword :one type UpdateUserPasswordParams (line 285) | type UpdateUserPasswordParams struct method UpdateUserPassword (line 290) | func (q *Queries) UpdateUserPassword(ctx context.Context, arg UpdateUser... constant updateUserPasswordChangeRequired (line 309) | updateUserPasswordChangeRequired = `-- name: UpdateUserPasswordChangeReq... type UpdateUserPasswordChangeRequiredParams (line 316) | type UpdateUserPasswordChangeRequiredParams struct method UpdateUserPasswordChangeRequired (line 321) | func (q *Queries) UpdateUserPasswordChangeRequired(ctx context.Context, ... constant updateUserRole (line 340) | updateUserRole = `-- name: UpdateUserRole :one type UpdateUserRoleParams (line 347) | type UpdateUserRoleParams struct method UpdateUserRole (line 352) | func (q *Queries) UpdateUserRole(ctx context.Context, arg UpdateUserRole... constant updateUserStatus (line 371) | updateUserStatus = `-- name: UpdateUserStatus :one type UpdateUserStatusParams (line 378) | type UpdateUserStatusParams struct method UpdateUserStatus (line 383) | func (q *Queries) UpdateUserStatus(ctx context.Context, arg UpdateUserSt... FILE: backend/pkg/database/vecstorelogs.sql.go constant createVectorStoreLog (line 14) | createVectorStoreLog = `-- name: CreateVectorStoreLog :one type CreateVectorStoreLogParams (line 32) | type CreateVectorStoreLogParams struct method CreateVectorStoreLog (line 44) | func (q *Queries) CreateVectorStoreLog(ctx context.Context, arg CreateVe... constant getFlowVectorStoreLog (line 73) | getFlowVectorStoreLog = `-- name: GetFlowVectorStoreLog :one type GetFlowVectorStoreLogParams (line 81) | type GetFlowVectorStoreLogParams struct method GetFlowVectorStoreLog (line 86) | func (q *Queries) GetFlowVectorStoreLog(ctx context.Context, arg GetFlow... constant getFlowVectorStoreLogs (line 105) | getFlowVectorStoreLogs = `-- name: GetFlowVectorStoreLogs :many method GetFlowVectorStoreLogs (line 114) | func (q *Queries) GetFlowVectorStoreLogs(ctx context.Context, flowID int... constant getSubtaskVectorStoreLogs (line 149) | getSubtaskVectorStoreLogs = `-- name: GetSubtaskVectorStoreLogs :many method GetSubtaskVectorStoreLogs (line 159) | func (q *Queries) GetSubtaskVectorStoreLogs(ctx context.Context, subtask... constant getTaskVectorStoreLogs (line 194) | getTaskVectorStoreLogs = `-- name: GetTaskVectorStoreLogs :many method GetTaskVectorStoreLogs (line 204) | func (q *Queries) GetTaskVectorStoreLogs(ctx context.Context, taskID sql... constant getUserFlowVectorStoreLogs (line 239) | getUserFlowVectorStoreLogs = `-- name: GetUserFlowVectorStoreLogs :many type GetUserFlowVectorStoreLogsParams (line 249) | type GetUserFlowVectorStoreLogsParams struct method GetUserFlowVectorStoreLogs (line 254) | func (q *Queries) GetUserFlowVectorStoreLogs(ctx context.Context, arg Ge... FILE: backend/pkg/docker/client.go constant WorkFolderPathInContainer (line 29) | WorkFolderPathInContainer = "/work" constant BaseContainerPortsNumber (line 31) | BaseContainerPortsNumber = 28000 constant defaultImage (line 34) | defaultImage = "debian:latest" constant defaultDockerSocketPath (line 35) | defaultDockerSocketPath = "/var/run/docker.sock" constant containerPrimaryTypePattern (line 36) | containerPrimaryTypePattern = "-terminal-" constant containerLocalCwdTemplate (line 37) | containerLocalCwdTemplate = "flow-%d" constant containerPortsNumber (line 38) | containerPortsNumber = 2 constant limitContainerPortsNumber (line 39) | limitContainerPortsNumber = 2000 type dockerClient (line 42) | type dockerClient struct method SpawnContainer (line 154) | func (dc *dockerClient) SpawnContainer( method StopContainer (line 359) | func (dc *dockerClient) StopContainer(ctx context.Context, containerID... method DeleteContainer (line 384) | func (dc *dockerClient) DeleteContainer(ctx context.Context, container... method Cleanup (line 417) | func (dc *dockerClient) Cleanup(ctx context.Context) error { method IsContainerRunning (line 508) | func (dc *dockerClient) IsContainerRunning(ctx context.Context, contai... method GetDefaultImage (line 517) | func (dc *dockerClient) GetDefaultImage() string { method ContainerExecCreate (line 521) | func (dc *dockerClient) ContainerExecCreate( method ContainerExecAttach (line 529) | func (dc *dockerClient) ContainerExecAttach( method ContainerExecInspect (line 537) | func (dc *dockerClient) ContainerExecInspect( method CopyToContainer (line 544) | func (dc *dockerClient) CopyToContainer( method CopyFromContainer (line 554) | func (dc *dockerClient) CopyFromContainer( method pullImage (line 562) | func (dc *dockerClient) pullImage(ctx context.Context, imageName strin... type DockerClient (line 55) | type DockerClient interface function GetPrimaryContainerPorts (line 70) | func GetPrimaryContainerPorts(flowID int64) []int { function NewDockerClient (line 79) | func NewDockerClient(ctx context.Context, db database.Querier, cfg *conf... function getHostDockerSocket (line 593) | func getHostDockerSocket(ctx context.Context, cli *client.Client) string { function getHostDataDir (line 636) | func getHostDataDir(ctx context.Context, cli *client.Client, dataDir, wo... function ensureDockerNetwork (line 703) | func ensureDockerNetwork(ctx context.Context, cli *client.Client, name s... FILE: backend/pkg/graph/context.go type GqlContextKey (line 21) | type GqlContextKey constant UserIDKey (line 24) | UserIDKey GqlContextKey = "userID" constant UserTypeKey (line 25) | UserTypeKey GqlContextKey = "userType" constant UserPermissions (line 26) | UserPermissions GqlContextKey = "userPermissions" function GetUserID (line 29) | func GetUserID(ctx context.Context) (uint64, error) { function SetUserID (line 37) | func SetUserID(ctx context.Context, userID uint64) context.Context { function GetUserType (line 41) | func GetUserType(ctx context.Context) (string, error) { function SetUserType (line 49) | func SetUserType(ctx context.Context, userType string) context.Context { function GetUserPermissions (line 53) | func GetUserPermissions(ctx context.Context) ([]string, error) { function SetUserPermissions (line 61) | func SetUserPermissions(ctx context.Context, userPermissions []string) c... function validateUserType (line 65) | func validateUserType(ctx context.Context, userTypes ...string) (bool, e... function validatePermission (line 78) | func validatePermission(ctx context.Context, perm string) (int64, bool, ... function validatePermissionWithFlowID (line 101) | func validatePermissionWithFlowID( FILE: backend/pkg/graph/context_test.go function TestGetUserID_Found (line 13) | func TestGetUserID_Found(t *testing.T) { function TestGetUserID_Missing (line 22) | func TestGetUserID_Missing(t *testing.T) { function TestGetUserID_WrongType (line 29) | func TestGetUserID_WrongType(t *testing.T) { function TestSetUserID_Roundtrip (line 37) | func TestSetUserID_Roundtrip(t *testing.T) { function TestGetUserType_Found (line 48) | func TestGetUserType_Found(t *testing.T) { function TestGetUserType_Missing (line 57) | func TestGetUserType_Missing(t *testing.T) { function TestGetUserType_WrongType (line 64) | func TestGetUserType_WrongType(t *testing.T) { function TestSetUserType_Roundtrip (line 72) | func TestSetUserType_Roundtrip(t *testing.T) { function TestGetUserPermissions_Found (line 83) | func TestGetUserPermissions_Found(t *testing.T) { function TestGetUserPermissions_Missing (line 93) | func TestGetUserPermissions_Missing(t *testing.T) { function TestGetUserPermissions_WrongType (line 100) | func TestGetUserPermissions_WrongType(t *testing.T) { function TestSetUserPermissions_Roundtrip (line 108) | func TestSetUserPermissions_Roundtrip(t *testing.T) { function TestValidateUserType (line 120) | func TestValidateUserType(t *testing.T) { function TestValidatePermission (line 193) | func TestValidatePermission(t *testing.T) { function TestPermAdminRegexp (line 310) | func TestPermAdminRegexp(t *testing.T) { function TestValidatePermission_ZeroUserID (line 338) | func TestValidatePermission_ZeroUserID(t *testing.T) { function TestValidatePermission_LargeUserID (line 350) | func TestValidatePermission_LargeUserID(t *testing.T) { function TestGetUserID_ZeroValue (line 362) | func TestGetUserID_ZeroValue(t *testing.T) { function TestGetUserPermissions_EmptySlice (line 371) | func TestGetUserPermissions_EmptySlice(t *testing.T) { function TestGetUserPermissions_NilSlice (line 381) | func TestGetUserPermissions_NilSlice(t *testing.T) { FILE: backend/pkg/graph/generated.go function NewExecutableSchema (line 27) | func NewExecutableSchema(cfg Config) graphql.ExecutableSchema { type Config (line 36) | type Config struct type ResolverRoot (line 43) | type ResolverRoot interface type DirectiveRoot (line 49) | type DirectiveRoot struct type ComplexityRoot (line 52) | type ComplexityRoot struct type MutationResolver (line 631) | type MutationResolver interface type QueryResolver (line 657) | type QueryResolver interface type SubscriptionResolver (line 693) | type SubscriptionResolver interface type executableSchema (line 720) | type executableSchema struct method Schema (line 727) | func (e *executableSchema) Schema() *ast.Schema { method Complexity (line 734) | func (e *executableSchema) Complexity(typeName, field string, childCom... method Exec (line 3875) | func (e *executableSchema) Exec(ctx context.Context) graphql.ResponseH... type executionContext (line 3957) | type executionContext struct method processDeferredGroup (line 3965) | func (ec *executionContext) processDeferredGroup(dg graphql.DeferredGr... method introspectSchema (line 3984) | func (ec *executionContext) introspectSchema() (*introspection.Schema,... method introspectType (line 3991) | func (ec *executionContext) introspectType(name string) (*introspectio... method field_Mutation_addFavoriteFlow_args (line 4018) | func (ec *executionContext) field_Mutation_addFavoriteFlow_args(ctx co... method field_Mutation_addFavoriteFlow_argsFlowID (line 4028) | func (ec *executionContext) field_Mutation_addFavoriteFlow_argsFlowID( method field_Mutation_callAssistant_args (line 4050) | func (ec *executionContext) field_Mutation_callAssistant_args(ctx cont... method field_Mutation_callAssistant_argsFlowID (line 4075) | func (ec *executionContext) field_Mutation_callAssistant_argsFlowID( method field_Mutation_callAssistant_argsAssistantID (line 4097) | func (ec *executionContext) field_Mutation_callAssistant_argsAssistantID( method field_Mutation_callAssistant_argsInput (line 4119) | func (ec *executionContext) field_Mutation_callAssistant_argsInput( method field_Mutation_callAssistant_argsUseAgents (line 4141) | func (ec *executionContext) field_Mutation_callAssistant_argsUseAgents( method field_Mutation_createAPIToken_args (line 4163) | func (ec *executionContext) field_Mutation_createAPIToken_args(ctx con... method field_Mutation_createAPIToken_argsInput (line 4173) | func (ec *executionContext) field_Mutation_createAPIToken_argsInput( method field_Mutation_createAssistant_args (line 4195) | func (ec *executionContext) field_Mutation_createAssistant_args(ctx co... method field_Mutation_createAssistant_argsFlowID (line 4220) | func (ec *executionContext) field_Mutation_createAssistant_argsFlowID( method field_Mutation_createAssistant_argsModelProvider (line 4242) | func (ec *executionContext) field_Mutation_createAssistant_argsModelPr... method field_Mutation_createAssistant_argsInput (line 4264) | func (ec *executionContext) field_Mutation_createAssistant_argsInput( method field_Mutation_createAssistant_argsUseAgents (line 4286) | func (ec *executionContext) field_Mutation_createAssistant_argsUseAgents( method field_Mutation_createFlow_args (line 4308) | func (ec *executionContext) field_Mutation_createFlow_args(ctx context... method field_Mutation_createFlow_argsModelProvider (line 4323) | func (ec *executionContext) field_Mutation_createFlow_argsModelProvider( method field_Mutation_createFlow_argsInput (line 4345) | func (ec *executionContext) field_Mutation_createFlow_argsInput( method field_Mutation_createPrompt_args (line 4367) | func (ec *executionContext) field_Mutation_createPrompt_args(ctx conte... method field_Mutation_createPrompt_argsType (line 4382) | func (ec *executionContext) field_Mutation_createPrompt_argsType( method field_Mutation_createPrompt_argsTemplate (line 4404) | func (ec *executionContext) field_Mutation_createPrompt_argsTemplate( method field_Mutation_createProvider_args (line 4426) | func (ec *executionContext) field_Mutation_createProvider_args(ctx con... method field_Mutation_createProvider_argsName (line 4446) | func (ec *executionContext) field_Mutation_createProvider_argsName( method field_Mutation_createProvider_argsType (line 4468) | func (ec *executionContext) field_Mutation_createProvider_argsType( method field_Mutation_createProvider_argsAgents (line 4490) | func (ec *executionContext) field_Mutation_createProvider_argsAgents( method field_Mutation_deleteAPIToken_args (line 4512) | func (ec *executionContext) field_Mutation_deleteAPIToken_args(ctx con... method field_Mutation_deleteAPIToken_argsTokenID (line 4522) | func (ec *executionContext) field_Mutation_deleteAPIToken_argsTokenID( method field_Mutation_deleteAssistant_args (line 4544) | func (ec *executionContext) field_Mutation_deleteAssistant_args(ctx co... method field_Mutation_deleteAssistant_argsFlowID (line 4559) | func (ec *executionContext) field_Mutation_deleteAssistant_argsFlowID( method field_Mutation_deleteAssistant_argsAssistantID (line 4581) | func (ec *executionContext) field_Mutation_deleteAssistant_argsAssista... method field_Mutation_deleteFavoriteFlow_args (line 4603) | func (ec *executionContext) field_Mutation_deleteFavoriteFlow_args(ctx... method field_Mutation_deleteFavoriteFlow_argsFlowID (line 4613) | func (ec *executionContext) field_Mutation_deleteFavoriteFlow_argsFlowID( method field_Mutation_deleteFlow_args (line 4635) | func (ec *executionContext) field_Mutation_deleteFlow_args(ctx context... method field_Mutation_deleteFlow_argsFlowID (line 4645) | func (ec *executionContext) field_Mutation_deleteFlow_argsFlowID( method field_Mutation_deletePrompt_args (line 4667) | func (ec *executionContext) field_Mutation_deletePrompt_args(ctx conte... method field_Mutation_deletePrompt_argsPromptID (line 4677) | func (ec *executionContext) field_Mutation_deletePrompt_argsPromptID( method field_Mutation_deleteProvider_args (line 4699) | func (ec *executionContext) field_Mutation_deleteProvider_args(ctx con... method field_Mutation_deleteProvider_argsProviderID (line 4709) | func (ec *executionContext) field_Mutation_deleteProvider_argsProviderID( method field_Mutation_finishFlow_args (line 4731) | func (ec *executionContext) field_Mutation_finishFlow_args(ctx context... method field_Mutation_finishFlow_argsFlowID (line 4741) | func (ec *executionContext) field_Mutation_finishFlow_argsFlowID( method field_Mutation_putUserInput_args (line 4763) | func (ec *executionContext) field_Mutation_putUserInput_args(ctx conte... method field_Mutation_putUserInput_argsFlowID (line 4778) | func (ec *executionContext) field_Mutation_putUserInput_argsFlowID( method field_Mutation_putUserInput_argsInput (line 4800) | func (ec *executionContext) field_Mutation_putUserInput_argsInput( method field_Mutation_renameFlow_args (line 4822) | func (ec *executionContext) field_Mutation_renameFlow_args(ctx context... method field_Mutation_renameFlow_argsFlowID (line 4837) | func (ec *executionContext) field_Mutation_renameFlow_argsFlowID( method field_Mutation_renameFlow_argsTitle (line 4859) | func (ec *executionContext) field_Mutation_renameFlow_argsTitle( method field_Mutation_stopAssistant_args (line 4881) | func (ec *executionContext) field_Mutation_stopAssistant_args(ctx cont... method field_Mutation_stopAssistant_argsFlowID (line 4896) | func (ec *executionContext) field_Mutation_stopAssistant_argsFlowID( method field_Mutation_stopAssistant_argsAssistantID (line 4918) | func (ec *executionContext) field_Mutation_stopAssistant_argsAssistantID( method field_Mutation_stopFlow_args (line 4940) | func (ec *executionContext) field_Mutation_stopFlow_args(ctx context.C... method field_Mutation_stopFlow_argsFlowID (line 4950) | func (ec *executionContext) field_Mutation_stopFlow_argsFlowID( method field_Mutation_testAgent_args (line 4972) | func (ec *executionContext) field_Mutation_testAgent_args(ctx context.... method field_Mutation_testAgent_argsType (line 4992) | func (ec *executionContext) field_Mutation_testAgent_argsType( method field_Mutation_testAgent_argsAgentType (line 5014) | func (ec *executionContext) field_Mutation_testAgent_argsAgentType( method field_Mutation_testAgent_argsAgent (line 5036) | func (ec *executionContext) field_Mutation_testAgent_argsAgent( method field_Mutation_testProvider_args (line 5058) | func (ec *executionContext) field_Mutation_testProvider_args(ctx conte... method field_Mutation_testProvider_argsType (line 5073) | func (ec *executionContext) field_Mutation_testProvider_argsType( method field_Mutation_testProvider_argsAgents (line 5095) | func (ec *executionContext) field_Mutation_testProvider_argsAgents( method field_Mutation_updateAPIToken_args (line 5117) | func (ec *executionContext) field_Mutation_updateAPIToken_args(ctx con... method field_Mutation_updateAPIToken_argsTokenID (line 5132) | func (ec *executionContext) field_Mutation_updateAPIToken_argsTokenID( method field_Mutation_updateAPIToken_argsInput (line 5154) | func (ec *executionContext) field_Mutation_updateAPIToken_argsInput( method field_Mutation_updatePrompt_args (line 5176) | func (ec *executionContext) field_Mutation_updatePrompt_args(ctx conte... method field_Mutation_updatePrompt_argsPromptID (line 5191) | func (ec *executionContext) field_Mutation_updatePrompt_argsPromptID( method field_Mutation_updatePrompt_argsTemplate (line 5213) | func (ec *executionContext) field_Mutation_updatePrompt_argsTemplate( method field_Mutation_updateProvider_args (line 5235) | func (ec *executionContext) field_Mutation_updateProvider_args(ctx con... method field_Mutation_updateProvider_argsProviderID (line 5255) | func (ec *executionContext) field_Mutation_updateProvider_argsProviderID( method field_Mutation_updateProvider_argsName (line 5277) | func (ec *executionContext) field_Mutation_updateProvider_argsName( method field_Mutation_updateProvider_argsAgents (line 5299) | func (ec *executionContext) field_Mutation_updateProvider_argsAgents( method field_Mutation_validatePrompt_args (line 5321) | func (ec *executionContext) field_Mutation_validatePrompt_args(ctx con... method field_Mutation_validatePrompt_argsType (line 5336) | func (ec *executionContext) field_Mutation_validatePrompt_argsType( method field_Mutation_validatePrompt_argsTemplate (line 5358) | func (ec *executionContext) field_Mutation_validatePrompt_argsTemplate( method field_Query___type_args (line 5380) | func (ec *executionContext) field_Query___type_args(ctx context.Contex... method field_Query___type_argsName (line 5390) | func (ec *executionContext) field_Query___type_argsName( method field_Query_agentLogs_args (line 5412) | func (ec *executionContext) field_Query_agentLogs_args(ctx context.Con... method field_Query_agentLogs_argsFlowID (line 5422) | func (ec *executionContext) field_Query_agentLogs_argsFlowID( method field_Query_apiToken_args (line 5444) | func (ec *executionContext) field_Query_apiToken_args(ctx context.Cont... method field_Query_apiToken_argsTokenID (line 5454) | func (ec *executionContext) field_Query_apiToken_argsTokenID( method field_Query_assistantLogs_args (line 5476) | func (ec *executionContext) field_Query_assistantLogs_args(ctx context... method field_Query_assistantLogs_argsFlowID (line 5491) | func (ec *executionContext) field_Query_assistantLogs_argsFlowID( method field_Query_assistantLogs_argsAssistantID (line 5513) | func (ec *executionContext) field_Query_assistantLogs_argsAssistantID( method field_Query_assistants_args (line 5535) | func (ec *executionContext) field_Query_assistants_args(ctx context.Co... method field_Query_assistants_argsFlowID (line 5545) | func (ec *executionContext) field_Query_assistants_argsFlowID( method field_Query_flowStatsByFlow_args (line 5567) | func (ec *executionContext) field_Query_flowStatsByFlow_args(ctx conte... method field_Query_flowStatsByFlow_argsFlowID (line 5577) | func (ec *executionContext) field_Query_flowStatsByFlow_argsFlowID( method field_Query_flow_args (line 5599) | func (ec *executionContext) field_Query_flow_args(ctx context.Context,... method field_Query_flow_argsFlowID (line 5609) | func (ec *executionContext) field_Query_flow_argsFlowID( method field_Query_flowsExecutionStatsByPeriod_args (line 5631) | func (ec *executionContext) field_Query_flowsExecutionStatsByPeriod_ar... method field_Query_flowsExecutionStatsByPeriod_argsPeriod (line 5641) | func (ec *executionContext) field_Query_flowsExecutionStatsByPeriod_ar... method field_Query_flowsStatsByPeriod_args (line 5663) | func (ec *executionContext) field_Query_flowsStatsByPeriod_args(ctx co... method field_Query_flowsStatsByPeriod_argsPeriod (line 5673) | func (ec *executionContext) field_Query_flowsStatsByPeriod_argsPeriod( method field_Query_messageLogs_args (line 5695) | func (ec *executionContext) field_Query_messageLogs_args(ctx context.C... method field_Query_messageLogs_argsFlowID (line 5705) | func (ec *executionContext) field_Query_messageLogs_argsFlowID( method field_Query_screenshots_args (line 5727) | func (ec *executionContext) field_Query_screenshots_args(ctx context.C... method field_Query_screenshots_argsFlowID (line 5737) | func (ec *executionContext) field_Query_screenshots_argsFlowID( method field_Query_searchLogs_args (line 5759) | func (ec *executionContext) field_Query_searchLogs_args(ctx context.Co... method field_Query_searchLogs_argsFlowID (line 5769) | func (ec *executionContext) field_Query_searchLogs_argsFlowID( method field_Query_tasks_args (line 5791) | func (ec *executionContext) field_Query_tasks_args(ctx context.Context... method field_Query_tasks_argsFlowID (line 5801) | func (ec *executionContext) field_Query_tasks_argsFlowID( method field_Query_terminalLogs_args (line 5823) | func (ec *executionContext) field_Query_terminalLogs_args(ctx context.... method field_Query_terminalLogs_argsFlowID (line 5833) | func (ec *executionContext) field_Query_terminalLogs_argsFlowID( method field_Query_toolcallsStatsByFlow_args (line 5855) | func (ec *executionContext) field_Query_toolcallsStatsByFlow_args(ctx ... method field_Query_toolcallsStatsByFlow_argsFlowID (line 5865) | func (ec *executionContext) field_Query_toolcallsStatsByFlow_argsFlowID( method field_Query_toolcallsStatsByFunctionForFlow_args (line 5887) | func (ec *executionContext) field_Query_toolcallsStatsByFunctionForFlo... method field_Query_toolcallsStatsByFunctionForFlow_argsFlowID (line 5897) | func (ec *executionContext) field_Query_toolcallsStatsByFunctionForFlo... method field_Query_toolcallsStatsByPeriod_args (line 5919) | func (ec *executionContext) field_Query_toolcallsStatsByPeriod_args(ct... method field_Query_toolcallsStatsByPeriod_argsPeriod (line 5929) | func (ec *executionContext) field_Query_toolcallsStatsByPeriod_argsPer... method field_Query_usageStatsByAgentTypeForFlow_args (line 5951) | func (ec *executionContext) field_Query_usageStatsByAgentTypeForFlow_a... method field_Query_usageStatsByAgentTypeForFlow_argsFlowID (line 5961) | func (ec *executionContext) field_Query_usageStatsByAgentTypeForFlow_a... method field_Query_usageStatsByFlow_args (line 5983) | func (ec *executionContext) field_Query_usageStatsByFlow_args(ctx cont... method field_Query_usageStatsByFlow_argsFlowID (line 5993) | func (ec *executionContext) field_Query_usageStatsByFlow_argsFlowID( method field_Query_usageStatsByPeriod_args (line 6015) | func (ec *executionContext) field_Query_usageStatsByPeriod_args(ctx co... method field_Query_usageStatsByPeriod_argsPeriod (line 6025) | func (ec *executionContext) field_Query_usageStatsByPeriod_argsPeriod( method field_Query_vectorStoreLogs_args (line 6047) | func (ec *executionContext) field_Query_vectorStoreLogs_args(ctx conte... method field_Query_vectorStoreLogs_argsFlowID (line 6057) | func (ec *executionContext) field_Query_vectorStoreLogs_argsFlowID( method field_Subscription_agentLogAdded_args (line 6079) | func (ec *executionContext) field_Subscription_agentLogAdded_args(ctx ... method field_Subscription_agentLogAdded_argsFlowID (line 6089) | func (ec *executionContext) field_Subscription_agentLogAdded_argsFlowID( method field_Subscription_assistantCreated_args (line 6111) | func (ec *executionContext) field_Subscription_assistantCreated_args(c... method field_Subscription_assistantCreated_argsFlowID (line 6121) | func (ec *executionContext) field_Subscription_assistantCreated_argsFl... method field_Subscription_assistantDeleted_args (line 6143) | func (ec *executionContext) field_Subscription_assistantDeleted_args(c... method field_Subscription_assistantDeleted_argsFlowID (line 6153) | func (ec *executionContext) field_Subscription_assistantDeleted_argsFl... method field_Subscription_assistantLogAdded_args (line 6175) | func (ec *executionContext) field_Subscription_assistantLogAdded_args(... method field_Subscription_assistantLogAdded_argsFlowID (line 6185) | func (ec *executionContext) field_Subscription_assistantLogAdded_argsF... method field_Subscription_assistantLogUpdated_args (line 6207) | func (ec *executionContext) field_Subscription_assistantLogUpdated_arg... method field_Subscription_assistantLogUpdated_argsFlowID (line 6217) | func (ec *executionContext) field_Subscription_assistantLogUpdated_arg... method field_Subscription_assistantUpdated_args (line 6239) | func (ec *executionContext) field_Subscription_assistantUpdated_args(c... method field_Subscription_assistantUpdated_argsFlowID (line 6249) | func (ec *executionContext) field_Subscription_assistantUpdated_argsFl... method field_Subscription_messageLogAdded_args (line 6271) | func (ec *executionContext) field_Subscription_messageLogAdded_args(ct... method field_Subscription_messageLogAdded_argsFlowID (line 6281) | func (ec *executionContext) field_Subscription_messageLogAdded_argsFlo... method field_Subscription_messageLogUpdated_args (line 6303) | func (ec *executionContext) field_Subscription_messageLogUpdated_args(... method field_Subscription_messageLogUpdated_argsFlowID (line 6313) | func (ec *executionContext) field_Subscription_messageLogUpdated_argsF... method field_Subscription_screenshotAdded_args (line 6335) | func (ec *executionContext) field_Subscription_screenshotAdded_args(ct... method field_Subscription_screenshotAdded_argsFlowID (line 6345) | func (ec *executionContext) field_Subscription_screenshotAdded_argsFlo... method field_Subscription_searchLogAdded_args (line 6367) | func (ec *executionContext) field_Subscription_searchLogAdded_args(ctx... method field_Subscription_searchLogAdded_argsFlowID (line 6377) | func (ec *executionContext) field_Subscription_searchLogAdded_argsFlowID( method field_Subscription_taskCreated_args (line 6399) | func (ec *executionContext) field_Subscription_taskCreated_args(ctx co... method field_Subscription_taskCreated_argsFlowID (line 6409) | func (ec *executionContext) field_Subscription_taskCreated_argsFlowID( method field_Subscription_taskUpdated_args (line 6431) | func (ec *executionContext) field_Subscription_taskUpdated_args(ctx co... method field_Subscription_taskUpdated_argsFlowID (line 6441) | func (ec *executionContext) field_Subscription_taskUpdated_argsFlowID( method field_Subscription_terminalLogAdded_args (line 6463) | func (ec *executionContext) field_Subscription_terminalLogAdded_args(c... method field_Subscription_terminalLogAdded_argsFlowID (line 6473) | func (ec *executionContext) field_Subscription_terminalLogAdded_argsFl... method field_Subscription_vectorStoreLogAdded_args (line 6495) | func (ec *executionContext) field_Subscription_vectorStoreLogAdded_arg... method field_Subscription_vectorStoreLogAdded_argsFlowID (line 6505) | func (ec *executionContext) field_Subscription_vectorStoreLogAdded_arg... method field___Type_enumValues_args (line 6527) | func (ec *executionContext) field___Type_enumValues_args(ctx context.C... method field___Type_enumValues_argsIncludeDeprecated (line 6537) | func (ec *executionContext) field___Type_enumValues_argsIncludeDepreca... method field___Type_fields_args (line 6559) | func (ec *executionContext) field___Type_fields_args(ctx context.Conte... method field___Type_fields_argsIncludeDeprecated (line 6569) | func (ec *executionContext) field___Type_fields_argsIncludeDeprecated( method _APIToken_id (line 6599) | func (ec *executionContext) _APIToken_id(ctx context.Context, field gr... method fieldContext_APIToken_id (line 6630) | func (ec *executionContext) fieldContext_APIToken_id(_ context.Context... method _APIToken_tokenId (line 6643) | func (ec *executionContext) _APIToken_tokenId(ctx context.Context, fie... method fieldContext_APIToken_tokenId (line 6674) | func (ec *executionContext) fieldContext_APIToken_tokenId(_ context.Co... method _APIToken_userId (line 6687) | func (ec *executionContext) _APIToken_userId(ctx context.Context, fiel... method fieldContext_APIToken_userId (line 6718) | func (ec *executionContext) fieldContext_APIToken_userId(_ context.Con... method _APIToken_roleId (line 6731) | func (ec *executionContext) _APIToken_roleId(ctx context.Context, fiel... method fieldContext_APIToken_roleId (line 6762) | func (ec *executionContext) fieldContext_APIToken_roleId(_ context.Con... method _APIToken_name (line 6775) | func (ec *executionContext) _APIToken_name(ctx context.Context, field ... method fieldContext_APIToken_name (line 6803) | func (ec *executionContext) fieldContext_APIToken_name(_ context.Conte... method _APIToken_ttl (line 6816) | func (ec *executionContext) _APIToken_ttl(ctx context.Context, field g... method fieldContext_APIToken_ttl (line 6847) | func (ec *executionContext) fieldContext_APIToken_ttl(_ context.Contex... method _APIToken_status (line 6860) | func (ec *executionContext) _APIToken_status(ctx context.Context, fiel... method fieldContext_APIToken_status (line 6891) | func (ec *executionContext) fieldContext_APIToken_status(_ context.Con... method _APIToken_createdAt (line 6904) | func (ec *executionContext) _APIToken_createdAt(ctx context.Context, f... method fieldContext_APIToken_createdAt (line 6935) | func (ec *executionContext) fieldContext_APIToken_createdAt(_ context.... method _APIToken_updatedAt (line 6948) | func (ec *executionContext) _APIToken_updatedAt(ctx context.Context, f... method fieldContext_APIToken_updatedAt (line 6979) | func (ec *executionContext) fieldContext_APIToken_updatedAt(_ context.... method _APITokenWithSecret_id (line 6992) | func (ec *executionContext) _APITokenWithSecret_id(ctx context.Context... method fieldContext_APITokenWithSecret_id (line 7023) | func (ec *executionContext) fieldContext_APITokenWithSecret_id(_ conte... method _APITokenWithSecret_tokenId (line 7036) | func (ec *executionContext) _APITokenWithSecret_tokenId(ctx context.Co... method fieldContext_APITokenWithSecret_tokenId (line 7067) | func (ec *executionContext) fieldContext_APITokenWithSecret_tokenId(_ ... method _APITokenWithSecret_userId (line 7080) | func (ec *executionContext) _APITokenWithSecret_userId(ctx context.Con... method fieldContext_APITokenWithSecret_userId (line 7111) | func (ec *executionContext) fieldContext_APITokenWithSecret_userId(_ c... method _APITokenWithSecret_roleId (line 7124) | func (ec *executionContext) _APITokenWithSecret_roleId(ctx context.Con... method fieldContext_APITokenWithSecret_roleId (line 7155) | func (ec *executionContext) fieldContext_APITokenWithSecret_roleId(_ c... method _APITokenWithSecret_name (line 7168) | func (ec *executionContext) _APITokenWithSecret_name(ctx context.Conte... method fieldContext_APITokenWithSecret_name (line 7196) | func (ec *executionContext) fieldContext_APITokenWithSecret_name(_ con... method _APITokenWithSecret_ttl (line 7209) | func (ec *executionContext) _APITokenWithSecret_ttl(ctx context.Contex... method fieldContext_APITokenWithSecret_ttl (line 7240) | func (ec *executionContext) fieldContext_APITokenWithSecret_ttl(_ cont... method _APITokenWithSecret_status (line 7253) | func (ec *executionContext) _APITokenWithSecret_status(ctx context.Con... method fieldContext_APITokenWithSecret_status (line 7284) | func (ec *executionContext) fieldContext_APITokenWithSecret_status(_ c... method _APITokenWithSecret_createdAt (line 7297) | func (ec *executionContext) _APITokenWithSecret_createdAt(ctx context.... method fieldContext_APITokenWithSecret_createdAt (line 7328) | func (ec *executionContext) fieldContext_APITokenWithSecret_createdAt(... method _APITokenWithSecret_updatedAt (line 7341) | func (ec *executionContext) _APITokenWithSecret_updatedAt(ctx context.... method fieldContext_APITokenWithSecret_updatedAt (line 7372) | func (ec *executionContext) fieldContext_APITokenWithSecret_updatedAt(... method _APITokenWithSecret_token (line 7385) | func (ec *executionContext) _APITokenWithSecret_token(ctx context.Cont... method fieldContext_APITokenWithSecret_token (line 7416) | func (ec *executionContext) fieldContext_APITokenWithSecret_token(_ co... method _AgentConfig_model (line 7429) | func (ec *executionContext) _AgentConfig_model(ctx context.Context, fi... method fieldContext_AgentConfig_model (line 7460) | func (ec *executionContext) fieldContext_AgentConfig_model(_ context.C... method _AgentConfig_maxTokens (line 7473) | func (ec *executionContext) _AgentConfig_maxTokens(ctx context.Context... method fieldContext_AgentConfig_maxTokens (line 7501) | func (ec *executionContext) fieldContext_AgentConfig_maxTokens(_ conte... method _AgentConfig_temperature (line 7514) | func (ec *executionContext) _AgentConfig_temperature(ctx context.Conte... method fieldContext_AgentConfig_temperature (line 7542) | func (ec *executionContext) fieldContext_AgentConfig_temperature(_ con... method _AgentConfig_topK (line 7555) | func (ec *executionContext) _AgentConfig_topK(ctx context.Context, fie... method fieldContext_AgentConfig_topK (line 7583) | func (ec *executionContext) fieldContext_AgentConfig_topK(_ context.Co... method _AgentConfig_topP (line 7596) | func (ec *executionContext) _AgentConfig_topP(ctx context.Context, fie... method fieldContext_AgentConfig_topP (line 7624) | func (ec *executionContext) fieldContext_AgentConfig_topP(_ context.Co... method _AgentConfig_minLength (line 7637) | func (ec *executionContext) _AgentConfig_minLength(ctx context.Context... method fieldContext_AgentConfig_minLength (line 7665) | func (ec *executionContext) fieldContext_AgentConfig_minLength(_ conte... method _AgentConfig_maxLength (line 7678) | func (ec *executionContext) _AgentConfig_maxLength(ctx context.Context... method fieldContext_AgentConfig_maxLength (line 7706) | func (ec *executionContext) fieldContext_AgentConfig_maxLength(_ conte... method _AgentConfig_repetitionPenalty (line 7719) | func (ec *executionContext) _AgentConfig_repetitionPenalty(ctx context... method fieldContext_AgentConfig_repetitionPenalty (line 7747) | func (ec *executionContext) fieldContext_AgentConfig_repetitionPenalty... method _AgentConfig_frequencyPenalty (line 7760) | func (ec *executionContext) _AgentConfig_frequencyPenalty(ctx context.... method fieldContext_AgentConfig_frequencyPenalty (line 7788) | func (ec *executionContext) fieldContext_AgentConfig_frequencyPenalty(... method _AgentConfig_presencePenalty (line 7801) | func (ec *executionContext) _AgentConfig_presencePenalty(ctx context.C... method fieldContext_AgentConfig_presencePenalty (line 7829) | func (ec *executionContext) fieldContext_AgentConfig_presencePenalty(_... method _AgentConfig_reasoning (line 7842) | func (ec *executionContext) _AgentConfig_reasoning(ctx context.Context... method fieldContext_AgentConfig_reasoning (line 7870) | func (ec *executionContext) fieldContext_AgentConfig_reasoning(_ conte... method _AgentConfig_price (line 7889) | func (ec *executionContext) _AgentConfig_price(ctx context.Context, fi... method fieldContext_AgentConfig_price (line 7917) | func (ec *executionContext) fieldContext_AgentConfig_price(_ context.C... method _AgentLog_id (line 7940) | func (ec *executionContext) _AgentLog_id(ctx context.Context, field gr... method fieldContext_AgentLog_id (line 7971) | func (ec *executionContext) fieldContext_AgentLog_id(_ context.Context... method _AgentLog_initiator (line 7984) | func (ec *executionContext) _AgentLog_initiator(ctx context.Context, f... method fieldContext_AgentLog_initiator (line 8015) | func (ec *executionContext) fieldContext_AgentLog_initiator(_ context.... method _AgentLog_executor (line 8028) | func (ec *executionContext) _AgentLog_executor(ctx context.Context, fi... method fieldContext_AgentLog_executor (line 8059) | func (ec *executionContext) fieldContext_AgentLog_executor(_ context.C... method _AgentLog_task (line 8072) | func (ec *executionContext) _AgentLog_task(ctx context.Context, field ... method fieldContext_AgentLog_task (line 8103) | func (ec *executionContext) fieldContext_AgentLog_task(_ context.Conte... method _AgentLog_result (line 8116) | func (ec *executionContext) _AgentLog_result(ctx context.Context, fiel... method fieldContext_AgentLog_result (line 8147) | func (ec *executionContext) fieldContext_AgentLog_result(_ context.Con... method _AgentLog_flowId (line 8160) | func (ec *executionContext) _AgentLog_flowId(ctx context.Context, fiel... method fieldContext_AgentLog_flowId (line 8191) | func (ec *executionContext) fieldContext_AgentLog_flowId(_ context.Con... method _AgentLog_taskId (line 8204) | func (ec *executionContext) _AgentLog_taskId(ctx context.Context, fiel... method fieldContext_AgentLog_taskId (line 8232) | func (ec *executionContext) fieldContext_AgentLog_taskId(_ context.Con... method _AgentLog_subtaskId (line 8245) | func (ec *executionContext) _AgentLog_subtaskId(ctx context.Context, f... method fieldContext_AgentLog_subtaskId (line 8273) | func (ec *executionContext) fieldContext_AgentLog_subtaskId(_ context.... method _AgentLog_createdAt (line 8286) | func (ec *executionContext) _AgentLog_createdAt(ctx context.Context, f... method fieldContext_AgentLog_createdAt (line 8317) | func (ec *executionContext) fieldContext_AgentLog_createdAt(_ context.... method _AgentPrompt_system (line 8330) | func (ec *executionContext) _AgentPrompt_system(ctx context.Context, f... method fieldContext_AgentPrompt_system (line 8361) | func (ec *executionContext) fieldContext_AgentPrompt_system(_ context.... method _AgentPrompts_system (line 8382) | func (ec *executionContext) _AgentPrompts_system(ctx context.Context, ... method fieldContext_AgentPrompts_system (line 8413) | func (ec *executionContext) fieldContext_AgentPrompts_system(_ context... method _AgentPrompts_human (line 8434) | func (ec *executionContext) _AgentPrompts_human(ctx context.Context, f... method fieldContext_AgentPrompts_human (line 8465) | func (ec *executionContext) fieldContext_AgentPrompts_human(_ context.... method _AgentTestResult_tests (line 8486) | func (ec *executionContext) _AgentTestResult_tests(ctx context.Context... method fieldContext_AgentTestResult_tests (line 8517) | func (ec *executionContext) fieldContext_AgentTestResult_tests(_ conte... method _AgentTypeUsageStats_agentType (line 8546) | func (ec *executionContext) _AgentTypeUsageStats_agentType(ctx context... method fieldContext_AgentTypeUsageStats_agentType (line 8577) | func (ec *executionContext) fieldContext_AgentTypeUsageStats_agentType... method _AgentTypeUsageStats_stats (line 8590) | func (ec *executionContext) _AgentTypeUsageStats_stats(ctx context.Con... method fieldContext_AgentTypeUsageStats_stats (line 8621) | func (ec *executionContext) fieldContext_AgentTypeUsageStats_stats(_ c... method _AgentsConfig_simple (line 8648) | func (ec *executionContext) _AgentsConfig_simple(ctx context.Context, ... method fieldContext_AgentsConfig_simple (line 8679) | func (ec *executionContext) fieldContext_AgentsConfig_simple(_ context... method _AgentsConfig_simpleJson (line 8718) | func (ec *executionContext) _AgentsConfig_simpleJson(ctx context.Conte... method fieldContext_AgentsConfig_simpleJson (line 8749) | func (ec *executionContext) fieldContext_AgentsConfig_simpleJson(_ con... method _AgentsConfig_primaryAgent (line 8788) | func (ec *executionContext) _AgentsConfig_primaryAgent(ctx context.Con... method fieldContext_AgentsConfig_primaryAgent (line 8819) | func (ec *executionContext) fieldContext_AgentsConfig_primaryAgent(_ c... method _AgentsConfig_assistant (line 8858) | func (ec *executionContext) _AgentsConfig_assistant(ctx context.Contex... method fieldContext_AgentsConfig_assistant (line 8889) | func (ec *executionContext) fieldContext_AgentsConfig_assistant(_ cont... method _AgentsConfig_generator (line 8928) | func (ec *executionContext) _AgentsConfig_generator(ctx context.Contex... method fieldContext_AgentsConfig_generator (line 8959) | func (ec *executionContext) fieldContext_AgentsConfig_generator(_ cont... method _AgentsConfig_refiner (line 8998) | func (ec *executionContext) _AgentsConfig_refiner(ctx context.Context,... method fieldContext_AgentsConfig_refiner (line 9029) | func (ec *executionContext) fieldContext_AgentsConfig_refiner(_ contex... method _AgentsConfig_adviser (line 9068) | func (ec *executionContext) _AgentsConfig_adviser(ctx context.Context,... method fieldContext_AgentsConfig_adviser (line 9099) | func (ec *executionContext) fieldContext_AgentsConfig_adviser(_ contex... method _AgentsConfig_reflector (line 9138) | func (ec *executionContext) _AgentsConfig_reflector(ctx context.Contex... method fieldContext_AgentsConfig_reflector (line 9169) | func (ec *executionContext) fieldContext_AgentsConfig_reflector(_ cont... method _AgentsConfig_searcher (line 9208) | func (ec *executionContext) _AgentsConfig_searcher(ctx context.Context... method fieldContext_AgentsConfig_searcher (line 9239) | func (ec *executionContext) fieldContext_AgentsConfig_searcher(_ conte... method _AgentsConfig_enricher (line 9278) | func (ec *executionContext) _AgentsConfig_enricher(ctx context.Context... method fieldContext_AgentsConfig_enricher (line 9309) | func (ec *executionContext) fieldContext_AgentsConfig_enricher(_ conte... method _AgentsConfig_coder (line 9348) | func (ec *executionContext) _AgentsConfig_coder(ctx context.Context, f... method fieldContext_AgentsConfig_coder (line 9379) | func (ec *executionContext) fieldContext_AgentsConfig_coder(_ context.... method _AgentsConfig_installer (line 9418) | func (ec *executionContext) _AgentsConfig_installer(ctx context.Contex... method fieldContext_AgentsConfig_installer (line 9449) | func (ec *executionContext) fieldContext_AgentsConfig_installer(_ cont... method _AgentsConfig_pentester (line 9488) | func (ec *executionContext) _AgentsConfig_pentester(ctx context.Contex... method fieldContext_AgentsConfig_pentester (line 9519) | func (ec *executionContext) fieldContext_AgentsConfig_pentester(_ cont... method _AgentsPrompts_primaryAgent (line 9558) | func (ec *executionContext) _AgentsPrompts_primaryAgent(ctx context.Co... method fieldContext_AgentsPrompts_primaryAgent (line 9589) | func (ec *executionContext) fieldContext_AgentsPrompts_primaryAgent(_ ... method _AgentsPrompts_assistant (line 9606) | func (ec *executionContext) _AgentsPrompts_assistant(ctx context.Conte... method fieldContext_AgentsPrompts_assistant (line 9637) | func (ec *executionContext) fieldContext_AgentsPrompts_assistant(_ con... method _AgentsPrompts_pentester (line 9654) | func (ec *executionContext) _AgentsPrompts_pentester(ctx context.Conte... method fieldContext_AgentsPrompts_pentester (line 9685) | func (ec *executionContext) fieldContext_AgentsPrompts_pentester(_ con... method _AgentsPrompts_coder (line 9704) | func (ec *executionContext) _AgentsPrompts_coder(ctx context.Context, ... method fieldContext_AgentsPrompts_coder (line 9735) | func (ec *executionContext) fieldContext_AgentsPrompts_coder(_ context... method _AgentsPrompts_installer (line 9754) | func (ec *executionContext) _AgentsPrompts_installer(ctx context.Conte... method fieldContext_AgentsPrompts_installer (line 9785) | func (ec *executionContext) fieldContext_AgentsPrompts_installer(_ con... method _AgentsPrompts_searcher (line 9804) | func (ec *executionContext) _AgentsPrompts_searcher(ctx context.Contex... method fieldContext_AgentsPrompts_searcher (line 9835) | func (ec *executionContext) fieldContext_AgentsPrompts_searcher(_ cont... method _AgentsPrompts_memorist (line 9854) | func (ec *executionContext) _AgentsPrompts_memorist(ctx context.Contex... method fieldContext_AgentsPrompts_memorist (line 9885) | func (ec *executionContext) fieldContext_AgentsPrompts_memorist(_ cont... method _AgentsPrompts_adviser (line 9904) | func (ec *executionContext) _AgentsPrompts_adviser(ctx context.Context... method fieldContext_AgentsPrompts_adviser (line 9935) | func (ec *executionContext) fieldContext_AgentsPrompts_adviser(_ conte... method _AgentsPrompts_generator (line 9954) | func (ec *executionContext) _AgentsPrompts_generator(ctx context.Conte... method fieldContext_AgentsPrompts_generator (line 9985) | func (ec *executionContext) fieldContext_AgentsPrompts_generator(_ con... method _AgentsPrompts_refiner (line 10004) | func (ec *executionContext) _AgentsPrompts_refiner(ctx context.Context... method fieldContext_AgentsPrompts_refiner (line 10035) | func (ec *executionContext) fieldContext_AgentsPrompts_refiner(_ conte... method _AgentsPrompts_reporter (line 10054) | func (ec *executionContext) _AgentsPrompts_reporter(ctx context.Contex... method fieldContext_AgentsPrompts_reporter (line 10085) | func (ec *executionContext) fieldContext_AgentsPrompts_reporter(_ cont... method _AgentsPrompts_reflector (line 10104) | func (ec *executionContext) _AgentsPrompts_reflector(ctx context.Conte... method fieldContext_AgentsPrompts_reflector (line 10135) | func (ec *executionContext) fieldContext_AgentsPrompts_reflector(_ con... method _AgentsPrompts_enricher (line 10154) | func (ec *executionContext) _AgentsPrompts_enricher(ctx context.Contex... method fieldContext_AgentsPrompts_enricher (line 10185) | func (ec *executionContext) fieldContext_AgentsPrompts_enricher(_ cont... method _AgentsPrompts_toolCallFixer (line 10204) | func (ec *executionContext) _AgentsPrompts_toolCallFixer(ctx context.C... method fieldContext_AgentsPrompts_toolCallFixer (line 10235) | func (ec *executionContext) fieldContext_AgentsPrompts_toolCallFixer(_... method _AgentsPrompts_summarizer (line 10254) | func (ec *executionContext) _AgentsPrompts_summarizer(ctx context.Cont... method fieldContext_AgentsPrompts_summarizer (line 10285) | func (ec *executionContext) fieldContext_AgentsPrompts_summarizer(_ co... method _Assistant_id (line 10302) | func (ec *executionContext) _Assistant_id(ctx context.Context, field g... method fieldContext_Assistant_id (line 10333) | func (ec *executionContext) fieldContext_Assistant_id(_ context.Contex... method _Assistant_title (line 10346) | func (ec *executionContext) _Assistant_title(ctx context.Context, fiel... method fieldContext_Assistant_title (line 10377) | func (ec *executionContext) fieldContext_Assistant_title(_ context.Con... method _Assistant_status (line 10390) | func (ec *executionContext) _Assistant_status(ctx context.Context, fie... method fieldContext_Assistant_status (line 10421) | func (ec *executionContext) fieldContext_Assistant_status(_ context.Co... method _Assistant_provider (line 10434) | func (ec *executionContext) _Assistant_provider(ctx context.Context, f... method fieldContext_Assistant_provider (line 10465) | func (ec *executionContext) fieldContext_Assistant_provider(_ context.... method _Assistant_flowId (line 10484) | func (ec *executionContext) _Assistant_flowId(ctx context.Context, fie... method fieldContext_Assistant_flowId (line 10515) | func (ec *executionContext) fieldContext_Assistant_flowId(_ context.Co... method _Assistant_useAgents (line 10528) | func (ec *executionContext) _Assistant_useAgents(ctx context.Context, ... method fieldContext_Assistant_useAgents (line 10559) | func (ec *executionContext) fieldContext_Assistant_useAgents(_ context... method _Assistant_createdAt (line 10572) | func (ec *executionContext) _Assistant_createdAt(ctx context.Context, ... method fieldContext_Assistant_createdAt (line 10603) | func (ec *executionContext) fieldContext_Assistant_createdAt(_ context... method _Assistant_updatedAt (line 10616) | func (ec *executionContext) _Assistant_updatedAt(ctx context.Context, ... method fieldContext_Assistant_updatedAt (line 10647) | func (ec *executionContext) fieldContext_Assistant_updatedAt(_ context... method _AssistantLog_id (line 10660) | func (ec *executionContext) _AssistantLog_id(ctx context.Context, fiel... method fieldContext_AssistantLog_id (line 10691) | func (ec *executionContext) fieldContext_AssistantLog_id(_ context.Con... method _AssistantLog_type (line 10704) | func (ec *executionContext) _AssistantLog_type(ctx context.Context, fi... method fieldContext_AssistantLog_type (line 10735) | func (ec *executionContext) fieldContext_AssistantLog_type(_ context.C... method _AssistantLog_message (line 10748) | func (ec *executionContext) _AssistantLog_message(ctx context.Context,... method fieldContext_AssistantLog_message (line 10779) | func (ec *executionContext) fieldContext_AssistantLog_message(_ contex... method _AssistantLog_thinking (line 10792) | func (ec *executionContext) _AssistantLog_thinking(ctx context.Context... method fieldContext_AssistantLog_thinking (line 10820) | func (ec *executionContext) fieldContext_AssistantLog_thinking(_ conte... method _AssistantLog_result (line 10833) | func (ec *executionContext) _AssistantLog_result(ctx context.Context, ... method fieldContext_AssistantLog_result (line 10864) | func (ec *executionContext) fieldContext_AssistantLog_result(_ context... method _AssistantLog_resultFormat (line 10877) | func (ec *executionContext) _AssistantLog_resultFormat(ctx context.Con... method fieldContext_AssistantLog_resultFormat (line 10908) | func (ec *executionContext) fieldContext_AssistantLog_resultFormat(_ c... method _AssistantLog_appendPart (line 10921) | func (ec *executionContext) _AssistantLog_appendPart(ctx context.Conte... method fieldContext_AssistantLog_appendPart (line 10952) | func (ec *executionContext) fieldContext_AssistantLog_appendPart(_ con... method _AssistantLog_flowId (line 10965) | func (ec *executionContext) _AssistantLog_flowId(ctx context.Context, ... method fieldContext_AssistantLog_flowId (line 10996) | func (ec *executionContext) fieldContext_AssistantLog_flowId(_ context... method _AssistantLog_assistantId (line 11009) | func (ec *executionContext) _AssistantLog_assistantId(ctx context.Cont... method fieldContext_AssistantLog_assistantId (line 11040) | func (ec *executionContext) fieldContext_AssistantLog_assistantId(_ co... method _AssistantLog_createdAt (line 11053) | func (ec *executionContext) _AssistantLog_createdAt(ctx context.Contex... method fieldContext_AssistantLog_createdAt (line 11084) | func (ec *executionContext) fieldContext_AssistantLog_createdAt(_ cont... method _DailyFlowsStats_date (line 11097) | func (ec *executionContext) _DailyFlowsStats_date(ctx context.Context,... method fieldContext_DailyFlowsStats_date (line 11128) | func (ec *executionContext) fieldContext_DailyFlowsStats_date(_ contex... method _DailyFlowsStats_stats (line 11141) | func (ec *executionContext) _DailyFlowsStats_stats(ctx context.Context... method fieldContext_DailyFlowsStats_stats (line 11172) | func (ec *executionContext) fieldContext_DailyFlowsStats_stats(_ conte... method _DailyToolcallsStats_date (line 11195) | func (ec *executionContext) _DailyToolcallsStats_date(ctx context.Cont... method fieldContext_DailyToolcallsStats_date (line 11226) | func (ec *executionContext) fieldContext_DailyToolcallsStats_date(_ co... method _DailyToolcallsStats_stats (line 11239) | func (ec *executionContext) _DailyToolcallsStats_stats(ctx context.Con... method fieldContext_DailyToolcallsStats_stats (line 11270) | func (ec *executionContext) fieldContext_DailyToolcallsStats_stats(_ c... method _DailyUsageStats_date (line 11289) | func (ec *executionContext) _DailyUsageStats_date(ctx context.Context,... method fieldContext_DailyUsageStats_date (line 11320) | func (ec *executionContext) fieldContext_DailyUsageStats_date(_ contex... method _DailyUsageStats_stats (line 11333) | func (ec *executionContext) _DailyUsageStats_stats(ctx context.Context... method fieldContext_DailyUsageStats_stats (line 11364) | func (ec *executionContext) fieldContext_DailyUsageStats_stats(_ conte... method _DefaultPrompt_type (line 11391) | func (ec *executionContext) _DefaultPrompt_type(ctx context.Context, f... method fieldContext_DefaultPrompt_type (line 11422) | func (ec *executionContext) fieldContext_DefaultPrompt_type(_ context.... method _DefaultPrompt_template (line 11435) | func (ec *executionContext) _DefaultPrompt_template(ctx context.Contex... method fieldContext_DefaultPrompt_template (line 11466) | func (ec *executionContext) fieldContext_DefaultPrompt_template(_ cont... method _DefaultPrompt_variables (line 11479) | func (ec *executionContext) _DefaultPrompt_variables(ctx context.Conte... method fieldContext_DefaultPrompt_variables (line 11510) | func (ec *executionContext) fieldContext_DefaultPrompt_variables(_ con... method _DefaultPrompts_agents (line 11523) | func (ec *executionContext) _DefaultPrompts_agents(ctx context.Context... method fieldContext_DefaultPrompts_agents (line 11554) | func (ec *executionContext) fieldContext_DefaultPrompts_agents(_ conte... method _DefaultPrompts_tools (line 11599) | func (ec *executionContext) _DefaultPrompts_tools(ctx context.Context,... method fieldContext_DefaultPrompts_tools (line 11630) | func (ec *executionContext) fieldContext_DefaultPrompts_tools(_ contex... method _DefaultProvidersConfig_openai (line 11669) | func (ec *executionContext) _DefaultProvidersConfig_openai(ctx context... method fieldContext_DefaultProvidersConfig_openai (line 11700) | func (ec *executionContext) fieldContext_DefaultProvidersConfig_openai... method _DefaultProvidersConfig_anthropic (line 11727) | func (ec *executionContext) _DefaultProvidersConfig_anthropic(ctx cont... method fieldContext_DefaultProvidersConfig_anthropic (line 11758) | func (ec *executionContext) fieldContext_DefaultProvidersConfig_anthro... method _DefaultProvidersConfig_gemini (line 11785) | func (ec *executionContext) _DefaultProvidersConfig_gemini(ctx context... method fieldContext_DefaultProvidersConfig_gemini (line 11813) | func (ec *executionContext) fieldContext_DefaultProvidersConfig_gemini... method _DefaultProvidersConfig_bedrock (line 11840) | func (ec *executionContext) _DefaultProvidersConfig_bedrock(ctx contex... method fieldContext_DefaultProvidersConfig_bedrock (line 11868) | func (ec *executionContext) fieldContext_DefaultProvidersConfig_bedroc... method _DefaultProvidersConfig_ollama (line 11895) | func (ec *executionContext) _DefaultProvidersConfig_ollama(ctx context... method fieldContext_DefaultProvidersConfig_ollama (line 11923) | func (ec *executionContext) fieldContext_DefaultProvidersConfig_ollama... method _DefaultProvidersConfig_custom (line 11950) | func (ec *executionContext) _DefaultProvidersConfig_custom(ctx context... method fieldContext_DefaultProvidersConfig_custom (line 11978) | func (ec *executionContext) fieldContext_DefaultProvidersConfig_custom... method _DefaultProvidersConfig_deepseek (line 12005) | func (ec *executionContext) _DefaultProvidersConfig_deepseek(ctx conte... method fieldContext_DefaultProvidersConfig_deepseek (line 12033) | func (ec *executionContext) fieldContext_DefaultProvidersConfig_deepse... method _DefaultProvidersConfig_glm (line 12060) | func (ec *executionContext) _DefaultProvidersConfig_glm(ctx context.Co... method fieldContext_DefaultProvidersConfig_glm (line 12088) | func (ec *executionContext) fieldContext_DefaultProvidersConfig_glm(_ ... method _DefaultProvidersConfig_kimi (line 12115) | func (ec *executionContext) _DefaultProvidersConfig_kimi(ctx context.C... method fieldContext_DefaultProvidersConfig_kimi (line 12143) | func (ec *executionContext) fieldContext_DefaultProvidersConfig_kimi(_... method _DefaultProvidersConfig_qwen (line 12170) | func (ec *executionContext) _DefaultProvidersConfig_qwen(ctx context.C... method fieldContext_DefaultProvidersConfig_qwen (line 12198) | func (ec *executionContext) fieldContext_DefaultProvidersConfig_qwen(_... method _Flow_id (line 12225) | func (ec *executionContext) _Flow_id(ctx context.Context, field graphq... method fieldContext_Flow_id (line 12256) | func (ec *executionContext) fieldContext_Flow_id(_ context.Context, fi... method _Flow_title (line 12269) | func (ec *executionContext) _Flow_title(ctx context.Context, field gra... method fieldContext_Flow_title (line 12300) | func (ec *executionContext) fieldContext_Flow_title(_ context.Context,... method _Flow_status (line 12313) | func (ec *executionContext) _Flow_status(ctx context.Context, field gr... method fieldContext_Flow_status (line 12344) | func (ec *executionContext) fieldContext_Flow_status(_ context.Context... method _Flow_terminals (line 12357) | func (ec *executionContext) _Flow_terminals(ctx context.Context, field... method fieldContext_Flow_terminals (line 12385) | func (ec *executionContext) fieldContext_Flow_terminals(_ context.Cont... method _Flow_provider (line 12412) | func (ec *executionContext) _Flow_provider(ctx context.Context, field ... method fieldContext_Flow_provider (line 12443) | func (ec *executionContext) fieldContext_Flow_provider(_ context.Conte... method _Flow_createdAt (line 12462) | func (ec *executionContext) _Flow_createdAt(ctx context.Context, field... method fieldContext_Flow_createdAt (line 12493) | func (ec *executionContext) fieldContext_Flow_createdAt(_ context.Cont... method _Flow_updatedAt (line 12506) | func (ec *executionContext) _Flow_updatedAt(ctx context.Context, field... method fieldContext_Flow_updatedAt (line 12537) | func (ec *executionContext) fieldContext_Flow_updatedAt(_ context.Cont... method _FlowAssistant_flow (line 12550) | func (ec *executionContext) _FlowAssistant_flow(ctx context.Context, f... method fieldContext_FlowAssistant_flow (line 12581) | func (ec *executionContext) fieldContext_FlowAssistant_flow(_ context.... method _FlowAssistant_assistant (line 12610) | func (ec *executionContext) _FlowAssistant_assistant(ctx context.Conte... method fieldContext_FlowAssistant_assistant (line 12641) | func (ec *executionContext) fieldContext_FlowAssistant_assistant(_ con... method _FlowExecutionStats_flowId (line 12672) | func (ec *executionContext) _FlowExecutionStats_flowId(ctx context.Con... method fieldContext_FlowExecutionStats_flowId (line 12703) | func (ec *executionContext) fieldContext_FlowExecutionStats_flowId(_ c... method _FlowExecutionStats_flowTitle (line 12716) | func (ec *executionContext) _FlowExecutionStats_flowTitle(ctx context.... method fieldContext_FlowExecutionStats_flowTitle (line 12747) | func (ec *executionContext) fieldContext_FlowExecutionStats_flowTitle(... method _FlowExecutionStats_totalDurationSeconds (line 12760) | func (ec *executionContext) _FlowExecutionStats_totalDurationSeconds(c... method fieldContext_FlowExecutionStats_totalDurationSeconds (line 12791) | func (ec *executionContext) fieldContext_FlowExecutionStats_totalDurat... method _FlowExecutionStats_totalToolcallsCount (line 12804) | func (ec *executionContext) _FlowExecutionStats_totalToolcallsCount(ct... method fieldContext_FlowExecutionStats_totalToolcallsCount (line 12835) | func (ec *executionContext) fieldContext_FlowExecutionStats_totalToolc... method _FlowExecutionStats_totalAssistantsCount (line 12848) | func (ec *executionContext) _FlowExecutionStats_totalAssistantsCount(c... method fieldContext_FlowExecutionStats_totalAssistantsCount (line 12879) | func (ec *executionContext) fieldContext_FlowExecutionStats_totalAssis... method _FlowExecutionStats_tasks (line 12892) | func (ec *executionContext) _FlowExecutionStats_tasks(ctx context.Cont... method fieldContext_FlowExecutionStats_tasks (line 12923) | func (ec *executionContext) fieldContext_FlowExecutionStats_tasks(_ co... method _FlowStats_totalTasksCount (line 12948) | func (ec *executionContext) _FlowStats_totalTasksCount(ctx context.Con... method fieldContext_FlowStats_totalTasksCount (line 12979) | func (ec *executionContext) fieldContext_FlowStats_totalTasksCount(_ c... method _FlowStats_totalSubtasksCount (line 12992) | func (ec *executionContext) _FlowStats_totalSubtasksCount(ctx context.... method fieldContext_FlowStats_totalSubtasksCount (line 13023) | func (ec *executionContext) fieldContext_FlowStats_totalSubtasksCount(... method _FlowStats_totalAssistantsCount (line 13036) | func (ec *executionContext) _FlowStats_totalAssistantsCount(ctx contex... method fieldContext_FlowStats_totalAssistantsCount (line 13067) | func (ec *executionContext) fieldContext_FlowStats_totalAssistantsCoun... method _FlowsStats_totalFlowsCount (line 13080) | func (ec *executionContext) _FlowsStats_totalFlowsCount(ctx context.Co... method fieldContext_FlowsStats_totalFlowsCount (line 13111) | func (ec *executionContext) fieldContext_FlowsStats_totalFlowsCount(_ ... method _FlowsStats_totalTasksCount (line 13124) | func (ec *executionContext) _FlowsStats_totalTasksCount(ctx context.Co... method fieldContext_FlowsStats_totalTasksCount (line 13155) | func (ec *executionContext) fieldContext_FlowsStats_totalTasksCount(_ ... method _FlowsStats_totalSubtasksCount (line 13168) | func (ec *executionContext) _FlowsStats_totalSubtasksCount(ctx context... method fieldContext_FlowsStats_totalSubtasksCount (line 13199) | func (ec *executionContext) fieldContext_FlowsStats_totalSubtasksCount... method _FlowsStats_totalAssistantsCount (line 13212) | func (ec *executionContext) _FlowsStats_totalAssistantsCount(ctx conte... method fieldContext_FlowsStats_totalAssistantsCount (line 13243) | func (ec *executionContext) fieldContext_FlowsStats_totalAssistantsCou... method _FunctionToolcallsStats_functionName (line 13256) | func (ec *executionContext) _FunctionToolcallsStats_functionName(ctx c... method fieldContext_FunctionToolcallsStats_functionName (line 13287) | func (ec *executionContext) fieldContext_FunctionToolcallsStats_functi... method _FunctionToolcallsStats_isAgent (line 13300) | func (ec *executionContext) _FunctionToolcallsStats_isAgent(ctx contex... method fieldContext_FunctionToolcallsStats_isAgent (line 13331) | func (ec *executionContext) fieldContext_FunctionToolcallsStats_isAgen... method _FunctionToolcallsStats_totalCount (line 13344) | func (ec *executionContext) _FunctionToolcallsStats_totalCount(ctx con... method fieldContext_FunctionToolcallsStats_totalCount (line 13375) | func (ec *executionContext) fieldContext_FunctionToolcallsStats_totalC... method _FunctionToolcallsStats_totalDurationSeconds (line 13388) | func (ec *executionContext) _FunctionToolcallsStats_totalDurationSecon... method fieldContext_FunctionToolcallsStats_totalDurationSeconds (line 13419) | func (ec *executionContext) fieldContext_FunctionToolcallsStats_totalD... method _FunctionToolcallsStats_avgDurationSeconds (line 13432) | func (ec *executionContext) _FunctionToolcallsStats_avgDurationSeconds... method fieldContext_FunctionToolcallsStats_avgDurationSeconds (line 13463) | func (ec *executionContext) fieldContext_FunctionToolcallsStats_avgDur... method _MessageLog_id (line 13476) | func (ec *executionContext) _MessageLog_id(ctx context.Context, field ... method fieldContext_MessageLog_id (line 13507) | func (ec *executionContext) fieldContext_MessageLog_id(_ context.Conte... method _MessageLog_type (line 13520) | func (ec *executionContext) _MessageLog_type(ctx context.Context, fiel... method fieldContext_MessageLog_type (line 13551) | func (ec *executionContext) fieldContext_MessageLog_type(_ context.Con... method _MessageLog_message (line 13564) | func (ec *executionContext) _MessageLog_message(ctx context.Context, f... method fieldContext_MessageLog_message (line 13595) | func (ec *executionContext) fieldContext_MessageLog_message(_ context.... method _MessageLog_thinking (line 13608) | func (ec *executionContext) _MessageLog_thinking(ctx context.Context, ... method fieldContext_MessageLog_thinking (line 13636) | func (ec *executionContext) fieldContext_MessageLog_thinking(_ context... method _MessageLog_result (line 13649) | func (ec *executionContext) _MessageLog_result(ctx context.Context, fi... method fieldContext_MessageLog_result (line 13680) | func (ec *executionContext) fieldContext_MessageLog_result(_ context.C... method _MessageLog_resultFormat (line 13693) | func (ec *executionContext) _MessageLog_resultFormat(ctx context.Conte... method fieldContext_MessageLog_resultFormat (line 13724) | func (ec *executionContext) fieldContext_MessageLog_resultFormat(_ con... method _MessageLog_flowId (line 13737) | func (ec *executionContext) _MessageLog_flowId(ctx context.Context, fi... method fieldContext_MessageLog_flowId (line 13768) | func (ec *executionContext) fieldContext_MessageLog_flowId(_ context.C... method _MessageLog_taskId (line 13781) | func (ec *executionContext) _MessageLog_taskId(ctx context.Context, fi... method fieldContext_MessageLog_taskId (line 13809) | func (ec *executionContext) fieldContext_MessageLog_taskId(_ context.C... method _MessageLog_subtaskId (line 13822) | func (ec *executionContext) _MessageLog_subtaskId(ctx context.Context,... method fieldContext_MessageLog_subtaskId (line 13850) | func (ec *executionContext) fieldContext_MessageLog_subtaskId(_ contex... method _MessageLog_createdAt (line 13863) | func (ec *executionContext) _MessageLog_createdAt(ctx context.Context,... method fieldContext_MessageLog_createdAt (line 13894) | func (ec *executionContext) fieldContext_MessageLog_createdAt(_ contex... method _ModelConfig_name (line 13907) | func (ec *executionContext) _ModelConfig_name(ctx context.Context, fie... method fieldContext_ModelConfig_name (line 13938) | func (ec *executionContext) fieldContext_ModelConfig_name(_ context.Co... method _ModelConfig_description (line 13951) | func (ec *executionContext) _ModelConfig_description(ctx context.Conte... method fieldContext_ModelConfig_description (line 13979) | func (ec *executionContext) fieldContext_ModelConfig_description(_ con... method _ModelConfig_releaseDate (line 13992) | func (ec *executionContext) _ModelConfig_releaseDate(ctx context.Conte... method fieldContext_ModelConfig_releaseDate (line 14020) | func (ec *executionContext) fieldContext_ModelConfig_releaseDate(_ con... method _ModelConfig_thinking (line 14033) | func (ec *executionContext) _ModelConfig_thinking(ctx context.Context,... method fieldContext_ModelConfig_thinking (line 14061) | func (ec *executionContext) fieldContext_ModelConfig_thinking(_ contex... method _ModelConfig_price (line 14074) | func (ec *executionContext) _ModelConfig_price(ctx context.Context, fi... method fieldContext_ModelConfig_price (line 14102) | func (ec *executionContext) fieldContext_ModelConfig_price(_ context.C... method _ModelPrice_input (line 14125) | func (ec *executionContext) _ModelPrice_input(ctx context.Context, fie... method fieldContext_ModelPrice_input (line 14156) | func (ec *executionContext) fieldContext_ModelPrice_input(_ context.Co... method _ModelPrice_output (line 14169) | func (ec *executionContext) _ModelPrice_output(ctx context.Context, fi... method fieldContext_ModelPrice_output (line 14200) | func (ec *executionContext) fieldContext_ModelPrice_output(_ context.C... method _ModelPrice_cacheRead (line 14213) | func (ec *executionContext) _ModelPrice_cacheRead(ctx context.Context,... method fieldContext_ModelPrice_cacheRead (line 14244) | func (ec *executionContext) fieldContext_ModelPrice_cacheRead(_ contex... method _ModelPrice_cacheWrite (line 14257) | func (ec *executionContext) _ModelPrice_cacheWrite(ctx context.Context... method fieldContext_ModelPrice_cacheWrite (line 14288) | func (ec *executionContext) fieldContext_ModelPrice_cacheWrite(_ conte... method _ModelUsageStats_model (line 14301) | func (ec *executionContext) _ModelUsageStats_model(ctx context.Context... method fieldContext_ModelUsageStats_model (line 14332) | func (ec *executionContext) fieldContext_ModelUsageStats_model(_ conte... method _ModelUsageStats_provider (line 14345) | func (ec *executionContext) _ModelUsageStats_provider(ctx context.Cont... method fieldContext_ModelUsageStats_provider (line 14376) | func (ec *executionContext) fieldContext_ModelUsageStats_provider(_ co... method _ModelUsageStats_stats (line 14389) | func (ec *executionContext) _ModelUsageStats_stats(ctx context.Context... method fieldContext_ModelUsageStats_stats (line 14420) | func (ec *executionContext) fieldContext_ModelUsageStats_stats(_ conte... method _Mutation_createFlow (line 14447) | func (ec *executionContext) _Mutation_createFlow(ctx context.Context, ... method fieldContext_Mutation_createFlow (line 14478) | func (ec *executionContext) fieldContext_Mutation_createFlow(ctx conte... method _Mutation_putUserInput (line 14518) | func (ec *executionContext) _Mutation_putUserInput(ctx context.Context... method fieldContext_Mutation_putUserInput (line 14549) | func (ec *executionContext) fieldContext_Mutation_putUserInput(ctx con... method _Mutation_stopFlow (line 14573) | func (ec *executionContext) _Mutation_stopFlow(ctx context.Context, fi... method fieldContext_Mutation_stopFlow (line 14604) | func (ec *executionContext) fieldContext_Mutation_stopFlow(ctx context... method _Mutation_finishFlow (line 14628) | func (ec *executionContext) _Mutation_finishFlow(ctx context.Context, ... method fieldContext_Mutation_finishFlow (line 14659) | func (ec *executionContext) fieldContext_Mutation_finishFlow(ctx conte... method _Mutation_deleteFlow (line 14683) | func (ec *executionContext) _Mutation_deleteFlow(ctx context.Context, ... method fieldContext_Mutation_deleteFlow (line 14714) | func (ec *executionContext) fieldContext_Mutation_deleteFlow(ctx conte... method _Mutation_renameFlow (line 14738) | func (ec *executionContext) _Mutation_renameFlow(ctx context.Context, ... method fieldContext_Mutation_renameFlow (line 14769) | func (ec *executionContext) fieldContext_Mutation_renameFlow(ctx conte... method _Mutation_createAssistant (line 14793) | func (ec *executionContext) _Mutation_createAssistant(ctx context.Cont... method fieldContext_Mutation_createAssistant (line 14824) | func (ec *executionContext) fieldContext_Mutation_createAssistant(ctx ... method _Mutation_callAssistant (line 14854) | func (ec *executionContext) _Mutation_callAssistant(ctx context.Contex... method fieldContext_Mutation_callAssistant (line 14885) | func (ec *executionContext) fieldContext_Mutation_callAssistant(ctx co... method _Mutation_stopAssistant (line 14909) | func (ec *executionContext) _Mutation_stopAssistant(ctx context.Contex... method fieldContext_Mutation_stopAssistant (line 14940) | func (ec *executionContext) fieldContext_Mutation_stopAssistant(ctx co... method _Mutation_deleteAssistant (line 14982) | func (ec *executionContext) _Mutation_deleteAssistant(ctx context.Cont... method fieldContext_Mutation_deleteAssistant (line 15013) | func (ec *executionContext) fieldContext_Mutation_deleteAssistant(ctx ... method _Mutation_testAgent (line 15037) | func (ec *executionContext) _Mutation_testAgent(ctx context.Context, f... method fieldContext_Mutation_testAgent (line 15068) | func (ec *executionContext) fieldContext_Mutation_testAgent(ctx contex... method _Mutation_testProvider (line 15096) | func (ec *executionContext) _Mutation_testProvider(ctx context.Context... method fieldContext_Mutation_testProvider (line 15127) | func (ec *executionContext) fieldContext_Mutation_testProvider(ctx con... method _Mutation_createProvider (line 15179) | func (ec *executionContext) _Mutation_createProvider(ctx context.Conte... method fieldContext_Mutation_createProvider (line 15210) | func (ec *executionContext) fieldContext_Mutation_createProvider(ctx c... method _Mutation_updateProvider (line 15248) | func (ec *executionContext) _Mutation_updateProvider(ctx context.Conte... method fieldContext_Mutation_updateProvider (line 15279) | func (ec *executionContext) fieldContext_Mutation_updateProvider(ctx c... method _Mutation_deleteProvider (line 15317) | func (ec *executionContext) _Mutation_deleteProvider(ctx context.Conte... method fieldContext_Mutation_deleteProvider (line 15348) | func (ec *executionContext) fieldContext_Mutation_deleteProvider(ctx c... method _Mutation_validatePrompt (line 15372) | func (ec *executionContext) _Mutation_validatePrompt(ctx context.Conte... method fieldContext_Mutation_validatePrompt (line 15403) | func (ec *executionContext) fieldContext_Mutation_validatePrompt(ctx c... method _Mutation_createPrompt (line 15439) | func (ec *executionContext) _Mutation_createPrompt(ctx context.Context... method fieldContext_Mutation_createPrompt (line 15470) | func (ec *executionContext) fieldContext_Mutation_createPrompt(ctx con... method _Mutation_updatePrompt (line 15506) | func (ec *executionContext) _Mutation_updatePrompt(ctx context.Context... method fieldContext_Mutation_updatePrompt (line 15537) | func (ec *executionContext) fieldContext_Mutation_updatePrompt(ctx con... method _Mutation_deletePrompt (line 15573) | func (ec *executionContext) _Mutation_deletePrompt(ctx context.Context... method fieldContext_Mutation_deletePrompt (line 15604) | func (ec *executionContext) fieldContext_Mutation_deletePrompt(ctx con... method _Mutation_createAPIToken (line 15628) | func (ec *executionContext) _Mutation_createAPIToken(ctx context.Conte... method fieldContext_Mutation_createAPIToken (line 15659) | func (ec *executionContext) fieldContext_Mutation_createAPIToken(ctx c... method _Mutation_updateAPIToken (line 15705) | func (ec *executionContext) _Mutation_updateAPIToken(ctx context.Conte... method fieldContext_Mutation_updateAPIToken (line 15736) | func (ec *executionContext) fieldContext_Mutation_updateAPIToken(ctx c... method _Mutation_deleteAPIToken (line 15780) | func (ec *executionContext) _Mutation_deleteAPIToken(ctx context.Conte... method fieldContext_Mutation_deleteAPIToken (line 15811) | func (ec *executionContext) fieldContext_Mutation_deleteAPIToken(ctx c... method _Mutation_addFavoriteFlow (line 15835) | func (ec *executionContext) _Mutation_addFavoriteFlow(ctx context.Cont... method fieldContext_Mutation_addFavoriteFlow (line 15866) | func (ec *executionContext) fieldContext_Mutation_addFavoriteFlow(ctx ... method _Mutation_deleteFavoriteFlow (line 15890) | func (ec *executionContext) _Mutation_deleteFavoriteFlow(ctx context.C... method fieldContext_Mutation_deleteFavoriteFlow (line 15921) | func (ec *executionContext) fieldContext_Mutation_deleteFavoriteFlow(c... method _PromptValidationResult_result (line 15945) | func (ec *executionContext) _PromptValidationResult_result(ctx context... method fieldContext_PromptValidationResult_result (line 15976) | func (ec *executionContext) fieldContext_PromptValidationResult_result... method _PromptValidationResult_errorType (line 15989) | func (ec *executionContext) _PromptValidationResult_errorType(ctx cont... method fieldContext_PromptValidationResult_errorType (line 16017) | func (ec *executionContext) fieldContext_PromptValidationResult_errorT... method _PromptValidationResult_message (line 16030) | func (ec *executionContext) _PromptValidationResult_message(ctx contex... method fieldContext_PromptValidationResult_message (line 16058) | func (ec *executionContext) fieldContext_PromptValidationResult_messag... method _PromptValidationResult_line (line 16071) | func (ec *executionContext) _PromptValidationResult_line(ctx context.C... method fieldContext_PromptValidationResult_line (line 16099) | func (ec *executionContext) fieldContext_PromptValidationResult_line(_... method _PromptValidationResult_details (line 16112) | func (ec *executionContext) _PromptValidationResult_details(ctx contex... method fieldContext_PromptValidationResult_details (line 16140) | func (ec *executionContext) fieldContext_PromptValidationResult_detail... method _PromptsConfig_default (line 16153) | func (ec *executionContext) _PromptsConfig_default(ctx context.Context... method fieldContext_PromptsConfig_default (line 16184) | func (ec *executionContext) fieldContext_PromptsConfig_default(_ conte... method _PromptsConfig_userDefined (line 16203) | func (ec *executionContext) _PromptsConfig_userDefined(ctx context.Con... method fieldContext_PromptsConfig_userDefined (line 16231) | func (ec *executionContext) fieldContext_PromptsConfig_userDefined(_ c... method _Provider_name (line 16256) | func (ec *executionContext) _Provider_name(ctx context.Context, field ... method fieldContext_Provider_name (line 16287) | func (ec *executionContext) fieldContext_Provider_name(_ context.Conte... method _Provider_type (line 16300) | func (ec *executionContext) _Provider_type(ctx context.Context, field ... method fieldContext_Provider_type (line 16331) | func (ec *executionContext) fieldContext_Provider_type(_ context.Conte... method _ProviderConfig_id (line 16344) | func (ec *executionContext) _ProviderConfig_id(ctx context.Context, fi... method fieldContext_ProviderConfig_id (line 16375) | func (ec *executionContext) fieldContext_ProviderConfig_id(_ context.C... method _ProviderConfig_name (line 16388) | func (ec *executionContext) _ProviderConfig_name(ctx context.Context, ... method fieldContext_ProviderConfig_name (line 16419) | func (ec *executionContext) fieldContext_ProviderConfig_name(_ context... method _ProviderConfig_type (line 16432) | func (ec *executionContext) _ProviderConfig_type(ctx context.Context, ... method fieldContext_ProviderConfig_type (line 16463) | func (ec *executionContext) fieldContext_ProviderConfig_type(_ context... method _ProviderConfig_agents (line 16476) | func (ec *executionContext) _ProviderConfig_agents(ctx context.Context... method fieldContext_ProviderConfig_agents (line 16507) | func (ec *executionContext) fieldContext_ProviderConfig_agents(_ conte... method _ProviderConfig_createdAt (line 16548) | func (ec *executionContext) _ProviderConfig_createdAt(ctx context.Cont... method fieldContext_ProviderConfig_createdAt (line 16579) | func (ec *executionContext) fieldContext_ProviderConfig_createdAt(_ co... method _ProviderConfig_updatedAt (line 16592) | func (ec *executionContext) _ProviderConfig_updatedAt(ctx context.Cont... method fieldContext_ProviderConfig_updatedAt (line 16623) | func (ec *executionContext) fieldContext_ProviderConfig_updatedAt(_ co... method _ProviderTestResult_simple (line 16636) | func (ec *executionContext) _ProviderTestResult_simple(ctx context.Con... method fieldContext_ProviderTestResult_simple (line 16667) | func (ec *executionContext) fieldContext_ProviderTestResult_simple(_ c... method _ProviderTestResult_simpleJson (line 16684) | func (ec *executionContext) _ProviderTestResult_simpleJson(ctx context... method fieldContext_ProviderTestResult_simpleJson (line 16715) | func (ec *executionContext) fieldContext_ProviderTestResult_simpleJson... method _ProviderTestResult_primaryAgent (line 16732) | func (ec *executionContext) _ProviderTestResult_primaryAgent(ctx conte... method fieldContext_ProviderTestResult_primaryAgent (line 16763) | func (ec *executionContext) fieldContext_ProviderTestResult_primaryAge... method _ProviderTestResult_assistant (line 16780) | func (ec *executionContext) _ProviderTestResult_assistant(ctx context.... method fieldContext_ProviderTestResult_assistant (line 16811) | func (ec *executionContext) fieldContext_ProviderTestResult_assistant(... method _ProviderTestResult_generator (line 16828) | func (ec *executionContext) _ProviderTestResult_generator(ctx context.... method fieldContext_ProviderTestResult_generator (line 16859) | func (ec *executionContext) fieldContext_ProviderTestResult_generator(... method _ProviderTestResult_refiner (line 16876) | func (ec *executionContext) _ProviderTestResult_refiner(ctx context.Co... method fieldContext_ProviderTestResult_refiner (line 16907) | func (ec *executionContext) fieldContext_ProviderTestResult_refiner(_ ... method _ProviderTestResult_adviser (line 16924) | func (ec *executionContext) _ProviderTestResult_adviser(ctx context.Co... method fieldContext_ProviderTestResult_adviser (line 16955) | func (ec *executionContext) fieldContext_ProviderTestResult_adviser(_ ... method _ProviderTestResult_reflector (line 16972) | func (ec *executionContext) _ProviderTestResult_reflector(ctx context.... method fieldContext_ProviderTestResult_reflector (line 17003) | func (ec *executionContext) fieldContext_ProviderTestResult_reflector(... method _ProviderTestResult_searcher (line 17020) | func (ec *executionContext) _ProviderTestResult_searcher(ctx context.C... method fieldContext_ProviderTestResult_searcher (line 17051) | func (ec *executionContext) fieldContext_ProviderTestResult_searcher(_... method _ProviderTestResult_enricher (line 17068) | func (ec *executionContext) _ProviderTestResult_enricher(ctx context.C... method fieldContext_ProviderTestResult_enricher (line 17099) | func (ec *executionContext) fieldContext_ProviderTestResult_enricher(_... method _ProviderTestResult_coder (line 17116) | func (ec *executionContext) _ProviderTestResult_coder(ctx context.Cont... method fieldContext_ProviderTestResult_coder (line 17147) | func (ec *executionContext) fieldContext_ProviderTestResult_coder(_ co... method _ProviderTestResult_installer (line 17164) | func (ec *executionContext) _ProviderTestResult_installer(ctx context.... method fieldContext_ProviderTestResult_installer (line 17195) | func (ec *executionContext) fieldContext_ProviderTestResult_installer(... method _ProviderTestResult_pentester (line 17212) | func (ec *executionContext) _ProviderTestResult_pentester(ctx context.... method fieldContext_ProviderTestResult_pentester (line 17243) | func (ec *executionContext) fieldContext_ProviderTestResult_pentester(... method _ProviderUsageStats_provider (line 17260) | func (ec *executionContext) _ProviderUsageStats_provider(ctx context.C... method fieldContext_ProviderUsageStats_provider (line 17291) | func (ec *executionContext) fieldContext_ProviderUsageStats_provider(_... method _ProviderUsageStats_stats (line 17304) | func (ec *executionContext) _ProviderUsageStats_stats(ctx context.Cont... method fieldContext_ProviderUsageStats_stats (line 17335) | func (ec *executionContext) fieldContext_ProviderUsageStats_stats(_ co... method _ProvidersConfig_enabled (line 17362) | func (ec *executionContext) _ProvidersConfig_enabled(ctx context.Conte... method fieldContext_ProvidersConfig_enabled (line 17393) | func (ec *executionContext) fieldContext_ProvidersConfig_enabled(_ con... method _ProvidersConfig_default (line 17428) | func (ec *executionContext) _ProvidersConfig_default(ctx context.Conte... method fieldContext_ProvidersConfig_default (line 17459) | func (ec *executionContext) fieldContext_ProvidersConfig_default(_ con... method _ProvidersConfig_userDefined (line 17494) | func (ec *executionContext) _ProvidersConfig_userDefined(ctx context.C... method fieldContext_ProvidersConfig_userDefined (line 17522) | func (ec *executionContext) fieldContext_ProvidersConfig_userDefined(_... method _ProvidersConfig_models (line 17549) | func (ec *executionContext) _ProvidersConfig_models(ctx context.Contex... method fieldContext_ProvidersConfig_models (line 17580) | func (ec *executionContext) fieldContext_ProvidersConfig_models(_ cont... method _ProvidersModelsList_openai (line 17615) | func (ec *executionContext) _ProvidersModelsList_openai(ctx context.Co... method fieldContext_ProvidersModelsList_openai (line 17646) | func (ec *executionContext) fieldContext_ProvidersModelsList_openai(_ ... method _ProvidersModelsList_anthropic (line 17671) | func (ec *executionContext) _ProvidersModelsList_anthropic(ctx context... method fieldContext_ProvidersModelsList_anthropic (line 17702) | func (ec *executionContext) fieldContext_ProvidersModelsList_anthropic... method _ProvidersModelsList_gemini (line 17727) | func (ec *executionContext) _ProvidersModelsList_gemini(ctx context.Co... method fieldContext_ProvidersModelsList_gemini (line 17758) | func (ec *executionContext) fieldContext_ProvidersModelsList_gemini(_ ... method _ProvidersModelsList_bedrock (line 17783) | func (ec *executionContext) _ProvidersModelsList_bedrock(ctx context.C... method fieldContext_ProvidersModelsList_bedrock (line 17811) | func (ec *executionContext) fieldContext_ProvidersModelsList_bedrock(_... method _ProvidersModelsList_ollama (line 17836) | func (ec *executionContext) _ProvidersModelsList_ollama(ctx context.Co... method fieldContext_ProvidersModelsList_ollama (line 17864) | func (ec *executionContext) fieldContext_ProvidersModelsList_ollama(_ ... method _ProvidersModelsList_custom (line 17889) | func (ec *executionContext) _ProvidersModelsList_custom(ctx context.Co... method fieldContext_ProvidersModelsList_custom (line 17917) | func (ec *executionContext) fieldContext_ProvidersModelsList_custom(_ ... method _ProvidersModelsList_deepseek (line 17942) | func (ec *executionContext) _ProvidersModelsList_deepseek(ctx context.... method fieldContext_ProvidersModelsList_deepseek (line 17970) | func (ec *executionContext) fieldContext_ProvidersModelsList_deepseek(... method _ProvidersModelsList_glm (line 17995) | func (ec *executionContext) _ProvidersModelsList_glm(ctx context.Conte... method fieldContext_ProvidersModelsList_glm (line 18023) | func (ec *executionContext) fieldContext_ProvidersModelsList_glm(_ con... method _ProvidersModelsList_kimi (line 18048) | func (ec *executionContext) _ProvidersModelsList_kimi(ctx context.Cont... method fieldContext_ProvidersModelsList_kimi (line 18076) | func (ec *executionContext) fieldContext_ProvidersModelsList_kimi(_ co... method _ProvidersModelsList_qwen (line 18101) | func (ec *executionContext) _ProvidersModelsList_qwen(ctx context.Cont... method fieldContext_ProvidersModelsList_qwen (line 18129) | func (ec *executionContext) fieldContext_ProvidersModelsList_qwen(_ co... method _ProvidersReadinessStatus_openai (line 18154) | func (ec *executionContext) _ProvidersReadinessStatus_openai(ctx conte... method fieldContext_ProvidersReadinessStatus_openai (line 18185) | func (ec *executionContext) fieldContext_ProvidersReadinessStatus_open... method _ProvidersReadinessStatus_anthropic (line 18198) | func (ec *executionContext) _ProvidersReadinessStatus_anthropic(ctx co... method fieldContext_ProvidersReadinessStatus_anthropic (line 18229) | func (ec *executionContext) fieldContext_ProvidersReadinessStatus_anth... method _ProvidersReadinessStatus_gemini (line 18242) | func (ec *executionContext) _ProvidersReadinessStatus_gemini(ctx conte... method fieldContext_ProvidersReadinessStatus_gemini (line 18273) | func (ec *executionContext) fieldContext_ProvidersReadinessStatus_gemi... method _ProvidersReadinessStatus_bedrock (line 18286) | func (ec *executionContext) _ProvidersReadinessStatus_bedrock(ctx cont... method fieldContext_ProvidersReadinessStatus_bedrock (line 18317) | func (ec *executionContext) fieldContext_ProvidersReadinessStatus_bedr... method _ProvidersReadinessStatus_ollama (line 18330) | func (ec *executionContext) _ProvidersReadinessStatus_ollama(ctx conte... method fieldContext_ProvidersReadinessStatus_ollama (line 18361) | func (ec *executionContext) fieldContext_ProvidersReadinessStatus_olla... method _ProvidersReadinessStatus_custom (line 18374) | func (ec *executionContext) _ProvidersReadinessStatus_custom(ctx conte... method fieldContext_ProvidersReadinessStatus_custom (line 18405) | func (ec *executionContext) fieldContext_ProvidersReadinessStatus_cust... method _ProvidersReadinessStatus_deepseek (line 18418) | func (ec *executionContext) _ProvidersReadinessStatus_deepseek(ctx con... method fieldContext_ProvidersReadinessStatus_deepseek (line 18449) | func (ec *executionContext) fieldContext_ProvidersReadinessStatus_deep... method _ProvidersReadinessStatus_glm (line 18462) | func (ec *executionContext) _ProvidersReadinessStatus_glm(ctx context.... method fieldContext_ProvidersReadinessStatus_glm (line 18493) | func (ec *executionContext) fieldContext_ProvidersReadinessStatus_glm(... method _ProvidersReadinessStatus_kimi (line 18506) | func (ec *executionContext) _ProvidersReadinessStatus_kimi(ctx context... method fieldContext_ProvidersReadinessStatus_kimi (line 18537) | func (ec *executionContext) fieldContext_ProvidersReadinessStatus_kimi... method _ProvidersReadinessStatus_qwen (line 18550) | func (ec *executionContext) _ProvidersReadinessStatus_qwen(ctx context... method fieldContext_ProvidersReadinessStatus_qwen (line 18581) | func (ec *executionContext) fieldContext_ProvidersReadinessStatus_qwen... method _Query_providers (line 18594) | func (ec *executionContext) _Query_providers(ctx context.Context, fiel... method fieldContext_Query_providers (line 18625) | func (ec *executionContext) fieldContext_Query_providers(_ context.Con... method _Query_assistants (line 18644) | func (ec *executionContext) _Query_assistants(ctx context.Context, fie... method fieldContext_Query_assistants (line 18672) | func (ec *executionContext) fieldContext_Query_assistants(ctx context.... method _Query_flows (line 18714) | func (ec *executionContext) _Query_flows(ctx context.Context, field gr... method fieldContext_Query_flows (line 18742) | func (ec *executionContext) fieldContext_Query_flows(_ context.Context... method _Query_flow (line 18771) | func (ec *executionContext) _Query_flow(ctx context.Context, field gra... method fieldContext_Query_flow (line 18802) | func (ec *executionContext) fieldContext_Query_flow(ctx context.Contex... method _Query_tasks (line 18842) | func (ec *executionContext) _Query_tasks(ctx context.Context, field gr... method fieldContext_Query_tasks (line 18870) | func (ec *executionContext) fieldContext_Query_tasks(ctx context.Conte... method _Query_screenshots (line 18914) | func (ec *executionContext) _Query_screenshots(ctx context.Context, fi... method fieldContext_Query_screenshots (line 18942) | func (ec *executionContext) fieldContext_Query_screenshots(ctx context... method _Query_terminalLogs (line 18982) | func (ec *executionContext) _Query_terminalLogs(ctx context.Context, f... method fieldContext_Query_terminalLogs (line 19010) | func (ec *executionContext) fieldContext_Query_terminalLogs(ctx contex... method _Query_messageLogs (line 19052) | func (ec *executionContext) _Query_messageLogs(ctx context.Context, fi... method fieldContext_Query_messageLogs (line 19080) | func (ec *executionContext) fieldContext_Query_messageLogs(ctx context... method _Query_agentLogs (line 19126) | func (ec *executionContext) _Query_agentLogs(ctx context.Context, fiel... method fieldContext_Query_agentLogs (line 19154) | func (ec *executionContext) fieldContext_Query_agentLogs(ctx context.C... method _Query_searchLogs (line 19198) | func (ec *executionContext) _Query_searchLogs(ctx context.Context, fie... method fieldContext_Query_searchLogs (line 19226) | func (ec *executionContext) fieldContext_Query_searchLogs(ctx context.... method _Query_vectorStoreLogs (line 19272) | func (ec *executionContext) _Query_vectorStoreLogs(ctx context.Context... method fieldContext_Query_vectorStoreLogs (line 19300) | func (ec *executionContext) fieldContext_Query_vectorStoreLogs(ctx con... method _Query_assistantLogs (line 19348) | func (ec *executionContext) _Query_assistantLogs(ctx context.Context, ... method fieldContext_Query_assistantLogs (line 19376) | func (ec *executionContext) fieldContext_Query_assistantLogs(ctx conte... method _Query_usageStatsTotal (line 19422) | func (ec *executionContext) _Query_usageStatsTotal(ctx context.Context... method fieldContext_Query_usageStatsTotal (line 19453) | func (ec *executionContext) fieldContext_Query_usageStatsTotal(_ conte... method _Query_usageStatsByPeriod (line 19480) | func (ec *executionContext) _Query_usageStatsByPeriod(ctx context.Cont... method fieldContext_Query_usageStatsByPeriod (line 19511) | func (ec *executionContext) fieldContext_Query_usageStatsByPeriod(ctx ... method _Query_usageStatsByProvider (line 19541) | func (ec *executionContext) _Query_usageStatsByProvider(ctx context.Co... method fieldContext_Query_usageStatsByProvider (line 19572) | func (ec *executionContext) fieldContext_Query_usageStatsByProvider(_ ... method _Query_usageStatsByModel (line 19591) | func (ec *executionContext) _Query_usageStatsByModel(ctx context.Conte... method fieldContext_Query_usageStatsByModel (line 19622) | func (ec *executionContext) fieldContext_Query_usageStatsByModel(_ con... method _Query_usageStatsByAgentType (line 19643) | func (ec *executionContext) _Query_usageStatsByAgentType(ctx context.C... method fieldContext_Query_usageStatsByAgentType (line 19674) | func (ec *executionContext) fieldContext_Query_usageStatsByAgentType(_... method _Query_usageStatsByFlow (line 19693) | func (ec *executionContext) _Query_usageStatsByFlow(ctx context.Contex... method fieldContext_Query_usageStatsByFlow (line 19724) | func (ec *executionContext) fieldContext_Query_usageStatsByFlow(ctx co... method _Query_usageStatsByAgentTypeForFlow (line 19762) | func (ec *executionContext) _Query_usageStatsByAgentTypeForFlow(ctx co... method fieldContext_Query_usageStatsByAgentTypeForFlow (line 19793) | func (ec *executionContext) fieldContext_Query_usageStatsByAgentTypeFo... method _Query_toolcallsStatsTotal (line 19823) | func (ec *executionContext) _Query_toolcallsStatsTotal(ctx context.Con... method fieldContext_Query_toolcallsStatsTotal (line 19854) | func (ec *executionContext) fieldContext_Query_toolcallsStatsTotal(_ c... method _Query_toolcallsStatsByPeriod (line 19873) | func (ec *executionContext) _Query_toolcallsStatsByPeriod(ctx context.... method fieldContext_Query_toolcallsStatsByPeriod (line 19904) | func (ec *executionContext) fieldContext_Query_toolcallsStatsByPeriod(... method _Query_toolcallsStatsByFunction (line 19934) | func (ec *executionContext) _Query_toolcallsStatsByFunction(ctx contex... method fieldContext_Query_toolcallsStatsByFunction (line 19965) | func (ec *executionContext) fieldContext_Query_toolcallsStatsByFunctio... method _Query_toolcallsStatsByFlow (line 19990) | func (ec *executionContext) _Query_toolcallsStatsByFlow(ctx context.Co... method fieldContext_Query_toolcallsStatsByFlow (line 20021) | func (ec *executionContext) fieldContext_Query_toolcallsStatsByFlow(ct... method _Query_toolcallsStatsByFunctionForFlow (line 20051) | func (ec *executionContext) _Query_toolcallsStatsByFunctionForFlow(ctx... method fieldContext_Query_toolcallsStatsByFunctionForFlow (line 20082) | func (ec *executionContext) fieldContext_Query_toolcallsStatsByFunctio... method _Query_flowsStatsTotal (line 20118) | func (ec *executionContext) _Query_flowsStatsTotal(ctx context.Context... method fieldContext_Query_flowsStatsTotal (line 20149) | func (ec *executionContext) fieldContext_Query_flowsStatsTotal(_ conte... method _Query_flowsStatsByPeriod (line 20172) | func (ec *executionContext) _Query_flowsStatsByPeriod(ctx context.Cont... method fieldContext_Query_flowsStatsByPeriod (line 20203) | func (ec *executionContext) fieldContext_Query_flowsStatsByPeriod(ctx ... method _Query_flowStatsByFlow (line 20233) | func (ec *executionContext) _Query_flowStatsByFlow(ctx context.Context... method fieldContext_Query_flowStatsByFlow (line 20264) | func (ec *executionContext) fieldContext_Query_flowStatsByFlow(ctx con... method _Query_flowsExecutionStatsByPeriod (line 20296) | func (ec *executionContext) _Query_flowsExecutionStatsByPeriod(ctx con... method fieldContext_Query_flowsExecutionStatsByPeriod (line 20327) | func (ec *executionContext) fieldContext_Query_flowsExecutionStatsByPe... method _Query_settings (line 20365) | func (ec *executionContext) _Query_settings(ctx context.Context, field... method fieldContext_Query_settings (line 20396) | func (ec *executionContext) fieldContext_Query_settings(_ context.Cont... method _Query_settingsProviders (line 20419) | func (ec *executionContext) _Query_settingsProviders(ctx context.Conte... method fieldContext_Query_settingsProviders (line 20450) | func (ec *executionContext) fieldContext_Query_settingsProviders(_ con... method _Query_settingsPrompts (line 20473) | func (ec *executionContext) _Query_settingsPrompts(ctx context.Context... method fieldContext_Query_settingsPrompts (line 20504) | func (ec *executionContext) fieldContext_Query_settingsPrompts(_ conte... method _Query_settingsUser (line 20523) | func (ec *executionContext) _Query_settingsUser(ctx context.Context, f... method fieldContext_Query_settingsUser (line 20554) | func (ec *executionContext) fieldContext_Query_settingsUser(_ context.... method _Query_apiToken (line 20573) | func (ec *executionContext) _Query_apiToken(ctx context.Context, field... method fieldContext_Query_apiToken (line 20601) | func (ec *executionContext) fieldContext_Query_apiToken(ctx context.Co... method _Query_apiTokens (line 20645) | func (ec *executionContext) _Query_apiTokens(ctx context.Context, fiel... method fieldContext_Query_apiTokens (line 20676) | func (ec *executionContext) fieldContext_Query_apiTokens(_ context.Con... method _Query___type (line 20709) | func (ec *executionContext) _Query___type(ctx context.Context, field g... method fieldContext_Query___type (line 20737) | func (ec *executionContext) fieldContext_Query___type(ctx context.Cont... method _Query___schema (line 20783) | func (ec *executionContext) _Query___schema(ctx context.Context, field... method fieldContext_Query___schema (line 20811) | func (ec *executionContext) fieldContext_Query___schema(_ context.Cont... method _ReasoningConfig_effort (line 20838) | func (ec *executionContext) _ReasoningConfig_effort(ctx context.Contex... method fieldContext_ReasoningConfig_effort (line 20866) | func (ec *executionContext) fieldContext_ReasoningConfig_effort(_ cont... method _ReasoningConfig_maxTokens (line 20879) | func (ec *executionContext) _ReasoningConfig_maxTokens(ctx context.Con... method fieldContext_ReasoningConfig_maxTokens (line 20907) | func (ec *executionContext) fieldContext_ReasoningConfig_maxTokens(_ c... method _Screenshot_id (line 20920) | func (ec *executionContext) _Screenshot_id(ctx context.Context, field ... method fieldContext_Screenshot_id (line 20951) | func (ec *executionContext) fieldContext_Screenshot_id(_ context.Conte... method _Screenshot_flowId (line 20964) | func (ec *executionContext) _Screenshot_flowId(ctx context.Context, fi... method fieldContext_Screenshot_flowId (line 20995) | func (ec *executionContext) fieldContext_Screenshot_flowId(_ context.C... method _Screenshot_taskId (line 21008) | func (ec *executionContext) _Screenshot_taskId(ctx context.Context, fi... method fieldContext_Screenshot_taskId (line 21036) | func (ec *executionContext) fieldContext_Screenshot_taskId(_ context.C... method _Screenshot_subtaskId (line 21049) | func (ec *executionContext) _Screenshot_subtaskId(ctx context.Context,... method fieldContext_Screenshot_subtaskId (line 21077) | func (ec *executionContext) fieldContext_Screenshot_subtaskId(_ contex... method _Screenshot_name (line 21090) | func (ec *executionContext) _Screenshot_name(ctx context.Context, fiel... method fieldContext_Screenshot_name (line 21121) | func (ec *executionContext) fieldContext_Screenshot_name(_ context.Con... method _Screenshot_url (line 21134) | func (ec *executionContext) _Screenshot_url(ctx context.Context, field... method fieldContext_Screenshot_url (line 21165) | func (ec *executionContext) fieldContext_Screenshot_url(_ context.Cont... method _Screenshot_createdAt (line 21178) | func (ec *executionContext) _Screenshot_createdAt(ctx context.Context,... method fieldContext_Screenshot_createdAt (line 21209) | func (ec *executionContext) fieldContext_Screenshot_createdAt(_ contex... method _SearchLog_id (line 21222) | func (ec *executionContext) _SearchLog_id(ctx context.Context, field g... method fieldContext_SearchLog_id (line 21253) | func (ec *executionContext) fieldContext_SearchLog_id(_ context.Contex... method _SearchLog_initiator (line 21266) | func (ec *executionContext) _SearchLog_initiator(ctx context.Context, ... method fieldContext_SearchLog_initiator (line 21297) | func (ec *executionContext) fieldContext_SearchLog_initiator(_ context... method _SearchLog_executor (line 21310) | func (ec *executionContext) _SearchLog_executor(ctx context.Context, f... method fieldContext_SearchLog_executor (line 21341) | func (ec *executionContext) fieldContext_SearchLog_executor(_ context.... method _SearchLog_engine (line 21354) | func (ec *executionContext) _SearchLog_engine(ctx context.Context, fie... method fieldContext_SearchLog_engine (line 21385) | func (ec *executionContext) fieldContext_SearchLog_engine(_ context.Co... method _SearchLog_query (line 21398) | func (ec *executionContext) _SearchLog_query(ctx context.Context, fiel... method fieldContext_SearchLog_query (line 21429) | func (ec *executionContext) fieldContext_SearchLog_query(_ context.Con... method _SearchLog_result (line 21442) | func (ec *executionContext) _SearchLog_result(ctx context.Context, fie... method fieldContext_SearchLog_result (line 21473) | func (ec *executionContext) fieldContext_SearchLog_result(_ context.Co... method _SearchLog_flowId (line 21486) | func (ec *executionContext) _SearchLog_flowId(ctx context.Context, fie... method fieldContext_SearchLog_flowId (line 21517) | func (ec *executionContext) fieldContext_SearchLog_flowId(_ context.Co... method _SearchLog_taskId (line 21530) | func (ec *executionContext) _SearchLog_taskId(ctx context.Context, fie... method fieldContext_SearchLog_taskId (line 21558) | func (ec *executionContext) fieldContext_SearchLog_taskId(_ context.Co... method _SearchLog_subtaskId (line 21571) | func (ec *executionContext) _SearchLog_subtaskId(ctx context.Context, ... method fieldContext_SearchLog_subtaskId (line 21599) | func (ec *executionContext) fieldContext_SearchLog_subtaskId(_ context... method _SearchLog_createdAt (line 21612) | func (ec *executionContext) _SearchLog_createdAt(ctx context.Context, ... method fieldContext_SearchLog_createdAt (line 21643) | func (ec *executionContext) fieldContext_SearchLog_createdAt(_ context... method _Settings_debug (line 21656) | func (ec *executionContext) _Settings_debug(ctx context.Context, field... method fieldContext_Settings_debug (line 21687) | func (ec *executionContext) fieldContext_Settings_debug(_ context.Cont... method _Settings_askUser (line 21700) | func (ec *executionContext) _Settings_askUser(ctx context.Context, fie... method fieldContext_Settings_askUser (line 21731) | func (ec *executionContext) fieldContext_Settings_askUser(_ context.Co... method _Settings_dockerInside (line 21744) | func (ec *executionContext) _Settings_dockerInside(ctx context.Context... method fieldContext_Settings_dockerInside (line 21775) | func (ec *executionContext) fieldContext_Settings_dockerInside(_ conte... method _Settings_assistantUseAgents (line 21788) | func (ec *executionContext) _Settings_assistantUseAgents(ctx context.C... method fieldContext_Settings_assistantUseAgents (line 21819) | func (ec *executionContext) fieldContext_Settings_assistantUseAgents(_... method _Subscription_flowCreated (line 21832) | func (ec *executionContext) _Subscription_flowCreated(ctx context.Cont... method fieldContext_Subscription_flowCreated (line 21877) | func (ec *executionContext) fieldContext_Subscription_flowCreated(_ co... method _Subscription_flowDeleted (line 21906) | func (ec *executionContext) _Subscription_flowDeleted(ctx context.Cont... method fieldContext_Subscription_flowDeleted (line 21951) | func (ec *executionContext) fieldContext_Subscription_flowDeleted(_ co... method _Subscription_flowUpdated (line 21980) | func (ec *executionContext) _Subscription_flowUpdated(ctx context.Cont... method fieldContext_Subscription_flowUpdated (line 22025) | func (ec *executionContext) fieldContext_Subscription_flowUpdated(_ co... method _Subscription_taskCreated (line 22054) | func (ec *executionContext) _Subscription_taskCreated(ctx context.Cont... method fieldContext_Subscription_taskCreated (line 22099) | func (ec *executionContext) fieldContext_Subscription_taskCreated(ctx ... method _Subscription_taskUpdated (line 22143) | func (ec *executionContext) _Subscription_taskUpdated(ctx context.Cont... method fieldContext_Subscription_taskUpdated (line 22188) | func (ec *executionContext) fieldContext_Subscription_taskUpdated(ctx ... method _Subscription_assistantCreated (line 22232) | func (ec *executionContext) _Subscription_assistantCreated(ctx context... method fieldContext_Subscription_assistantCreated (line 22277) | func (ec *executionContext) fieldContext_Subscription_assistantCreated... method _Subscription_assistantUpdated (line 22319) | func (ec *executionContext) _Subscription_assistantUpdated(ctx context... method fieldContext_Subscription_assistantUpdated (line 22364) | func (ec *executionContext) fieldContext_Subscription_assistantUpdated... method _Subscription_assistantDeleted (line 22406) | func (ec *executionContext) _Subscription_assistantDeleted(ctx context... method fieldContext_Subscription_assistantDeleted (line 22451) | func (ec *executionContext) fieldContext_Subscription_assistantDeleted... method _Subscription_screenshotAdded (line 22493) | func (ec *executionContext) _Subscription_screenshotAdded(ctx context.... method fieldContext_Subscription_screenshotAdded (line 22538) | func (ec *executionContext) fieldContext_Subscription_screenshotAdded(... method _Subscription_terminalLogAdded (line 22578) | func (ec *executionContext) _Subscription_terminalLogAdded(ctx context... method fieldContext_Subscription_terminalLogAdded (line 22623) | func (ec *executionContext) fieldContext_Subscription_terminalLogAdded... method _Subscription_messageLogAdded (line 22665) | func (ec *executionContext) _Subscription_messageLogAdded(ctx context.... method fieldContext_Subscription_messageLogAdded (line 22710) | func (ec *executionContext) fieldContext_Subscription_messageLogAdded(... method _Subscription_messageLogUpdated (line 22756) | func (ec *executionContext) _Subscription_messageLogUpdated(ctx contex... method fieldContext_Subscription_messageLogUpdated (line 22801) | func (ec *executionContext) fieldContext_Subscription_messageLogUpdate... method _Subscription_agentLogAdded (line 22847) | func (ec *executionContext) _Subscription_agentLogAdded(ctx context.Co... method fieldContext_Subscription_agentLogAdded (line 22892) | func (ec *executionContext) fieldContext_Subscription_agentLogAdded(ct... method _Subscription_searchLogAdded (line 22936) | func (ec *executionContext) _Subscription_searchLogAdded(ctx context.C... method fieldContext_Subscription_searchLogAdded (line 22981) | func (ec *executionContext) fieldContext_Subscription_searchLogAdded(c... method _Subscription_vectorStoreLogAdded (line 23027) | func (ec *executionContext) _Subscription_vectorStoreLogAdded(ctx cont... method fieldContext_Subscription_vectorStoreLogAdded (line 23072) | func (ec *executionContext) fieldContext_Subscription_vectorStoreLogAd... method _Subscription_assistantLogAdded (line 23120) | func (ec *executionContext) _Subscription_assistantLogAdded(ctx contex... method fieldContext_Subscription_assistantLogAdded (line 23165) | func (ec *executionContext) fieldContext_Subscription_assistantLogAdde... method _Subscription_assistantLogUpdated (line 23211) | func (ec *executionContext) _Subscription_assistantLogUpdated(ctx cont... method fieldContext_Subscription_assistantLogUpdated (line 23256) | func (ec *executionContext) fieldContext_Subscription_assistantLogUpda... method _Subscription_providerCreated (line 23302) | func (ec *executionContext) _Subscription_providerCreated(ctx context.... method fieldContext_Subscription_providerCreated (line 23347) | func (ec *executionContext) fieldContext_Subscription_providerCreated(... method _Subscription_providerUpdated (line 23374) | func (ec *executionContext) _Subscription_providerUpdated(ctx context.... method fieldContext_Subscription_providerUpdated (line 23419) | func (ec *executionContext) fieldContext_Subscription_providerUpdated(... method _Subscription_providerDeleted (line 23446) | func (ec *executionContext) _Subscription_providerDeleted(ctx context.... method fieldContext_Subscription_providerDeleted (line 23491) | func (ec *executionContext) fieldContext_Subscription_providerDeleted(... method _Subscription_apiTokenCreated (line 23518) | func (ec *executionContext) _Subscription_apiTokenCreated(ctx context.... method fieldContext_Subscription_apiTokenCreated (line 23563) | func (ec *executionContext) fieldContext_Subscription_apiTokenCreated(... method _Subscription_apiTokenUpdated (line 23596) | func (ec *executionContext) _Subscription_apiTokenUpdated(ctx context.... method fieldContext_Subscription_apiTokenUpdated (line 23641) | func (ec *executionContext) fieldContext_Subscription_apiTokenUpdated(... method _Subscription_apiTokenDeleted (line 23674) | func (ec *executionContext) _Subscription_apiTokenDeleted(ctx context.... method fieldContext_Subscription_apiTokenDeleted (line 23719) | func (ec *executionContext) fieldContext_Subscription_apiTokenDeleted(... method _Subscription_settingsUserUpdated (line 23752) | func (ec *executionContext) _Subscription_settingsUserUpdated(ctx cont... method fieldContext_Subscription_settingsUserUpdated (line 23797) | func (ec *executionContext) fieldContext_Subscription_settingsUserUpda... method _Subtask_id (line 23816) | func (ec *executionContext) _Subtask_id(ctx context.Context, field gra... method fieldContext_Subtask_id (line 23847) | func (ec *executionContext) fieldContext_Subtask_id(_ context.Context,... method _Subtask_status (line 23860) | func (ec *executionContext) _Subtask_status(ctx context.Context, field... method fieldContext_Subtask_status (line 23891) | func (ec *executionContext) fieldContext_Subtask_status(_ context.Cont... method _Subtask_title (line 23904) | func (ec *executionContext) _Subtask_title(ctx context.Context, field ... method fieldContext_Subtask_title (line 23935) | func (ec *executionContext) fieldContext_Subtask_title(_ context.Conte... method _Subtask_description (line 23948) | func (ec *executionContext) _Subtask_description(ctx context.Context, ... method fieldContext_Subtask_description (line 23979) | func (ec *executionContext) fieldContext_Subtask_description(_ context... method _Subtask_result (line 23992) | func (ec *executionContext) _Subtask_result(ctx context.Context, field... method fieldContext_Subtask_result (line 24023) | func (ec *executionContext) fieldContext_Subtask_result(_ context.Cont... method _Subtask_taskId (line 24036) | func (ec *executionContext) _Subtask_taskId(ctx context.Context, field... method fieldContext_Subtask_taskId (line 24067) | func (ec *executionContext) fieldContext_Subtask_taskId(_ context.Cont... method _Subtask_createdAt (line 24080) | func (ec *executionContext) _Subtask_createdAt(ctx context.Context, fi... method fieldContext_Subtask_createdAt (line 24111) | func (ec *executionContext) fieldContext_Subtask_createdAt(_ context.C... method _Subtask_updatedAt (line 24124) | func (ec *executionContext) _Subtask_updatedAt(ctx context.Context, fi... method fieldContext_Subtask_updatedAt (line 24155) | func (ec *executionContext) fieldContext_Subtask_updatedAt(_ context.C... method _SubtaskExecutionStats_subtaskId (line 24168) | func (ec *executionContext) _SubtaskExecutionStats_subtaskId(ctx conte... method fieldContext_SubtaskExecutionStats_subtaskId (line 24199) | func (ec *executionContext) fieldContext_SubtaskExecutionStats_subtask... method _SubtaskExecutionStats_subtaskTitle (line 24212) | func (ec *executionContext) _SubtaskExecutionStats_subtaskTitle(ctx co... method fieldContext_SubtaskExecutionStats_subtaskTitle (line 24243) | func (ec *executionContext) fieldContext_SubtaskExecutionStats_subtask... method _SubtaskExecutionStats_totalDurationSeconds (line 24256) | func (ec *executionContext) _SubtaskExecutionStats_totalDurationSecond... method fieldContext_SubtaskExecutionStats_totalDurationSeconds (line 24287) | func (ec *executionContext) fieldContext_SubtaskExecutionStats_totalDu... method _SubtaskExecutionStats_totalToolcallsCount (line 24300) | func (ec *executionContext) _SubtaskExecutionStats_totalToolcallsCount... method fieldContext_SubtaskExecutionStats_totalToolcallsCount (line 24331) | func (ec *executionContext) fieldContext_SubtaskExecutionStats_totalTo... method _Task_id (line 24344) | func (ec *executionContext) _Task_id(ctx context.Context, field graphq... method fieldContext_Task_id (line 24375) | func (ec *executionContext) fieldContext_Task_id(_ context.Context, fi... method _Task_title (line 24388) | func (ec *executionContext) _Task_title(ctx context.Context, field gra... method fieldContext_Task_title (line 24419) | func (ec *executionContext) fieldContext_Task_title(_ context.Context,... method _Task_status (line 24432) | func (ec *executionContext) _Task_status(ctx context.Context, field gr... method fieldContext_Task_status (line 24463) | func (ec *executionContext) fieldContext_Task_status(_ context.Context... method _Task_input (line 24476) | func (ec *executionContext) _Task_input(ctx context.Context, field gra... method fieldContext_Task_input (line 24507) | func (ec *executionContext) fieldContext_Task_input(_ context.Context,... method _Task_result (line 24520) | func (ec *executionContext) _Task_result(ctx context.Context, field gr... method fieldContext_Task_result (line 24551) | func (ec *executionContext) fieldContext_Task_result(_ context.Context... method _Task_flowId (line 24564) | func (ec *executionContext) _Task_flowId(ctx context.Context, field gr... method fieldContext_Task_flowId (line 24595) | func (ec *executionContext) fieldContext_Task_flowId(_ context.Context... method _Task_subtasks (line 24608) | func (ec *executionContext) _Task_subtasks(ctx context.Context, field ... method fieldContext_Task_subtasks (line 24636) | func (ec *executionContext) fieldContext_Task_subtasks(_ context.Conte... method _Task_createdAt (line 24667) | func (ec *executionContext) _Task_createdAt(ctx context.Context, field... method fieldContext_Task_createdAt (line 24698) | func (ec *executionContext) fieldContext_Task_createdAt(_ context.Cont... method _Task_updatedAt (line 24711) | func (ec *executionContext) _Task_updatedAt(ctx context.Context, field... method fieldContext_Task_updatedAt (line 24742) | func (ec *executionContext) fieldContext_Task_updatedAt(_ context.Cont... method _TaskExecutionStats_taskId (line 24755) | func (ec *executionContext) _TaskExecutionStats_taskId(ctx context.Con... method fieldContext_TaskExecutionStats_taskId (line 24786) | func (ec *executionContext) fieldContext_TaskExecutionStats_taskId(_ c... method _TaskExecutionStats_taskTitle (line 24799) | func (ec *executionContext) _TaskExecutionStats_taskTitle(ctx context.... method fieldContext_TaskExecutionStats_taskTitle (line 24830) | func (ec *executionContext) fieldContext_TaskExecutionStats_taskTitle(... method _TaskExecutionStats_totalDurationSeconds (line 24843) | func (ec *executionContext) _TaskExecutionStats_totalDurationSeconds(c... method fieldContext_TaskExecutionStats_totalDurationSeconds (line 24874) | func (ec *executionContext) fieldContext_TaskExecutionStats_totalDurat... method _TaskExecutionStats_totalToolcallsCount (line 24887) | func (ec *executionContext) _TaskExecutionStats_totalToolcallsCount(ct... method fieldContext_TaskExecutionStats_totalToolcallsCount (line 24918) | func (ec *executionContext) fieldContext_TaskExecutionStats_totalToolc... method _TaskExecutionStats_subtasks (line 24931) | func (ec *executionContext) _TaskExecutionStats_subtasks(ctx context.C... method fieldContext_TaskExecutionStats_subtasks (line 24962) | func (ec *executionContext) fieldContext_TaskExecutionStats_subtasks(_... method _Terminal_id (line 24985) | func (ec *executionContext) _Terminal_id(ctx context.Context, field gr... method fieldContext_Terminal_id (line 25016) | func (ec *executionContext) fieldContext_Terminal_id(_ context.Context... method _Terminal_type (line 25029) | func (ec *executionContext) _Terminal_type(ctx context.Context, field ... method fieldContext_Terminal_type (line 25060) | func (ec *executionContext) fieldContext_Terminal_type(_ context.Conte... method _Terminal_name (line 25073) | func (ec *executionContext) _Terminal_name(ctx context.Context, field ... method fieldContext_Terminal_name (line 25104) | func (ec *executionContext) fieldContext_Terminal_name(_ context.Conte... method _Terminal_image (line 25117) | func (ec *executionContext) _Terminal_image(ctx context.Context, field... method fieldContext_Terminal_image (line 25148) | func (ec *executionContext) fieldContext_Terminal_image(_ context.Cont... method _Terminal_connected (line 25161) | func (ec *executionContext) _Terminal_connected(ctx context.Context, f... method fieldContext_Terminal_connected (line 25192) | func (ec *executionContext) fieldContext_Terminal_connected(_ context.... method _Terminal_createdAt (line 25205) | func (ec *executionContext) _Terminal_createdAt(ctx context.Context, f... method fieldContext_Terminal_createdAt (line 25236) | func (ec *executionContext) fieldContext_Terminal_createdAt(_ context.... method _TerminalLog_id (line 25249) | func (ec *executionContext) _TerminalLog_id(ctx context.Context, field... method fieldContext_TerminalLog_id (line 25280) | func (ec *executionContext) fieldContext_TerminalLog_id(_ context.Cont... method _TerminalLog_flowId (line 25293) | func (ec *executionContext) _TerminalLog_flowId(ctx context.Context, f... method fieldContext_TerminalLog_flowId (line 25324) | func (ec *executionContext) fieldContext_TerminalLog_flowId(_ context.... method _TerminalLog_taskId (line 25337) | func (ec *executionContext) _TerminalLog_taskId(ctx context.Context, f... method fieldContext_TerminalLog_taskId (line 25365) | func (ec *executionContext) fieldContext_TerminalLog_taskId(_ context.... method _TerminalLog_subtaskId (line 25378) | func (ec *executionContext) _TerminalLog_subtaskId(ctx context.Context... method fieldContext_TerminalLog_subtaskId (line 25406) | func (ec *executionContext) fieldContext_TerminalLog_subtaskId(_ conte... method _TerminalLog_type (line 25419) | func (ec *executionContext) _TerminalLog_type(ctx context.Context, fie... method fieldContext_TerminalLog_type (line 25450) | func (ec *executionContext) fieldContext_TerminalLog_type(_ context.Co... method _TerminalLog_text (line 25463) | func (ec *executionContext) _TerminalLog_text(ctx context.Context, fie... method fieldContext_TerminalLog_text (line 25494) | func (ec *executionContext) fieldContext_TerminalLog_text(_ context.Co... method _TerminalLog_terminal (line 25507) | func (ec *executionContext) _TerminalLog_terminal(ctx context.Context,... method fieldContext_TerminalLog_terminal (line 25538) | func (ec *executionContext) fieldContext_TerminalLog_terminal(_ contex... method _TerminalLog_createdAt (line 25551) | func (ec *executionContext) _TerminalLog_createdAt(ctx context.Context... method fieldContext_TerminalLog_createdAt (line 25582) | func (ec *executionContext) fieldContext_TerminalLog_createdAt(_ conte... method _TestResult_name (line 25595) | func (ec *executionContext) _TestResult_name(ctx context.Context, fiel... method fieldContext_TestResult_name (line 25626) | func (ec *executionContext) fieldContext_TestResult_name(_ context.Con... method _TestResult_type (line 25639) | func (ec *executionContext) _TestResult_type(ctx context.Context, fiel... method fieldContext_TestResult_type (line 25670) | func (ec *executionContext) fieldContext_TestResult_type(_ context.Con... method _TestResult_result (line 25683) | func (ec *executionContext) _TestResult_result(ctx context.Context, fi... method fieldContext_TestResult_result (line 25714) | func (ec *executionContext) fieldContext_TestResult_result(_ context.C... method _TestResult_reasoning (line 25727) | func (ec *executionContext) _TestResult_reasoning(ctx context.Context,... method fieldContext_TestResult_reasoning (line 25758) | func (ec *executionContext) fieldContext_TestResult_reasoning(_ contex... method _TestResult_streaming (line 25771) | func (ec *executionContext) _TestResult_streaming(ctx context.Context,... method fieldContext_TestResult_streaming (line 25802) | func (ec *executionContext) fieldContext_TestResult_streaming(_ contex... method _TestResult_latency (line 25815) | func (ec *executionContext) _TestResult_latency(ctx context.Context, f... method fieldContext_TestResult_latency (line 25843) | func (ec *executionContext) fieldContext_TestResult_latency(_ context.... method _TestResult_error (line 25856) | func (ec *executionContext) _TestResult_error(ctx context.Context, fie... method fieldContext_TestResult_error (line 25884) | func (ec *executionContext) fieldContext_TestResult_error(_ context.Co... method _ToolcallsStats_totalCount (line 25897) | func (ec *executionContext) _ToolcallsStats_totalCount(ctx context.Con... method fieldContext_ToolcallsStats_totalCount (line 25928) | func (ec *executionContext) fieldContext_ToolcallsStats_totalCount(_ c... method _ToolcallsStats_totalDurationSeconds (line 25941) | func (ec *executionContext) _ToolcallsStats_totalDurationSeconds(ctx c... method fieldContext_ToolcallsStats_totalDurationSeconds (line 25972) | func (ec *executionContext) fieldContext_ToolcallsStats_totalDurationS... method _ToolsPrompts_getFlowDescription (line 25985) | func (ec *executionContext) _ToolsPrompts_getFlowDescription(ctx conte... method fieldContext_ToolsPrompts_getFlowDescription (line 26016) | func (ec *executionContext) fieldContext_ToolsPrompts_getFlowDescripti... method _ToolsPrompts_getTaskDescription (line 26037) | func (ec *executionContext) _ToolsPrompts_getTaskDescription(ctx conte... method fieldContext_ToolsPrompts_getTaskDescription (line 26068) | func (ec *executionContext) fieldContext_ToolsPrompts_getTaskDescripti... method _ToolsPrompts_getExecutionLogs (line 26089) | func (ec *executionContext) _ToolsPrompts_getExecutionLogs(ctx context... method fieldContext_ToolsPrompts_getExecutionLogs (line 26120) | func (ec *executionContext) fieldContext_ToolsPrompts_getExecutionLogs... method _ToolsPrompts_getFullExecutionContext (line 26141) | func (ec *executionContext) _ToolsPrompts_getFullExecutionContext(ctx ... method fieldContext_ToolsPrompts_getFullExecutionContext (line 26172) | func (ec *executionContext) fieldContext_ToolsPrompts_getFullExecution... method _ToolsPrompts_getShortExecutionContext (line 26193) | func (ec *executionContext) _ToolsPrompts_getShortExecutionContext(ctx... method fieldContext_ToolsPrompts_getShortExecutionContext (line 26224) | func (ec *executionContext) fieldContext_ToolsPrompts_getShortExecutio... method _ToolsPrompts_chooseDockerImage (line 26245) | func (ec *executionContext) _ToolsPrompts_chooseDockerImage(ctx contex... method fieldContext_ToolsPrompts_chooseDockerImage (line 26276) | func (ec *executionContext) fieldContext_ToolsPrompts_chooseDockerImag... method _ToolsPrompts_chooseUserLanguage (line 26297) | func (ec *executionContext) _ToolsPrompts_chooseUserLanguage(ctx conte... method fieldContext_ToolsPrompts_chooseUserLanguage (line 26328) | func (ec *executionContext) fieldContext_ToolsPrompts_chooseUserLangua... method _ToolsPrompts_collectToolCallId (line 26349) | func (ec *executionContext) _ToolsPrompts_collectToolCallId(ctx contex... method fieldContext_ToolsPrompts_collectToolCallId (line 26380) | func (ec *executionContext) fieldContext_ToolsPrompts_collectToolCallI... method _ToolsPrompts_detectToolCallIdPattern (line 26401) | func (ec *executionContext) _ToolsPrompts_detectToolCallIdPattern(ctx ... method fieldContext_ToolsPrompts_detectToolCallIdPattern (line 26432) | func (ec *executionContext) fieldContext_ToolsPrompts_detectToolCallId... method _ToolsPrompts_monitorAgentExecution (line 26453) | func (ec *executionContext) _ToolsPrompts_monitorAgentExecution(ctx co... method fieldContext_ToolsPrompts_monitorAgentExecution (line 26484) | func (ec *executionContext) fieldContext_ToolsPrompts_monitorAgentExec... method _ToolsPrompts_planAgentTask (line 26505) | func (ec *executionContext) _ToolsPrompts_planAgentTask(ctx context.Co... method fieldContext_ToolsPrompts_planAgentTask (line 26536) | func (ec *executionContext) fieldContext_ToolsPrompts_planAgentTask(_ ... method _ToolsPrompts_wrapAgentTask (line 26557) | func (ec *executionContext) _ToolsPrompts_wrapAgentTask(ctx context.Co... method fieldContext_ToolsPrompts_wrapAgentTask (line 26588) | func (ec *executionContext) fieldContext_ToolsPrompts_wrapAgentTask(_ ... method _UsageStats_totalUsageIn (line 26609) | func (ec *executionContext) _UsageStats_totalUsageIn(ctx context.Conte... method fieldContext_UsageStats_totalUsageIn (line 26640) | func (ec *executionContext) fieldContext_UsageStats_totalUsageIn(_ con... method _UsageStats_totalUsageOut (line 26653) | func (ec *executionContext) _UsageStats_totalUsageOut(ctx context.Cont... method fieldContext_UsageStats_totalUsageOut (line 26684) | func (ec *executionContext) fieldContext_UsageStats_totalUsageOut(_ co... method _UsageStats_totalUsageCacheIn (line 26697) | func (ec *executionContext) _UsageStats_totalUsageCacheIn(ctx context.... method fieldContext_UsageStats_totalUsageCacheIn (line 26728) | func (ec *executionContext) fieldContext_UsageStats_totalUsageCacheIn(... method _UsageStats_totalUsageCacheOut (line 26741) | func (ec *executionContext) _UsageStats_totalUsageCacheOut(ctx context... method fieldContext_UsageStats_totalUsageCacheOut (line 26772) | func (ec *executionContext) fieldContext_UsageStats_totalUsageCacheOut... method _UsageStats_totalUsageCostIn (line 26785) | func (ec *executionContext) _UsageStats_totalUsageCostIn(ctx context.C... method fieldContext_UsageStats_totalUsageCostIn (line 26816) | func (ec *executionContext) fieldContext_UsageStats_totalUsageCostIn(_... method _UsageStats_totalUsageCostOut (line 26829) | func (ec *executionContext) _UsageStats_totalUsageCostOut(ctx context.... method fieldContext_UsageStats_totalUsageCostOut (line 26860) | func (ec *executionContext) fieldContext_UsageStats_totalUsageCostOut(... method _UserPreferences_id (line 26873) | func (ec *executionContext) _UserPreferences_id(ctx context.Context, f... method fieldContext_UserPreferences_id (line 26904) | func (ec *executionContext) fieldContext_UserPreferences_id(_ context.... method _UserPreferences_favoriteFlows (line 26917) | func (ec *executionContext) _UserPreferences_favoriteFlows(ctx context... method fieldContext_UserPreferences_favoriteFlows (line 26948) | func (ec *executionContext) fieldContext_UserPreferences_favoriteFlows... method _UserPrompt_id (line 26961) | func (ec *executionContext) _UserPrompt_id(ctx context.Context, field ... method fieldContext_UserPrompt_id (line 26992) | func (ec *executionContext) fieldContext_UserPrompt_id(_ context.Conte... method _UserPrompt_type (line 27005) | func (ec *executionContext) _UserPrompt_type(ctx context.Context, fiel... method fieldContext_UserPrompt_type (line 27036) | func (ec *executionContext) fieldContext_UserPrompt_type(_ context.Con... method _UserPrompt_template (line 27049) | func (ec *executionContext) _UserPrompt_template(ctx context.Context, ... method fieldContext_UserPrompt_template (line 27080) | func (ec *executionContext) fieldContext_UserPrompt_template(_ context... method _UserPrompt_createdAt (line 27093) | func (ec *executionContext) _UserPrompt_createdAt(ctx context.Context,... method fieldContext_UserPrompt_createdAt (line 27124) | func (ec *executionContext) fieldContext_UserPrompt_createdAt(_ contex... method _UserPrompt_updatedAt (line 27137) | func (ec *executionContext) _UserPrompt_updatedAt(ctx context.Context,... method fieldContext_UserPrompt_updatedAt (line 27168) | func (ec *executionContext) fieldContext_UserPrompt_updatedAt(_ contex... method _VectorStoreLog_id (line 27181) | func (ec *executionContext) _VectorStoreLog_id(ctx context.Context, fi... method fieldContext_VectorStoreLog_id (line 27212) | func (ec *executionContext) fieldContext_VectorStoreLog_id(_ context.C... method _VectorStoreLog_initiator (line 27225) | func (ec *executionContext) _VectorStoreLog_initiator(ctx context.Cont... method fieldContext_VectorStoreLog_initiator (line 27256) | func (ec *executionContext) fieldContext_VectorStoreLog_initiator(_ co... method _VectorStoreLog_executor (line 27269) | func (ec *executionContext) _VectorStoreLog_executor(ctx context.Conte... method fieldContext_VectorStoreLog_executor (line 27300) | func (ec *executionContext) fieldContext_VectorStoreLog_executor(_ con... method _VectorStoreLog_filter (line 27313) | func (ec *executionContext) _VectorStoreLog_filter(ctx context.Context... method fieldContext_VectorStoreLog_filter (line 27344) | func (ec *executionContext) fieldContext_VectorStoreLog_filter(_ conte... method _VectorStoreLog_query (line 27357) | func (ec *executionContext) _VectorStoreLog_query(ctx context.Context,... method fieldContext_VectorStoreLog_query (line 27388) | func (ec *executionContext) fieldContext_VectorStoreLog_query(_ contex... method _VectorStoreLog_action (line 27401) | func (ec *executionContext) _VectorStoreLog_action(ctx context.Context... method fieldContext_VectorStoreLog_action (line 27432) | func (ec *executionContext) fieldContext_VectorStoreLog_action(_ conte... method _VectorStoreLog_result (line 27445) | func (ec *executionContext) _VectorStoreLog_result(ctx context.Context... method fieldContext_VectorStoreLog_result (line 27476) | func (ec *executionContext) fieldContext_VectorStoreLog_result(_ conte... method _VectorStoreLog_flowId (line 27489) | func (ec *executionContext) _VectorStoreLog_flowId(ctx context.Context... method fieldContext_VectorStoreLog_flowId (line 27520) | func (ec *executionContext) fieldContext_VectorStoreLog_flowId(_ conte... method _VectorStoreLog_taskId (line 27533) | func (ec *executionContext) _VectorStoreLog_taskId(ctx context.Context... method fieldContext_VectorStoreLog_taskId (line 27561) | func (ec *executionContext) fieldContext_VectorStoreLog_taskId(_ conte... method _VectorStoreLog_subtaskId (line 27574) | func (ec *executionContext) _VectorStoreLog_subtaskId(ctx context.Cont... method fieldContext_VectorStoreLog_subtaskId (line 27602) | func (ec *executionContext) fieldContext_VectorStoreLog_subtaskId(_ co... method _VectorStoreLog_createdAt (line 27615) | func (ec *executionContext) _VectorStoreLog_createdAt(ctx context.Cont... method fieldContext_VectorStoreLog_createdAt (line 27646) | func (ec *executionContext) fieldContext_VectorStoreLog_createdAt(_ co... method ___Directive_name (line 27659) | func (ec *executionContext) ___Directive_name(ctx context.Context, fie... method fieldContext___Directive_name (line 27690) | func (ec *executionContext) fieldContext___Directive_name(_ context.Co... method ___Directive_description (line 27703) | func (ec *executionContext) ___Directive_description(ctx context.Conte... method fieldContext___Directive_description (line 27731) | func (ec *executionContext) fieldContext___Directive_description(_ con... method ___Directive_locations (line 27744) | func (ec *executionContext) ___Directive_locations(ctx context.Context... method fieldContext___Directive_locations (line 27775) | func (ec *executionContext) fieldContext___Directive_locations(_ conte... method ___Directive_args (line 27788) | func (ec *executionContext) ___Directive_args(ctx context.Context, fie... method fieldContext___Directive_args (line 27819) | func (ec *executionContext) fieldContext___Directive_args(_ context.Co... method ___Directive_isRepeatable (line 27842) | func (ec *executionContext) ___Directive_isRepeatable(ctx context.Cont... method fieldContext___Directive_isRepeatable (line 27873) | func (ec *executionContext) fieldContext___Directive_isRepeatable(_ co... method ___EnumValue_name (line 27886) | func (ec *executionContext) ___EnumValue_name(ctx context.Context, fie... method fieldContext___EnumValue_name (line 27917) | func (ec *executionContext) fieldContext___EnumValue_name(_ context.Co... method ___EnumValue_description (line 27930) | func (ec *executionContext) ___EnumValue_description(ctx context.Conte... method fieldContext___EnumValue_description (line 27958) | func (ec *executionContext) fieldContext___EnumValue_description(_ con... method ___EnumValue_isDeprecated (line 27971) | func (ec *executionContext) ___EnumValue_isDeprecated(ctx context.Cont... method fieldContext___EnumValue_isDeprecated (line 28002) | func (ec *executionContext) fieldContext___EnumValue_isDeprecated(_ co... method ___EnumValue_deprecationReason (line 28015) | func (ec *executionContext) ___EnumValue_deprecationReason(ctx context... method fieldContext___EnumValue_deprecationReason (line 28043) | func (ec *executionContext) fieldContext___EnumValue_deprecationReason... method ___Field_name (line 28056) | func (ec *executionContext) ___Field_name(ctx context.Context, field g... method fieldContext___Field_name (line 28087) | func (ec *executionContext) fieldContext___Field_name(_ context.Contex... method ___Field_description (line 28100) | func (ec *executionContext) ___Field_description(ctx context.Context, ... method fieldContext___Field_description (line 28128) | func (ec *executionContext) fieldContext___Field_description(_ context... method ___Field_args (line 28141) | func (ec *executionContext) ___Field_args(ctx context.Context, field g... method fieldContext___Field_args (line 28172) | func (ec *executionContext) fieldContext___Field_args(_ context.Contex... method ___Field_type (line 28195) | func (ec *executionContext) ___Field_type(ctx context.Context, field g... method fieldContext___Field_type (line 28226) | func (ec *executionContext) fieldContext___Field_type(_ context.Contex... method ___Field_isDeprecated (line 28261) | func (ec *executionContext) ___Field_isDeprecated(ctx context.Context,... method fieldContext___Field_isDeprecated (line 28292) | func (ec *executionContext) fieldContext___Field_isDeprecated(_ contex... method ___Field_deprecationReason (line 28305) | func (ec *executionContext) ___Field_deprecationReason(ctx context.Con... method fieldContext___Field_deprecationReason (line 28333) | func (ec *executionContext) fieldContext___Field_deprecationReason(_ c... method ___InputValue_name (line 28346) | func (ec *executionContext) ___InputValue_name(ctx context.Context, fi... method fieldContext___InputValue_name (line 28377) | func (ec *executionContext) fieldContext___InputValue_name(_ context.C... method ___InputValue_description (line 28390) | func (ec *executionContext) ___InputValue_description(ctx context.Cont... method fieldContext___InputValue_description (line 28418) | func (ec *executionContext) fieldContext___InputValue_description(_ co... method ___InputValue_type (line 28431) | func (ec *executionContext) ___InputValue_type(ctx context.Context, fi... method fieldContext___InputValue_type (line 28462) | func (ec *executionContext) fieldContext___InputValue_type(_ context.C... method ___InputValue_defaultValue (line 28497) | func (ec *executionContext) ___InputValue_defaultValue(ctx context.Con... method fieldContext___InputValue_defaultValue (line 28525) | func (ec *executionContext) fieldContext___InputValue_defaultValue(_ c... method ___Schema_description (line 28538) | func (ec *executionContext) ___Schema_description(ctx context.Context,... method fieldContext___Schema_description (line 28566) | func (ec *executionContext) fieldContext___Schema_description(_ contex... method ___Schema_types (line 28579) | func (ec *executionContext) ___Schema_types(ctx context.Context, field... method fieldContext___Schema_types (line 28610) | func (ec *executionContext) fieldContext___Schema_types(_ context.Cont... method ___Schema_queryType (line 28645) | func (ec *executionContext) ___Schema_queryType(ctx context.Context, f... method fieldContext___Schema_queryType (line 28676) | func (ec *executionContext) fieldContext___Schema_queryType(_ context.... method ___Schema_mutationType (line 28711) | func (ec *executionContext) ___Schema_mutationType(ctx context.Context... method fieldContext___Schema_mutationType (line 28739) | func (ec *executionContext) fieldContext___Schema_mutationType(_ conte... method ___Schema_subscriptionType (line 28774) | func (ec *executionContext) ___Schema_subscriptionType(ctx context.Con... method fieldContext___Schema_subscriptionType (line 28802) | func (ec *executionContext) fieldContext___Schema_subscriptionType(_ c... method ___Schema_directives (line 28837) | func (ec *executionContext) ___Schema_directives(ctx context.Context, ... method fieldContext___Schema_directives (line 28868) | func (ec *executionContext) fieldContext___Schema_directives(_ context... method ___Type_kind (line 28893) | func (ec *executionContext) ___Type_kind(ctx context.Context, field gr... method fieldContext___Type_kind (line 28924) | func (ec *executionContext) fieldContext___Type_kind(_ context.Context... method ___Type_name (line 28937) | func (ec *executionContext) ___Type_name(ctx context.Context, field gr... method fieldContext___Type_name (line 28965) | func (ec *executionContext) fieldContext___Type_name(_ context.Context... method ___Type_description (line 28978) | func (ec *executionContext) ___Type_description(ctx context.Context, f... method fieldContext___Type_description (line 29006) | func (ec *executionContext) fieldContext___Type_description(_ context.... method ___Type_fields (line 29019) | func (ec *executionContext) ___Type_fields(ctx context.Context, field ... method fieldContext___Type_fields (line 29047) | func (ec *executionContext) fieldContext___Type_fields(ctx context.Con... method ___Type_interfaces (line 29085) | func (ec *executionContext) ___Type_interfaces(ctx context.Context, fi... method fieldContext___Type_interfaces (line 29113) | func (ec *executionContext) fieldContext___Type_interfaces(_ context.C... method ___Type_possibleTypes (line 29148) | func (ec *executionContext) ___Type_possibleTypes(ctx context.Context,... method fieldContext___Type_possibleTypes (line 29176) | func (ec *executionContext) fieldContext___Type_possibleTypes(_ contex... method ___Type_enumValues (line 29211) | func (ec *executionContext) ___Type_enumValues(ctx context.Context, fi... method fieldContext___Type_enumValues (line 29239) | func (ec *executionContext) fieldContext___Type_enumValues(ctx context... method ___Type_inputFields (line 29273) | func (ec *executionContext) ___Type_inputFields(ctx context.Context, f... method fieldContext___Type_inputFields (line 29301) | func (ec *executionContext) fieldContext___Type_inputFields(_ context.... method ___Type_ofType (line 29324) | func (ec *executionContext) ___Type_ofType(ctx context.Context, field ... method fieldContext___Type_ofType (line 29352) | func (ec *executionContext) fieldContext___Type_ofType(_ context.Conte... method ___Type_specifiedByURL (line 29387) | func (ec *executionContext) ___Type_specifiedByURL(ctx context.Context... method fieldContext___Type_specifiedByURL (line 29415) | func (ec *executionContext) fieldContext___Type_specifiedByURL(_ conte... method unmarshalInputAgentConfigInput (line 29432) | func (ec *executionContext) unmarshalInputAgentConfigInput(ctx context... method unmarshalInputAgentsConfigInput (line 29536) | func (ec *executionContext) unmarshalInputAgentsConfigInput(ctx contex... method unmarshalInputCreateAPITokenInput (line 29647) | func (ec *executionContext) unmarshalInputCreateAPITokenInput(ctx cont... method unmarshalInputModelPriceInput (line 29681) | func (ec *executionContext) unmarshalInputModelPriceInput(ctx context.... method unmarshalInputReasoningConfigInput (line 29729) | func (ec *executionContext) unmarshalInputReasoningConfigInput(ctx con... method unmarshalInputUpdateAPITokenInput (line 29763) | func (ec *executionContext) unmarshalInputUpdateAPITokenInput(ctx cont... method _APIToken (line 29807) | func (ec *executionContext) _APIToken(ctx context.Context, sel ast.Sel... method _APITokenWithSecret (line 29883) | func (ec *executionContext) _APITokenWithSecret(ctx context.Context, s... method _AgentConfig (line 29964) | func (ec *executionContext) _AgentConfig(ctx context.Context, sel ast.... method _AgentLog (line 30025) | func (ec *executionContext) _AgentLog(ctx context.Context, sel ast.Sel... method _AgentPrompt (line 30098) | func (ec *executionContext) _AgentPrompt(ctx context.Context, sel ast.... method _AgentPrompts (line 30137) | func (ec *executionContext) _AgentPrompts(ctx context.Context, sel ast... method _AgentTestResult (line 30181) | func (ec *executionContext) _AgentTestResult(ctx context.Context, sel ... method _AgentTypeUsageStats (line 30220) | func (ec *executionContext) _AgentTypeUsageStats(ctx context.Context, ... method _AgentsConfig (line 30264) | func (ec *executionContext) _AgentsConfig(ctx context.Context, sel ast... method _AgentsPrompts (line 30363) | func (ec *executionContext) _AgentsPrompts(ctx context.Context, sel as... method _Assistant (line 30472) | func (ec *executionContext) _Assistant(ctx context.Context, sel ast.Se... method _AssistantLog (line 30546) | func (ec *executionContext) _AssistantLog(ctx context.Context, sel ast... method _DailyFlowsStats (line 30627) | func (ec *executionContext) _DailyFlowsStats(ctx context.Context, sel ... method _DailyToolcallsStats (line 30671) | func (ec *executionContext) _DailyToolcallsStats(ctx context.Context, ... method _DailyUsageStats (line 30715) | func (ec *executionContext) _DailyUsageStats(ctx context.Context, sel ... method _DefaultPrompt (line 30759) | func (ec *executionContext) _DefaultPrompt(ctx context.Context, sel as... method _DefaultPrompts (line 30808) | func (ec *executionContext) _DefaultPrompts(ctx context.Context, sel a... method _DefaultProvidersConfig (line 30852) | func (ec *executionContext) _DefaultProvidersConfig(ctx context.Contex... method _Flow (line 30912) | func (ec *executionContext) _Flow(ctx context.Context, sel ast.Selecti... method _FlowAssistant (line 30978) | func (ec *executionContext) _FlowAssistant(ctx context.Context, sel as... method _FlowExecutionStats (line 31022) | func (ec *executionContext) _FlowExecutionStats(ctx context.Context, s... method _FlowStats (line 31086) | func (ec *executionContext) _FlowStats(ctx context.Context, sel ast.Se... method _FlowsStats (line 31135) | func (ec *executionContext) _FlowsStats(ctx context.Context, sel ast.S... method _FunctionToolcallsStats (line 31189) | func (ec *executionContext) _FunctionToolcallsStats(ctx context.Contex... method _MessageLog (line 31248) | func (ec *executionContext) _MessageLog(ctx context.Context, sel ast.S... method _ModelConfig (line 31323) | func (ec *executionContext) _ModelConfig(ctx context.Context, sel ast.... method _ModelPrice (line 31370) | func (ec *executionContext) _ModelPrice(ctx context.Context, sel ast.S... method _ModelUsageStats (line 31424) | func (ec *executionContext) _ModelUsageStats(ctx context.Context, sel ... method _Mutation (line 31473) | func (ec *executionContext) _Mutation(ctx context.Context, sel ast.Sel... method _PromptValidationResult (line 31683) | func (ec *executionContext) _PromptValidationResult(ctx context.Contex... method _PromptsConfig (line 31730) | func (ec *executionContext) _PromptsConfig(ctx context.Context, sel as... method _Provider (line 31771) | func (ec *executionContext) _Provider(ctx context.Context, sel ast.Sel... method _ProviderConfig (line 31815) | func (ec *executionContext) _ProviderConfig(ctx context.Context, sel a... method _ProviderTestResult (line 31879) | func (ec *executionContext) _ProviderTestResult(ctx context.Context, s... method _ProviderUsageStats (line 31978) | func (ec *executionContext) _ProviderUsageStats(ctx context.Context, s... method _ProvidersConfig (line 32022) | func (ec *executionContext) _ProvidersConfig(ctx context.Context, sel ... method _ProvidersModelsList (line 32073) | func (ec *executionContext) _ProvidersModelsList(ctx context.Context, ... method _ProvidersReadinessStatus (line 32136) | func (ec *executionContext) _ProvidersReadinessStatus(ctx context.Cont... method _Query (line 32220) | func (ec *executionContext) _Query(ctx context.Context, sel ast.Select... method _ReasoningConfig (line 32985) | func (ec *executionContext) _ReasoningConfig(ctx context.Context, sel ... method _Screenshot (line 33023) | func (ec *executionContext) _Screenshot(ctx context.Context, sel ast.S... method _SearchLog (line 33086) | func (ec *executionContext) _SearchLog(ctx context.Context, sel ast.Se... method _Settings (line 33164) | func (ec *executionContext) _Settings(ctx context.Context, sel ast.Sel... method _Subscription (line 33218) | func (ec *executionContext) _Subscription(ctx context.Context, sel ast... method _Subtask (line 33284) | func (ec *executionContext) _Subtask(ctx context.Context, sel ast.Sele... method _SubtaskExecutionStats (line 33358) | func (ec *executionContext) _SubtaskExecutionStats(ctx context.Context... method _Task (line 33412) | func (ec *executionContext) _Task(ctx context.Context, sel ast.Selecti... method _TaskExecutionStats (line 33488) | func (ec *executionContext) _TaskExecutionStats(ctx context.Context, s... method _Terminal (line 33547) | func (ec *executionContext) _Terminal(ctx context.Context, sel ast.Sel... method _TerminalLog (line 33611) | func (ec *executionContext) _TerminalLog(ctx context.Context, sel ast.... method _TestResult (line 33679) | func (ec *executionContext) _TestResult(ctx context.Context, sel ast.S... method _ToolcallsStats (line 33742) | func (ec *executionContext) _ToolcallsStats(ctx context.Context, sel a... method _ToolsPrompts (line 33786) | func (ec *executionContext) _ToolsPrompts(ctx context.Context, sel ast... method _UsageStats (line 33880) | func (ec *executionContext) _UsageStats(ctx context.Context, sel ast.S... method _UserPreferences (line 33944) | func (ec *executionContext) _UserPreferences(ctx context.Context, sel ... method _UserPrompt (line 33988) | func (ec *executionContext) _UserPrompt(ctx context.Context, sel ast.S... method _VectorStoreLog (line 34047) | func (ec *executionContext) _VectorStoreLog(ctx context.Context, sel a... method ___Directive (line 34130) | func (ec *executionContext) ___Directive(ctx context.Context, sel ast.... method ___EnumValue (line 34186) | func (ec *executionContext) ___EnumValue(ctx context.Context, sel ast.... method ___Field (line 34234) | func (ec *executionContext) ___Field(ctx context.Context, sel ast.Sele... method ___InputValue (line 34292) | func (ec *executionContext) ___InputValue(ctx context.Context, sel ast... method ___Schema (line 34340) | func (ec *executionContext) ___Schema(ctx context.Context, sel ast.Sel... method ___Type (line 34395) | func (ec *executionContext) ___Type(ctx context.Context, sel ast.Selec... method marshalNAPIToken2pentagiᚋpkgᚋgraphᚋmodelᚐAPIToken (line 34454) | func (ec *executionContext) marshalNAPIToken2pentagiᚋpkgᚋgraphᚋmodelᚐA... method marshalNAPIToken2ᚕᚖpentagiᚋpkgᚋgraphᚋmodelᚐAPITokenᚄ (line 34458) | func (ec *executionContext) marshalNAPIToken2ᚕᚖpentagiᚋpkgᚋgraphᚋmodel... method marshalNAPIToken2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐAPIToken (line 34502) | func (ec *executionContext) marshalNAPIToken2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐ... method marshalNAPITokenWithSecret2pentagiᚋpkgᚋgraphᚋmodelᚐAPITokenWithSecret (line 34512) | func (ec *executionContext) marshalNAPITokenWithSecret2pentagiᚋpkgᚋgra... method marshalNAPITokenWithSecret2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐAPITokenWithSecret (line 34516) | func (ec *executionContext) marshalNAPITokenWithSecret2ᚖpentagiᚋpkgᚋgr... method marshalNAgentConfig2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐAgentConfig (line 34526) | func (ec *executionContext) marshalNAgentConfig2ᚖpentagiᚋpkgᚋgraphᚋmod... method unmarshalNAgentConfigInput2pentagiᚋpkgᚋgraphᚋmodelᚐAgentConfig (line 34536) | func (ec *executionContext) unmarshalNAgentConfigInput2pentagiᚋpkgᚋgra... method unmarshalNAgentConfigInput2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐAgentConfig (line 34541) | func (ec *executionContext) unmarshalNAgentConfigInput2ᚖpentagiᚋpkgᚋgr... method unmarshalNAgentConfigType2pentagiᚋpkgᚋgraphᚋmodelᚐAgentConfigType (line 34546) | func (ec *executionContext) unmarshalNAgentConfigType2pentagiᚋpkgᚋgrap... method marshalNAgentConfigType2pentagiᚋpkgᚋgraphᚋmodelᚐAgentConfigType (line 34552) | func (ec *executionContext) marshalNAgentConfigType2pentagiᚋpkgᚋgraphᚋ... method marshalNAgentLog2pentagiᚋpkgᚋgraphᚋmodelᚐAgentLog (line 34556) | func (ec *executionContext) marshalNAgentLog2pentagiᚋpkgᚋgraphᚋmodelᚐA... method marshalNAgentLog2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐAgentLog (line 34560) | func (ec *executionContext) marshalNAgentLog2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐ... method marshalNAgentPrompt2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐAgentPrompt (line 34570) | func (ec *executionContext) marshalNAgentPrompt2ᚖpentagiᚋpkgᚋgraphᚋmod... method marshalNAgentPrompts2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐAgentPrompts (line 34580) | func (ec *executionContext) marshalNAgentPrompts2ᚖpentagiᚋpkgᚋgraphᚋmo... method marshalNAgentTestResult2pentagiᚋpkgᚋgraphᚋmodelᚐAgentTestResult (line 34590) | func (ec *executionContext) marshalNAgentTestResult2pentagiᚋpkgᚋgraphᚋ... method marshalNAgentTestResult2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐAgentTestResult (line 34594) | func (ec *executionContext) marshalNAgentTestResult2ᚖpentagiᚋpkgᚋgraph... method unmarshalNAgentType2pentagiᚋpkgᚋgraphᚋmodelᚐAgentType (line 34604) | func (ec *executionContext) unmarshalNAgentType2pentagiᚋpkgᚋgraphᚋmode... method marshalNAgentType2pentagiᚋpkgᚋgraphᚋmodelᚐAgentType (line 34610) | func (ec *executionContext) marshalNAgentType2pentagiᚋpkgᚋgraphᚋmodelᚐ... method marshalNAgentTypeUsageStats2ᚕᚖpentagiᚋpkgᚋgraphᚋmodelᚐAgentTypeUsageStatsᚄ (line 34614) | func (ec *executionContext) marshalNAgentTypeUsageStats2ᚕᚖpentagiᚋpkgᚋ... method marshalNAgentTypeUsageStats2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐAgentTypeUsageStats (line 34658) | func (ec *executionContext) marshalNAgentTypeUsageStats2ᚖpentagiᚋpkgᚋg... method marshalNAgentsConfig2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐAgentsConfig (line 34668) | func (ec *executionContext) marshalNAgentsConfig2ᚖpentagiᚋpkgᚋgraphᚋmo... method unmarshalNAgentsConfigInput2pentagiᚋpkgᚋgraphᚋmodelᚐAgentsConfig (line 34678) | func (ec *executionContext) unmarshalNAgentsConfigInput2pentagiᚋpkgᚋgr... method marshalNAgentsPrompts2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐAgentsPrompts (line 34683) | func (ec *executionContext) marshalNAgentsPrompts2ᚖpentagiᚋpkgᚋgraphᚋm... method marshalNAssistant2pentagiᚋpkgᚋgraphᚋmodelᚐAssistant (line 34693) | func (ec *executionContext) marshalNAssistant2pentagiᚋpkgᚋgraphᚋmodelᚐ... method marshalNAssistant2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐAssistant (line 34697) | func (ec *executionContext) marshalNAssistant2ᚖpentagiᚋpkgᚋgraphᚋmodel... method marshalNAssistantLog2pentagiᚋpkgᚋgraphᚋmodelᚐAssistantLog (line 34707) | func (ec *executionContext) marshalNAssistantLog2pentagiᚋpkgᚋgraphᚋmod... method marshalNAssistantLog2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐAssistantLog (line 34711) | func (ec *executionContext) marshalNAssistantLog2ᚖpentagiᚋpkgᚋgraphᚋmo... method unmarshalNBoolean2bool (line 34721) | func (ec *executionContext) unmarshalNBoolean2bool(ctx context.Context... method marshalNBoolean2bool (line 34726) | func (ec *executionContext) marshalNBoolean2bool(ctx context.Context, ... method unmarshalNCreateAPITokenInput2pentagiᚋpkgᚋgraphᚋmodelᚐCreateAPITokenInput (line 34736) | func (ec *executionContext) unmarshalNCreateAPITokenInput2pentagiᚋpkgᚋ... method marshalNDailyFlowsStats2ᚕᚖpentagiᚋpkgᚋgraphᚋmodelᚐDailyFlowsStatsᚄ (line 34741) | func (ec *executionContext) marshalNDailyFlowsStats2ᚕᚖpentagiᚋpkgᚋgrap... method marshalNDailyFlowsStats2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐDailyFlowsStats (line 34785) | func (ec *executionContext) marshalNDailyFlowsStats2ᚖpentagiᚋpkgᚋgraph... method marshalNDailyToolcallsStats2ᚕᚖpentagiᚋpkgᚋgraphᚋmodelᚐDailyToolcallsStatsᚄ (line 34795) | func (ec *executionContext) marshalNDailyToolcallsStats2ᚕᚖpentagiᚋpkgᚋ... method marshalNDailyToolcallsStats2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐDailyToolcallsStats (line 34839) | func (ec *executionContext) marshalNDailyToolcallsStats2ᚖpentagiᚋpkgᚋg... method marshalNDailyUsageStats2ᚕᚖpentagiᚋpkgᚋgraphᚋmodelᚐDailyUsageStatsᚄ (line 34849) | func (ec *executionContext) marshalNDailyUsageStats2ᚕᚖpentagiᚋpkgᚋgrap... method marshalNDailyUsageStats2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐDailyUsageStats (line 34893) | func (ec *executionContext) marshalNDailyUsageStats2ᚖpentagiᚋpkgᚋgraph... method marshalNDefaultPrompt2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐDefaultPrompt (line 34903) | func (ec *executionContext) marshalNDefaultPrompt2ᚖpentagiᚋpkgᚋgraphᚋm... method marshalNDefaultPrompts2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐDefaultPrompts (line 34913) | func (ec *executionContext) marshalNDefaultPrompts2ᚖpentagiᚋpkgᚋgraphᚋ... method marshalNDefaultProvidersConfig2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐDefaultProvidersConfig (line 34923) | func (ec *executionContext) marshalNDefaultProvidersConfig2ᚖpentagiᚋpk... method unmarshalNFloat2float64 (line 34933) | func (ec *executionContext) unmarshalNFloat2float64(ctx context.Contex... method marshalNFloat2float64 (line 34938) | func (ec *executionContext) marshalNFloat2float64(ctx context.Context,... method marshalNFlow2pentagiᚋpkgᚋgraphᚋmodelᚐFlow (line 34948) | func (ec *executionContext) marshalNFlow2pentagiᚋpkgᚋgraphᚋmodelᚐFlow(... method marshalNFlow2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐFlow (line 34952) | func (ec *executionContext) marshalNFlow2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐFlow... method marshalNFlowAssistant2pentagiᚋpkgᚋgraphᚋmodelᚐFlowAssistant (line 34962) | func (ec *executionContext) marshalNFlowAssistant2pentagiᚋpkgᚋgraphᚋmo... method marshalNFlowAssistant2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐFlowAssistant (line 34966) | func (ec *executionContext) marshalNFlowAssistant2ᚖpentagiᚋpkgᚋgraphᚋm... method marshalNFlowExecutionStats2ᚕᚖpentagiᚋpkgᚋgraphᚋmodelᚐFlowExecutionStatsᚄ (line 34976) | func (ec *executionContext) marshalNFlowExecutionStats2ᚕᚖpentagiᚋpkgᚋg... method marshalNFlowExecutionStats2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐFlowExecutionStats (line 35020) | func (ec *executionContext) marshalNFlowExecutionStats2ᚖpentagiᚋpkgᚋgr... method marshalNFlowStats2pentagiᚋpkgᚋgraphᚋmodelᚐFlowStats (line 35030) | func (ec *executionContext) marshalNFlowStats2pentagiᚋpkgᚋgraphᚋmodelᚐ... method marshalNFlowStats2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐFlowStats (line 35034) | func (ec *executionContext) marshalNFlowStats2ᚖpentagiᚋpkgᚋgraphᚋmodel... method marshalNFlowsStats2pentagiᚋpkgᚋgraphᚋmodelᚐFlowsStats (line 35044) | func (ec *executionContext) marshalNFlowsStats2pentagiᚋpkgᚋgraphᚋmodel... method marshalNFlowsStats2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐFlowsStats (line 35048) | func (ec *executionContext) marshalNFlowsStats2ᚖpentagiᚋpkgᚋgraphᚋmode... method marshalNFunctionToolcallsStats2ᚕᚖpentagiᚋpkgᚋgraphᚋmodelᚐFunctionToolcallsStatsᚄ (line 35058) | func (ec *executionContext) marshalNFunctionToolcallsStats2ᚕᚖpentagiᚋp... method marshalNFunctionToolcallsStats2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐFunctionToolcallsStats (line 35102) | func (ec *executionContext) marshalNFunctionToolcallsStats2ᚖpentagiᚋpk... method unmarshalNID2int64 (line 35112) | func (ec *executionContext) unmarshalNID2int64(ctx context.Context, v ... method marshalNID2int64 (line 35117) | func (ec *executionContext) marshalNID2int64(ctx context.Context, sel ... method unmarshalNID2ᚕint64ᚄ (line 35127) | func (ec *executionContext) unmarshalNID2ᚕint64ᚄ(ctx context.Context, ... method marshalNID2ᚕint64ᚄ (line 35144) | func (ec *executionContext) marshalNID2ᚕint64ᚄ(ctx context.Context, se... method unmarshalNInt2int (line 35159) | func (ec *executionContext) unmarshalNInt2int(ctx context.Context, v i... method marshalNInt2int (line 35164) | func (ec *executionContext) marshalNInt2int(ctx context.Context, sel a... method marshalNMessageLog2pentagiᚋpkgᚋgraphᚋmodelᚐMessageLog (line 35174) | func (ec *executionContext) marshalNMessageLog2pentagiᚋpkgᚋgraphᚋmodel... method marshalNMessageLog2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐMessageLog (line 35178) | func (ec *executionContext) marshalNMessageLog2ᚖpentagiᚋpkgᚋgraphᚋmode... method unmarshalNMessageLogType2pentagiᚋpkgᚋgraphᚋmodelᚐMessageLogType (line 35188) | func (ec *executionContext) unmarshalNMessageLogType2pentagiᚋpkgᚋgraph... method marshalNMessageLogType2pentagiᚋpkgᚋgraphᚋmodelᚐMessageLogType (line 35194) | func (ec *executionContext) marshalNMessageLogType2pentagiᚋpkgᚋgraphᚋm... method marshalNModelConfig2ᚕᚖpentagiᚋpkgᚋgraphᚋmodelᚐModelConfigᚄ (line 35198) | func (ec *executionContext) marshalNModelConfig2ᚕᚖpentagiᚋpkgᚋgraphᚋmo... method marshalNModelConfig2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐModelConfig (line 35242) | func (ec *executionContext) marshalNModelConfig2ᚖpentagiᚋpkgᚋgraphᚋmod... method marshalNModelUsageStats2ᚕᚖpentagiᚋpkgᚋgraphᚋmodelᚐModelUsageStatsᚄ (line 35252) | func (ec *executionContext) marshalNModelUsageStats2ᚕᚖpentagiᚋpkgᚋgrap... method marshalNModelUsageStats2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐModelUsageStats (line 35296) | func (ec *executionContext) marshalNModelUsageStats2ᚖpentagiᚋpkgᚋgraph... method unmarshalNPromptType2pentagiᚋpkgᚋgraphᚋmodelᚐPromptType (line 35306) | func (ec *executionContext) unmarshalNPromptType2pentagiᚋpkgᚋgraphᚋmod... method marshalNPromptType2pentagiᚋpkgᚋgraphᚋmodelᚐPromptType (line 35312) | func (ec *executionContext) marshalNPromptType2pentagiᚋpkgᚋgraphᚋmodel... method marshalNPromptValidationResult2pentagiᚋpkgᚋgraphᚋmodelᚐPromptValidationResult (line 35316) | func (ec *executionContext) marshalNPromptValidationResult2pentagiᚋpkg... method marshalNPromptValidationResult2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐPromptValidationResult (line 35320) | func (ec *executionContext) marshalNPromptValidationResult2ᚖpentagiᚋpk... method marshalNPromptsConfig2pentagiᚋpkgᚋgraphᚋmodelᚐPromptsConfig (line 35330) | func (ec *executionContext) marshalNPromptsConfig2pentagiᚋpkgᚋgraphᚋmo... method marshalNPromptsConfig2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐPromptsConfig (line 35334) | func (ec *executionContext) marshalNPromptsConfig2ᚖpentagiᚋpkgᚋgraphᚋm... method marshalNProvider2ᚕᚖpentagiᚋpkgᚋgraphᚋmodelᚐProviderᚄ (line 35344) | func (ec *executionContext) marshalNProvider2ᚕᚖpentagiᚋpkgᚋgraphᚋmodel... method marshalNProvider2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐProvider (line 35388) | func (ec *executionContext) marshalNProvider2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐ... method marshalNProviderConfig2pentagiᚋpkgᚋgraphᚋmodelᚐProviderConfig (line 35398) | func (ec *executionContext) marshalNProviderConfig2pentagiᚋpkgᚋgraphᚋm... method marshalNProviderConfig2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐProviderConfig (line 35402) | func (ec *executionContext) marshalNProviderConfig2ᚖpentagiᚋpkgᚋgraphᚋ... method marshalNProviderTestResult2pentagiᚋpkgᚋgraphᚋmodelᚐProviderTestResult (line 35412) | func (ec *executionContext) marshalNProviderTestResult2pentagiᚋpkgᚋgra... method marshalNProviderTestResult2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐProviderTestResult (line 35416) | func (ec *executionContext) marshalNProviderTestResult2ᚖpentagiᚋpkgᚋgr... method unmarshalNProviderType2pentagiᚋpkgᚋgraphᚋmodelᚐProviderType (line 35426) | func (ec *executionContext) unmarshalNProviderType2pentagiᚋpkgᚋgraphᚋm... method marshalNProviderType2pentagiᚋpkgᚋgraphᚋmodelᚐProviderType (line 35432) | func (ec *executionContext) marshalNProviderType2pentagiᚋpkgᚋgraphᚋmod... method marshalNProviderUsageStats2ᚕᚖpentagiᚋpkgᚋgraphᚋmodelᚐProviderUsageStatsᚄ (line 35436) | func (ec *executionContext) marshalNProviderUsageStats2ᚕᚖpentagiᚋpkgᚋg... method marshalNProviderUsageStats2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐProviderUsageStats (line 35480) | func (ec *executionContext) marshalNProviderUsageStats2ᚖpentagiᚋpkgᚋgr... method marshalNProvidersConfig2pentagiᚋpkgᚋgraphᚋmodelᚐProvidersConfig (line 35490) | func (ec *executionContext) marshalNProvidersConfig2pentagiᚋpkgᚋgraphᚋ... method marshalNProvidersConfig2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐProvidersConfig (line 35494) | func (ec *executionContext) marshalNProvidersConfig2ᚖpentagiᚋpkgᚋgraph... method marshalNProvidersModelsList2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐProvidersModelsList (line 35504) | func (ec *executionContext) marshalNProvidersModelsList2ᚖpentagiᚋpkgᚋg... method marshalNProvidersReadinessStatus2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐProvidersReadinessStatus (line 35514) | func (ec *executionContext) marshalNProvidersReadinessStatus2ᚖpentagiᚋ... method unmarshalNResultFormat2pentagiᚋpkgᚋgraphᚋmodelᚐResultFormat (line 35524) | func (ec *executionContext) unmarshalNResultFormat2pentagiᚋpkgᚋgraphᚋm... method marshalNResultFormat2pentagiᚋpkgᚋgraphᚋmodelᚐResultFormat (line 35530) | func (ec *executionContext) marshalNResultFormat2pentagiᚋpkgᚋgraphᚋmod... method unmarshalNResultType2pentagiᚋpkgᚋgraphᚋmodelᚐResultType (line 35534) | func (ec *executionContext) unmarshalNResultType2pentagiᚋpkgᚋgraphᚋmod... method marshalNResultType2pentagiᚋpkgᚋgraphᚋmodelᚐResultType (line 35540) | func (ec *executionContext) marshalNResultType2pentagiᚋpkgᚋgraphᚋmodel... method marshalNScreenshot2pentagiᚋpkgᚋgraphᚋmodelᚐScreenshot (line 35544) | func (ec *executionContext) marshalNScreenshot2pentagiᚋpkgᚋgraphᚋmodel... method marshalNScreenshot2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐScreenshot (line 35548) | func (ec *executionContext) marshalNScreenshot2ᚖpentagiᚋpkgᚋgraphᚋmode... method marshalNSearchLog2pentagiᚋpkgᚋgraphᚋmodelᚐSearchLog (line 35558) | func (ec *executionContext) marshalNSearchLog2pentagiᚋpkgᚋgraphᚋmodelᚐ... method marshalNSearchLog2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐSearchLog (line 35562) | func (ec *executionContext) marshalNSearchLog2ᚖpentagiᚋpkgᚋgraphᚋmodel... method marshalNSettings2pentagiᚋpkgᚋgraphᚋmodelᚐSettings (line 35572) | func (ec *executionContext) marshalNSettings2pentagiᚋpkgᚋgraphᚋmodelᚐS... method marshalNSettings2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐSettings (line 35576) | func (ec *executionContext) marshalNSettings2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐ... method unmarshalNStatusType2pentagiᚋpkgᚋgraphᚋmodelᚐStatusType (line 35586) | func (ec *executionContext) unmarshalNStatusType2pentagiᚋpkgᚋgraphᚋmod... method marshalNStatusType2pentagiᚋpkgᚋgraphᚋmodelᚐStatusType (line 35592) | func (ec *executionContext) marshalNStatusType2pentagiᚋpkgᚋgraphᚋmodel... method unmarshalNString2string (line 35596) | func (ec *executionContext) unmarshalNString2string(ctx context.Contex... method marshalNString2string (line 35601) | func (ec *executionContext) marshalNString2string(ctx context.Context,... method unmarshalNString2ᚕstringᚄ (line 35611) | func (ec *executionContext) unmarshalNString2ᚕstringᚄ(ctx context.Cont... method marshalNString2ᚕstringᚄ (line 35628) | func (ec *executionContext) marshalNString2ᚕstringᚄ(ctx context.Contex... method marshalNSubtask2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐSubtask (line 35643) | func (ec *executionContext) marshalNSubtask2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐS... method marshalNSubtaskExecutionStats2ᚕᚖpentagiᚋpkgᚋgraphᚋmodelᚐSubtaskExecutionStatsᚄ (line 35653) | func (ec *executionContext) marshalNSubtaskExecutionStats2ᚕᚖpentagiᚋpk... method marshalNSubtaskExecutionStats2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐSubtaskExecutionStats (line 35697) | func (ec *executionContext) marshalNSubtaskExecutionStats2ᚖpentagiᚋpkg... method marshalNTask2pentagiᚋpkgᚋgraphᚋmodelᚐTask (line 35707) | func (ec *executionContext) marshalNTask2pentagiᚋpkgᚋgraphᚋmodelᚐTask(... method marshalNTask2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐTask (line 35711) | func (ec *executionContext) marshalNTask2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐTask... method marshalNTaskExecutionStats2ᚕᚖpentagiᚋpkgᚋgraphᚋmodelᚐTaskExecutionStatsᚄ (line 35721) | func (ec *executionContext) marshalNTaskExecutionStats2ᚕᚖpentagiᚋpkgᚋg... method marshalNTaskExecutionStats2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐTaskExecutionStats (line 35765) | func (ec *executionContext) marshalNTaskExecutionStats2ᚖpentagiᚋpkgᚋgr... method marshalNTerminal2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐTerminal (line 35775) | func (ec *executionContext) marshalNTerminal2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐ... method marshalNTerminalLog2pentagiᚋpkgᚋgraphᚋmodelᚐTerminalLog (line 35785) | func (ec *executionContext) marshalNTerminalLog2pentagiᚋpkgᚋgraphᚋmode... method marshalNTerminalLog2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐTerminalLog (line 35789) | func (ec *executionContext) marshalNTerminalLog2ᚖpentagiᚋpkgᚋgraphᚋmod... method unmarshalNTerminalLogType2pentagiᚋpkgᚋgraphᚋmodelᚐTerminalLogType (line 35799) | func (ec *executionContext) unmarshalNTerminalLogType2pentagiᚋpkgᚋgrap... method marshalNTerminalLogType2pentagiᚋpkgᚋgraphᚋmodelᚐTerminalLogType (line 35805) | func (ec *executionContext) marshalNTerminalLogType2pentagiᚋpkgᚋgraphᚋ... method unmarshalNTerminalType2pentagiᚋpkgᚋgraphᚋmodelᚐTerminalType (line 35809) | func (ec *executionContext) unmarshalNTerminalType2pentagiᚋpkgᚋgraphᚋm... method marshalNTerminalType2pentagiᚋpkgᚋgraphᚋmodelᚐTerminalType (line 35815) | func (ec *executionContext) marshalNTerminalType2pentagiᚋpkgᚋgraphᚋmod... method marshalNTestResult2ᚕᚖpentagiᚋpkgᚋgraphᚋmodelᚐTestResultᚄ (line 35819) | func (ec *executionContext) marshalNTestResult2ᚕᚖpentagiᚋpkgᚋgraphᚋmod... method marshalNTestResult2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐTestResult (line 35863) | func (ec *executionContext) marshalNTestResult2ᚖpentagiᚋpkgᚋgraphᚋmode... method unmarshalNTime2timeᚐTime (line 35873) | func (ec *executionContext) unmarshalNTime2timeᚐTime(ctx context.Conte... method marshalNTime2timeᚐTime (line 35878) | func (ec *executionContext) marshalNTime2timeᚐTime(ctx context.Context... method unmarshalNTokenStatus2pentagiᚋpkgᚋgraphᚋmodelᚐTokenStatus (line 35888) | func (ec *executionContext) unmarshalNTokenStatus2pentagiᚋpkgᚋgraphᚋmo... method marshalNTokenStatus2pentagiᚋpkgᚋgraphᚋmodelᚐTokenStatus (line 35894) | func (ec *executionContext) marshalNTokenStatus2pentagiᚋpkgᚋgraphᚋmode... method marshalNToolcallsStats2pentagiᚋpkgᚋgraphᚋmodelᚐToolcallsStats (line 35898) | func (ec *executionContext) marshalNToolcallsStats2pentagiᚋpkgᚋgraphᚋm... method marshalNToolcallsStats2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐToolcallsStats (line 35902) | func (ec *executionContext) marshalNToolcallsStats2ᚖpentagiᚋpkgᚋgraphᚋ... method marshalNToolsPrompts2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐToolsPrompts (line 35912) | func (ec *executionContext) marshalNToolsPrompts2ᚖpentagiᚋpkgᚋgraphᚋmo... method unmarshalNUpdateAPITokenInput2pentagiᚋpkgᚋgraphᚋmodelᚐUpdateAPITokenInput (line 35922) | func (ec *executionContext) unmarshalNUpdateAPITokenInput2pentagiᚋpkgᚋ... method marshalNUsageStats2pentagiᚋpkgᚋgraphᚋmodelᚐUsageStats (line 35927) | func (ec *executionContext) marshalNUsageStats2pentagiᚋpkgᚋgraphᚋmodel... method marshalNUsageStats2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐUsageStats (line 35931) | func (ec *executionContext) marshalNUsageStats2ᚖpentagiᚋpkgᚋgraphᚋmode... method unmarshalNUsageStatsPeriod2pentagiᚋpkgᚋgraphᚋmodelᚐUsageStatsPeriod (line 35941) | func (ec *executionContext) unmarshalNUsageStatsPeriod2pentagiᚋpkgᚋgra... method marshalNUsageStatsPeriod2pentagiᚋpkgᚋgraphᚋmodelᚐUsageStatsPeriod (line 35947) | func (ec *executionContext) marshalNUsageStatsPeriod2pentagiᚋpkgᚋgraph... method marshalNUserPreferences2pentagiᚋpkgᚋgraphᚋmodelᚐUserPreferences (line 35951) | func (ec *executionContext) marshalNUserPreferences2pentagiᚋpkgᚋgraphᚋ... method marshalNUserPreferences2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐUserPreferences (line 35955) | func (ec *executionContext) marshalNUserPreferences2ᚖpentagiᚋpkgᚋgraph... method marshalNUserPrompt2pentagiᚋpkgᚋgraphᚋmodelᚐUserPrompt (line 35965) | func (ec *executionContext) marshalNUserPrompt2pentagiᚋpkgᚋgraphᚋmodel... method marshalNUserPrompt2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐUserPrompt (line 35969) | func (ec *executionContext) marshalNUserPrompt2ᚖpentagiᚋpkgᚋgraphᚋmode... method unmarshalNVectorStoreAction2pentagiᚋpkgᚋgraphᚋmodelᚐVectorStoreAction (line 35979) | func (ec *executionContext) unmarshalNVectorStoreAction2pentagiᚋpkgᚋgr... method marshalNVectorStoreAction2pentagiᚋpkgᚋgraphᚋmodelᚐVectorStoreAction (line 35985) | func (ec *executionContext) marshalNVectorStoreAction2pentagiᚋpkgᚋgrap... method marshalNVectorStoreLog2pentagiᚋpkgᚋgraphᚋmodelᚐVectorStoreLog (line 35989) | func (ec *executionContext) marshalNVectorStoreLog2pentagiᚋpkgᚋgraphᚋm... method marshalNVectorStoreLog2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐVectorStoreLog (line 35993) | func (ec *executionContext) marshalNVectorStoreLog2ᚖpentagiᚋpkgᚋgraphᚋ... method marshalN__Directive2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐDirective (line 36003) | func (ec *executionContext) marshalN__Directive2githubᚗcomᚋ99designsᚋg... method marshalN__Directive2ᚕgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐDirectiveᚄ (line 36007) | func (ec *executionContext) marshalN__Directive2ᚕgithubᚗcomᚋ99designsᚋ... method unmarshalN__DirectiveLocation2string (line 36051) | func (ec *executionContext) unmarshalN__DirectiveLocation2string(ctx c... method marshalN__DirectiveLocation2string (line 36056) | func (ec *executionContext) marshalN__DirectiveLocation2string(ctx con... method unmarshalN__DirectiveLocation2ᚕstringᚄ (line 36066) | func (ec *executionContext) unmarshalN__DirectiveLocation2ᚕstringᚄ(ctx... method marshalN__DirectiveLocation2ᚕstringᚄ (line 36083) | func (ec *executionContext) marshalN__DirectiveLocation2ᚕstringᚄ(ctx c... method marshalN__EnumValue2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐEnumValue (line 36127) | func (ec *executionContext) marshalN__EnumValue2githubᚗcomᚋ99designsᚋg... method marshalN__Field2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐField (line 36131) | func (ec *executionContext) marshalN__Field2githubᚗcomᚋ99designsᚋgqlge... method marshalN__InputValue2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐInputValue (line 36135) | func (ec *executionContext) marshalN__InputValue2githubᚗcomᚋ99designsᚋ... method marshalN__InputValue2ᚕgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐInputValueᚄ (line 36139) | func (ec *executionContext) marshalN__InputValue2ᚕgithubᚗcomᚋ99designs... method marshalN__Type2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐType (line 36183) | func (ec *executionContext) marshalN__Type2githubᚗcomᚋ99designsᚋgqlgen... method marshalN__Type2ᚕgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐTypeᚄ (line 36187) | func (ec *executionContext) marshalN__Type2ᚕgithubᚗcomᚋ99designsᚋgqlge... method marshalN__Type2ᚖgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐType (line 36231) | func (ec *executionContext) marshalN__Type2ᚖgithubᚗcomᚋ99designsᚋgqlge... method unmarshalN__TypeKind2string (line 36241) | func (ec *executionContext) unmarshalN__TypeKind2string(ctx context.Co... method marshalN__TypeKind2string (line 36246) | func (ec *executionContext) marshalN__TypeKind2string(ctx context.Cont... method marshalOAPIToken2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐAPIToken (line 36256) | func (ec *executionContext) marshalOAPIToken2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐ... method marshalOAgentLog2ᚕᚖpentagiᚋpkgᚋgraphᚋmodelᚐAgentLogᚄ (line 36263) | func (ec *executionContext) marshalOAgentLog2ᚕᚖpentagiᚋpkgᚋgraphᚋmodel... method marshalOAssistant2ᚕᚖpentagiᚋpkgᚋgraphᚋmodelᚐAssistantᚄ (line 36310) | func (ec *executionContext) marshalOAssistant2ᚕᚖpentagiᚋpkgᚋgraphᚋmode... method marshalOAssistantLog2ᚕᚖpentagiᚋpkgᚋgraphᚋmodelᚐAssistantLogᚄ (line 36357) | func (ec *executionContext) marshalOAssistantLog2ᚕᚖpentagiᚋpkgᚋgraphᚋm... method unmarshalOBoolean2bool (line 36404) | func (ec *executionContext) unmarshalOBoolean2bool(ctx context.Context... method marshalOBoolean2bool (line 36409) | func (ec *executionContext) marshalOBoolean2bool(ctx context.Context, ... method unmarshalOBoolean2ᚖbool (line 36414) | func (ec *executionContext) unmarshalOBoolean2ᚖbool(ctx context.Contex... method marshalOBoolean2ᚖbool (line 36422) | func (ec *executionContext) marshalOBoolean2ᚖbool(ctx context.Context,... method unmarshalOFloat2ᚖfloat64 (line 36430) | func (ec *executionContext) unmarshalOFloat2ᚖfloat64(ctx context.Conte... method marshalOFloat2ᚖfloat64 (line 36438) | func (ec *executionContext) marshalOFloat2ᚖfloat64(ctx context.Context... method marshalOFlow2ᚕᚖpentagiᚋpkgᚋgraphᚋmodelᚐFlowᚄ (line 36446) | func (ec *executionContext) marshalOFlow2ᚕᚖpentagiᚋpkgᚋgraphᚋmodelᚐFlo... method unmarshalOID2ᚖint64 (line 36493) | func (ec *executionContext) unmarshalOID2ᚖint64(ctx context.Context, v... method marshalOID2ᚖint64 (line 36501) | func (ec *executionContext) marshalOID2ᚖint64(ctx context.Context, sel... method unmarshalOInt2ᚖint (line 36509) | func (ec *executionContext) unmarshalOInt2ᚖint(ctx context.Context, v ... method marshalOInt2ᚖint (line 36517) | func (ec *executionContext) marshalOInt2ᚖint(ctx context.Context, sel ... method marshalOMessageLog2ᚕᚖpentagiᚋpkgᚋgraphᚋmodelᚐMessageLogᚄ (line 36525) | func (ec *executionContext) marshalOMessageLog2ᚕᚖpentagiᚋpkgᚋgraphᚋmod... method marshalOModelConfig2ᚕᚖpentagiᚋpkgᚋgraphᚋmodelᚐModelConfigᚄ (line 36572) | func (ec *executionContext) marshalOModelConfig2ᚕᚖpentagiᚋpkgᚋgraphᚋmo... method marshalOModelPrice2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐModelPrice (line 36619) | func (ec *executionContext) marshalOModelPrice2ᚖpentagiᚋpkgᚋgraphᚋmode... method unmarshalOModelPriceInput2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐModelPrice (line 36626) | func (ec *executionContext) unmarshalOModelPriceInput2ᚖpentagiᚋpkgᚋgra... method unmarshalOPromptValidationErrorType2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐPromptValidationErrorType (line 36634) | func (ec *executionContext) unmarshalOPromptValidationErrorType2ᚖpenta... method marshalOPromptValidationErrorType2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐPromptValidationErrorType (line 36643) | func (ec *executionContext) marshalOPromptValidationErrorType2ᚖpentagi... method marshalOProviderConfig2ᚕᚖpentagiᚋpkgᚋgraphᚋmodelᚐProviderConfigᚄ (line 36650) | func (ec *executionContext) marshalOProviderConfig2ᚕᚖpentagiᚋpkgᚋgraph... method marshalOProviderConfig2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐProviderConfig (line 36697) | func (ec *executionContext) marshalOProviderConfig2ᚖpentagiᚋpkgᚋgraphᚋ... method marshalOReasoningConfig2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐReasoningConfig (line 36704) | func (ec *executionContext) marshalOReasoningConfig2ᚖpentagiᚋpkgᚋgraph... method unmarshalOReasoningConfigInput2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐReasoningConfig (line 36711) | func (ec *executionContext) unmarshalOReasoningConfigInput2ᚖpentagiᚋpk... method unmarshalOReasoningEffort2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐReasoningEffort (line 36719) | func (ec *executionContext) unmarshalOReasoningEffort2ᚖpentagiᚋpkgᚋgra... method marshalOReasoningEffort2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐReasoningEffort (line 36728) | func (ec *executionContext) marshalOReasoningEffort2ᚖpentagiᚋpkgᚋgraph... method marshalOScreenshot2ᚕᚖpentagiᚋpkgᚋgraphᚋmodelᚐScreenshotᚄ (line 36735) | func (ec *executionContext) marshalOScreenshot2ᚕᚖpentagiᚋpkgᚋgraphᚋmod... method marshalOSearchLog2ᚕᚖpentagiᚋpkgᚋgraphᚋmodelᚐSearchLogᚄ (line 36782) | func (ec *executionContext) marshalOSearchLog2ᚕᚖpentagiᚋpkgᚋgraphᚋmode... method unmarshalOString2ᚖstring (line 36829) | func (ec *executionContext) unmarshalOString2ᚖstring(ctx context.Conte... method marshalOString2ᚖstring (line 36837) | func (ec *executionContext) marshalOString2ᚖstring(ctx context.Context... method marshalOSubtask2ᚕᚖpentagiᚋpkgᚋgraphᚋmodelᚐSubtaskᚄ (line 36845) | func (ec *executionContext) marshalOSubtask2ᚕᚖpentagiᚋpkgᚋgraphᚋmodelᚐ... method marshalOTask2ᚕᚖpentagiᚋpkgᚋgraphᚋmodelᚐTaskᚄ (line 36892) | func (ec *executionContext) marshalOTask2ᚕᚖpentagiᚋpkgᚋgraphᚋmodelᚐTas... method marshalOTerminal2ᚕᚖpentagiᚋpkgᚋgraphᚋmodelᚐTerminalᚄ (line 36939) | func (ec *executionContext) marshalOTerminal2ᚕᚖpentagiᚋpkgᚋgraphᚋmodel... method marshalOTerminalLog2ᚕᚖpentagiᚋpkgᚋgraphᚋmodelᚐTerminalLogᚄ (line 36986) | func (ec *executionContext) marshalOTerminalLog2ᚕᚖpentagiᚋpkgᚋgraphᚋmo... method unmarshalOTime2ᚖtimeᚐTime (line 37033) | func (ec *executionContext) unmarshalOTime2ᚖtimeᚐTime(ctx context.Cont... method marshalOTime2ᚖtimeᚐTime (line 37041) | func (ec *executionContext) marshalOTime2ᚖtimeᚐTime(ctx context.Contex... method unmarshalOTokenStatus2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐTokenStatus (line 37049) | func (ec *executionContext) unmarshalOTokenStatus2ᚖpentagiᚋpkgᚋgraphᚋm... method marshalOTokenStatus2ᚖpentagiᚋpkgᚋgraphᚋmodelᚐTokenStatus (line 37058) | func (ec *executionContext) marshalOTokenStatus2ᚖpentagiᚋpkgᚋgraphᚋmod... method marshalOUserPrompt2ᚕᚖpentagiᚋpkgᚋgraphᚋmodelᚐUserPromptᚄ (line 37065) | func (ec *executionContext) marshalOUserPrompt2ᚕᚖpentagiᚋpkgᚋgraphᚋmod... method marshalOVectorStoreLog2ᚕᚖpentagiᚋpkgᚋgraphᚋmodelᚐVectorStoreLogᚄ (line 37112) | func (ec *executionContext) marshalOVectorStoreLog2ᚕᚖpentagiᚋpkgᚋgraph... method marshalO__EnumValue2ᚕgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐEnumValueᚄ (line 37159) | func (ec *executionContext) marshalO__EnumValue2ᚕgithubᚗcomᚋ99designsᚋ... method marshalO__Field2ᚕgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐFieldᚄ (line 37206) | func (ec *executionContext) marshalO__Field2ᚕgithubᚗcomᚋ99designsᚋgqlg... method marshalO__InputValue2ᚕgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐInputValueᚄ (line 37253) | func (ec *executionContext) marshalO__InputValue2ᚕgithubᚗcomᚋ99designs... method marshalO__Schema2ᚖgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐSchema (line 37300) | func (ec *executionContext) marshalO__Schema2ᚖgithubᚗcomᚋ99designsᚋgql... method marshalO__Type2ᚕgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐTypeᚄ (line 37307) | func (ec *executionContext) marshalO__Type2ᚕgithubᚗcomᚋ99designsᚋgqlge... method marshalO__Type2ᚖgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐType (line 37354) | func (ec *executionContext) marshalO__Type2ᚖgithubᚗcomᚋ99designsᚋgqlge... function sourceData (line 4001) | func sourceData(filename string) string { FILE: backend/pkg/graph/model/models_gen.go type APIToken (line 12) | type APIToken struct type APITokenWithSecret (line 24) | type APITokenWithSecret struct type AgentConfig (line 37) | type AgentConfig struct type AgentLog (line 52) | type AgentLog struct type AgentPrompt (line 64) | type AgentPrompt struct type AgentPrompts (line 68) | type AgentPrompts struct type AgentTestResult (line 73) | type AgentTestResult struct type AgentTypeUsageStats (line 77) | type AgentTypeUsageStats struct type AgentsConfig (line 82) | type AgentsConfig struct type AgentsPrompts (line 98) | type AgentsPrompts struct type Assistant (line 116) | type Assistant struct type AssistantLog (line 127) | type AssistantLog struct type CreateAPITokenInput (line 140) | type CreateAPITokenInput struct type DailyFlowsStats (line 145) | type DailyFlowsStats struct type DailyToolcallsStats (line 150) | type DailyToolcallsStats struct type DailyUsageStats (line 155) | type DailyUsageStats struct type DefaultPrompt (line 160) | type DefaultPrompt struct type DefaultPrompts (line 166) | type DefaultPrompts struct type DefaultProvidersConfig (line 171) | type DefaultProvidersConfig struct type Flow (line 184) | type Flow struct type FlowAssistant (line 194) | type FlowAssistant struct type FlowExecutionStats (line 199) | type FlowExecutionStats struct type FlowStats (line 208) | type FlowStats struct type FlowsStats (line 214) | type FlowsStats struct type FunctionToolcallsStats (line 221) | type FunctionToolcallsStats struct type MessageLog (line 229) | type MessageLog struct type ModelConfig (line 242) | type ModelConfig struct type ModelPrice (line 250) | type ModelPrice struct type ModelUsageStats (line 257) | type ModelUsageStats struct type Mutation (line 263) | type Mutation struct type PromptValidationResult (line 266) | type PromptValidationResult struct type PromptsConfig (line 274) | type PromptsConfig struct type Provider (line 279) | type Provider struct type ProviderConfig (line 284) | type ProviderConfig struct type ProviderTestResult (line 293) | type ProviderTestResult struct type ProviderUsageStats (line 309) | type ProviderUsageStats struct type ProvidersConfig (line 314) | type ProvidersConfig struct type ProvidersModelsList (line 321) | type ProvidersModelsList struct type ProvidersReadinessStatus (line 334) | type ProvidersReadinessStatus struct type Query (line 347) | type Query struct type ReasoningConfig (line 350) | type ReasoningConfig struct type Screenshot (line 355) | type Screenshot struct type SearchLog (line 365) | type SearchLog struct type Settings (line 378) | type Settings struct type Subscription (line 385) | type Subscription struct type Subtask (line 388) | type Subtask struct type SubtaskExecutionStats (line 399) | type SubtaskExecutionStats struct type Task (line 406) | type Task struct type TaskExecutionStats (line 418) | type TaskExecutionStats struct type Terminal (line 426) | type Terminal struct type TerminalLog (line 435) | type TerminalLog struct type TestResult (line 446) | type TestResult struct type ToolcallsStats (line 456) | type ToolcallsStats struct type ToolsPrompts (line 461) | type ToolsPrompts struct type UpdateAPITokenInput (line 476) | type UpdateAPITokenInput struct type UsageStats (line 481) | type UsageStats struct type UserPreferences (line 490) | type UserPreferences struct type UserPrompt (line 495) | type UserPrompt struct type VectorStoreLog (line 503) | type VectorStoreLog struct type AgentConfigType (line 517) | type AgentConfigType method IsValid (line 551) | func (e AgentConfigType) IsValid() bool { method String (line 559) | func (e AgentConfigType) String() string { method UnmarshalGQL (line 563) | func (e *AgentConfigType) UnmarshalGQL(v interface{}) error { method MarshalGQL (line 576) | func (e AgentConfigType) MarshalGQL(w io.Writer) { constant AgentConfigTypeSimple (line 520) | AgentConfigTypeSimple AgentConfigType = "simple" constant AgentConfigTypeSimpleJSON (line 521) | AgentConfigTypeSimpleJSON AgentConfigType = "simple_json" constant AgentConfigTypePrimaryAgent (line 522) | AgentConfigTypePrimaryAgent AgentConfigType = "primary_agent" constant AgentConfigTypeAssistant (line 523) | AgentConfigTypeAssistant AgentConfigType = "assistant" constant AgentConfigTypeGenerator (line 524) | AgentConfigTypeGenerator AgentConfigType = "generator" constant AgentConfigTypeRefiner (line 525) | AgentConfigTypeRefiner AgentConfigType = "refiner" constant AgentConfigTypeAdviser (line 526) | AgentConfigTypeAdviser AgentConfigType = "adviser" constant AgentConfigTypeReflector (line 527) | AgentConfigTypeReflector AgentConfigType = "reflector" constant AgentConfigTypeSearcher (line 528) | AgentConfigTypeSearcher AgentConfigType = "searcher" constant AgentConfigTypeEnricher (line 529) | AgentConfigTypeEnricher AgentConfigType = "enricher" constant AgentConfigTypeCoder (line 530) | AgentConfigTypeCoder AgentConfigType = "coder" constant AgentConfigTypeInstaller (line 531) | AgentConfigTypeInstaller AgentConfigType = "installer" constant AgentConfigTypePentester (line 532) | AgentConfigTypePentester AgentConfigType = "pentester" type AgentType (line 580) | type AgentType method IsValid (line 618) | func (e AgentType) IsValid() bool { method String (line 626) | func (e AgentType) String() string { method UnmarshalGQL (line 630) | func (e *AgentType) UnmarshalGQL(v interface{}) error { method MarshalGQL (line 643) | func (e AgentType) MarshalGQL(w io.Writer) { constant AgentTypePrimaryAgent (line 583) | AgentTypePrimaryAgent AgentType = "primary_agent" constant AgentTypeReporter (line 584) | AgentTypeReporter AgentType = "reporter" constant AgentTypeGenerator (line 585) | AgentTypeGenerator AgentType = "generator" constant AgentTypeRefiner (line 586) | AgentTypeRefiner AgentType = "refiner" constant AgentTypeReflector (line 587) | AgentTypeReflector AgentType = "reflector" constant AgentTypeEnricher (line 588) | AgentTypeEnricher AgentType = "enricher" constant AgentTypeAdviser (line 589) | AgentTypeAdviser AgentType = "adviser" constant AgentTypeCoder (line 590) | AgentTypeCoder AgentType = "coder" constant AgentTypeMemorist (line 591) | AgentTypeMemorist AgentType = "memorist" constant AgentTypeSearcher (line 592) | AgentTypeSearcher AgentType = "searcher" constant AgentTypeInstaller (line 593) | AgentTypeInstaller AgentType = "installer" constant AgentTypePentester (line 594) | AgentTypePentester AgentType = "pentester" constant AgentTypeSummarizer (line 595) | AgentTypeSummarizer AgentType = "summarizer" constant AgentTypeToolCallFixer (line 596) | AgentTypeToolCallFixer AgentType = "tool_call_fixer" constant AgentTypeAssistant (line 597) | AgentTypeAssistant AgentType = "assistant" type MessageLogType (line 647) | type MessageLogType method IsValid (line 677) | func (e MessageLogType) IsValid() bool { method String (line 685) | func (e MessageLogType) String() string { method UnmarshalGQL (line 689) | func (e *MessageLogType) UnmarshalGQL(v interface{}) error { method MarshalGQL (line 702) | func (e MessageLogType) MarshalGQL(w io.Writer) { constant MessageLogTypeAnswer (line 650) | MessageLogTypeAnswer MessageLogType = "answer" constant MessageLogTypeReport (line 651) | MessageLogTypeReport MessageLogType = "report" constant MessageLogTypeThoughts (line 652) | MessageLogTypeThoughts MessageLogType = "thoughts" constant MessageLogTypeBrowser (line 653) | MessageLogTypeBrowser MessageLogType = "browser" constant MessageLogTypeTerminal (line 654) | MessageLogTypeTerminal MessageLogType = "terminal" constant MessageLogTypeFile (line 655) | MessageLogTypeFile MessageLogType = "file" constant MessageLogTypeSearch (line 656) | MessageLogTypeSearch MessageLogType = "search" constant MessageLogTypeAdvice (line 657) | MessageLogTypeAdvice MessageLogType = "advice" constant MessageLogTypeAsk (line 658) | MessageLogTypeAsk MessageLogType = "ask" constant MessageLogTypeInput (line 659) | MessageLogTypeInput MessageLogType = "input" constant MessageLogTypeDone (line 660) | MessageLogTypeDone MessageLogType = "done" type PromptType (line 706) | type PromptType method IsValid (line 792) | func (e PromptType) IsValid() bool { method String (line 800) | func (e PromptType) String() string { method UnmarshalGQL (line 804) | func (e *PromptType) UnmarshalGQL(v interface{}) error { method MarshalGQL (line 817) | func (e PromptType) MarshalGQL(w io.Writer) { constant PromptTypePrimaryAgent (line 709) | PromptTypePrimaryAgent PromptType = "primary_agent" constant PromptTypeAssistant (line 710) | PromptTypeAssistant PromptType = "assistant" constant PromptTypePentester (line 711) | PromptTypePentester PromptType = "pentester" constant PromptTypeQuestionPentester (line 712) | PromptTypeQuestionPentester PromptType = "question_pentester" constant PromptTypeCoder (line 713) | PromptTypeCoder PromptType = "coder" constant PromptTypeQuestionCoder (line 714) | PromptTypeQuestionCoder PromptType = "question_coder" constant PromptTypeInstaller (line 715) | PromptTypeInstaller PromptType = "installer" constant PromptTypeQuestionInstaller (line 716) | PromptTypeQuestionInstaller PromptType = "question_installer" constant PromptTypeSearcher (line 717) | PromptTypeSearcher PromptType = "searcher" constant PromptTypeQuestionSearcher (line 718) | PromptTypeQuestionSearcher PromptType = "question_searcher" constant PromptTypeMemorist (line 719) | PromptTypeMemorist PromptType = "memorist" constant PromptTypeQuestionMemorist (line 720) | PromptTypeQuestionMemorist PromptType = "question_memorist" constant PromptTypeAdviser (line 721) | PromptTypeAdviser PromptType = "adviser" constant PromptTypeQuestionAdviser (line 722) | PromptTypeQuestionAdviser PromptType = "question_adviser" constant PromptTypeGenerator (line 723) | PromptTypeGenerator PromptType = "generator" constant PromptTypeSubtasksGenerator (line 724) | PromptTypeSubtasksGenerator PromptType = "subtasks_generator" constant PromptTypeRefiner (line 725) | PromptTypeRefiner PromptType = "refiner" constant PromptTypeSubtasksRefiner (line 726) | PromptTypeSubtasksRefiner PromptType = "subtasks_refiner" constant PromptTypeReporter (line 727) | PromptTypeReporter PromptType = "reporter" constant PromptTypeTaskReporter (line 728) | PromptTypeTaskReporter PromptType = "task_reporter" constant PromptTypeReflector (line 729) | PromptTypeReflector PromptType = "reflector" constant PromptTypeQuestionReflector (line 730) | PromptTypeQuestionReflector PromptType = "question_reflector" constant PromptTypeEnricher (line 731) | PromptTypeEnricher PromptType = "enricher" constant PromptTypeQuestionEnricher (line 732) | PromptTypeQuestionEnricher PromptType = "question_enricher" constant PromptTypeToolcallFixer (line 733) | PromptTypeToolcallFixer PromptType = "toolcall_fixer" constant PromptTypeInputToolcallFixer (line 734) | PromptTypeInputToolcallFixer PromptType = "input_toolcall_fixer" constant PromptTypeSummarizer (line 735) | PromptTypeSummarizer PromptType = "summarizer" constant PromptTypeImageChooser (line 736) | PromptTypeImageChooser PromptType = "image_chooser" constant PromptTypeLanguageChooser (line 737) | PromptTypeLanguageChooser PromptType = "language_chooser" constant PromptTypeFlowDescriptor (line 738) | PromptTypeFlowDescriptor PromptType = "flow_descriptor" constant PromptTypeTaskDescriptor (line 739) | PromptTypeTaskDescriptor PromptType = "task_descriptor" constant PromptTypeExecutionLogs (line 740) | PromptTypeExecutionLogs PromptType = "execution_logs" constant PromptTypeFullExecutionContext (line 741) | PromptTypeFullExecutionContext PromptType = "full_execution_context" constant PromptTypeShortExecutionContext (line 742) | PromptTypeShortExecutionContext PromptType = "short_execution_context" constant PromptTypeToolCallIDCollector (line 743) | PromptTypeToolCallIDCollector PromptType = "tool_call_id_collector" constant PromptTypeToolCallIDDetector (line 744) | PromptTypeToolCallIDDetector PromptType = "tool_call_id_detector" constant PromptTypeQuestionExecutionMonitor (line 745) | PromptTypeQuestionExecutionMonitor PromptType = "question_execution_moni... constant PromptTypeQuestionTaskPlanner (line 746) | PromptTypeQuestionTaskPlanner PromptType = "question_task_planner" constant PromptTypeTaskAssignmentWrapper (line 747) | PromptTypeTaskAssignmentWrapper PromptType = "task_assignment_wrapper" type PromptValidationErrorType (line 821) | type PromptValidationErrorType method IsValid (line 841) | func (e PromptValidationErrorType) IsValid() bool { method String (line 849) | func (e PromptValidationErrorType) String() string { method UnmarshalGQL (line 853) | func (e *PromptValidationErrorType) UnmarshalGQL(v interface{}) error { method MarshalGQL (line 866) | func (e PromptValidationErrorType) MarshalGQL(w io.Writer) { constant PromptValidationErrorTypeSyntaxError (line 824) | PromptValidationErrorTypeSyntaxError PromptValidationErrorType ... constant PromptValidationErrorTypeUnauthorizedVariable (line 825) | PromptValidationErrorTypeUnauthorizedVariable PromptValidationErrorType ... constant PromptValidationErrorTypeRenderingFailed (line 826) | PromptValidationErrorTypeRenderingFailed PromptValidationErrorType ... constant PromptValidationErrorTypeEmptyTemplate (line 827) | PromptValidationErrorTypeEmptyTemplate PromptValidationErrorType ... constant PromptValidationErrorTypeVariableTypeMismatch (line 828) | PromptValidationErrorTypeVariableTypeMismatch PromptValidationErrorType ... constant PromptValidationErrorTypeUnknownType (line 829) | PromptValidationErrorTypeUnknownType PromptValidationErrorType ... type ProviderType (line 870) | type ProviderType method IsValid (line 898) | func (e ProviderType) IsValid() bool { method String (line 906) | func (e ProviderType) String() string { method UnmarshalGQL (line 910) | func (e *ProviderType) UnmarshalGQL(v interface{}) error { method MarshalGQL (line 923) | func (e ProviderType) MarshalGQL(w io.Writer) { constant ProviderTypeOpenai (line 873) | ProviderTypeOpenai ProviderType = "openai" constant ProviderTypeAnthropic (line 874) | ProviderTypeAnthropic ProviderType = "anthropic" constant ProviderTypeGemini (line 875) | ProviderTypeGemini ProviderType = "gemini" constant ProviderTypeBedrock (line 876) | ProviderTypeBedrock ProviderType = "bedrock" constant ProviderTypeOllama (line 877) | ProviderTypeOllama ProviderType = "ollama" constant ProviderTypeCustom (line 878) | ProviderTypeCustom ProviderType = "custom" constant ProviderTypeDeepseek (line 879) | ProviderTypeDeepseek ProviderType = "deepseek" constant ProviderTypeGlm (line 880) | ProviderTypeGlm ProviderType = "glm" constant ProviderTypeKimi (line 881) | ProviderTypeKimi ProviderType = "kimi" constant ProviderTypeQwen (line 882) | ProviderTypeQwen ProviderType = "qwen" type ReasoningEffort (line 927) | type ReasoningEffort method IsValid (line 941) | func (e ReasoningEffort) IsValid() bool { method String (line 949) | func (e ReasoningEffort) String() string { method UnmarshalGQL (line 953) | func (e *ReasoningEffort) UnmarshalGQL(v interface{}) error { method MarshalGQL (line 966) | func (e ReasoningEffort) MarshalGQL(w io.Writer) { constant ReasoningEffortHigh (line 930) | ReasoningEffortHigh ReasoningEffort = "high" constant ReasoningEffortMedium (line 931) | ReasoningEffortMedium ReasoningEffort = "medium" constant ReasoningEffortLow (line 932) | ReasoningEffortLow ReasoningEffort = "low" type ResultFormat (line 970) | type ResultFormat method IsValid (line 984) | func (e ResultFormat) IsValid() bool { method String (line 992) | func (e ResultFormat) String() string { method UnmarshalGQL (line 996) | func (e *ResultFormat) UnmarshalGQL(v interface{}) error { method MarshalGQL (line 1009) | func (e ResultFormat) MarshalGQL(w io.Writer) { constant ResultFormatPlain (line 973) | ResultFormatPlain ResultFormat = "plain" constant ResultFormatMarkdown (line 974) | ResultFormatMarkdown ResultFormat = "markdown" constant ResultFormatTerminal (line 975) | ResultFormatTerminal ResultFormat = "terminal" type ResultType (line 1013) | type ResultType method IsValid (line 1025) | func (e ResultType) IsValid() bool { method String (line 1033) | func (e ResultType) String() string { method UnmarshalGQL (line 1037) | func (e *ResultType) UnmarshalGQL(v interface{}) error { method MarshalGQL (line 1050) | func (e ResultType) MarshalGQL(w io.Writer) { constant ResultTypeSuccess (line 1016) | ResultTypeSuccess ResultType = "success" constant ResultTypeError (line 1017) | ResultTypeError ResultType = "error" type StatusType (line 1054) | type StatusType method IsValid (line 1072) | func (e StatusType) IsValid() bool { method String (line 1080) | func (e StatusType) String() string { method UnmarshalGQL (line 1084) | func (e *StatusType) UnmarshalGQL(v interface{}) error { method MarshalGQL (line 1097) | func (e StatusType) MarshalGQL(w io.Writer) { constant StatusTypeCreated (line 1057) | StatusTypeCreated StatusType = "created" constant StatusTypeRunning (line 1058) | StatusTypeRunning StatusType = "running" constant StatusTypeWaiting (line 1059) | StatusTypeWaiting StatusType = "waiting" constant StatusTypeFinished (line 1060) | StatusTypeFinished StatusType = "finished" constant StatusTypeFailed (line 1061) | StatusTypeFailed StatusType = "failed" type TerminalLogType (line 1101) | type TerminalLogType method IsValid (line 1115) | func (e TerminalLogType) IsValid() bool { method String (line 1123) | func (e TerminalLogType) String() string { method UnmarshalGQL (line 1127) | func (e *TerminalLogType) UnmarshalGQL(v interface{}) error { method MarshalGQL (line 1140) | func (e TerminalLogType) MarshalGQL(w io.Writer) { constant TerminalLogTypeStdin (line 1104) | TerminalLogTypeStdin TerminalLogType = "stdin" constant TerminalLogTypeStdout (line 1105) | TerminalLogTypeStdout TerminalLogType = "stdout" constant TerminalLogTypeStderr (line 1106) | TerminalLogTypeStderr TerminalLogType = "stderr" type TerminalType (line 1144) | type TerminalType method IsValid (line 1156) | func (e TerminalType) IsValid() bool { method String (line 1164) | func (e TerminalType) String() string { method UnmarshalGQL (line 1168) | func (e *TerminalType) UnmarshalGQL(v interface{}) error { method MarshalGQL (line 1181) | func (e TerminalType) MarshalGQL(w io.Writer) { constant TerminalTypePrimary (line 1147) | TerminalTypePrimary TerminalType = "primary" constant TerminalTypeSecondary (line 1148) | TerminalTypeSecondary TerminalType = "secondary" type TokenStatus (line 1185) | type TokenStatus method IsValid (line 1199) | func (e TokenStatus) IsValid() bool { method String (line 1207) | func (e TokenStatus) String() string { method UnmarshalGQL (line 1211) | func (e *TokenStatus) UnmarshalGQL(v interface{}) error { method MarshalGQL (line 1224) | func (e TokenStatus) MarshalGQL(w io.Writer) { constant TokenStatusActive (line 1188) | TokenStatusActive TokenStatus = "active" constant TokenStatusRevoked (line 1189) | TokenStatusRevoked TokenStatus = "revoked" constant TokenStatusExpired (line 1190) | TokenStatusExpired TokenStatus = "expired" type UsageStatsPeriod (line 1228) | type UsageStatsPeriod method IsValid (line 1242) | func (e UsageStatsPeriod) IsValid() bool { method String (line 1250) | func (e UsageStatsPeriod) String() string { method UnmarshalGQL (line 1254) | func (e *UsageStatsPeriod) UnmarshalGQL(v interface{}) error { method MarshalGQL (line 1267) | func (e UsageStatsPeriod) MarshalGQL(w io.Writer) { constant UsageStatsPeriodWeek (line 1231) | UsageStatsPeriodWeek UsageStatsPeriod = "week" constant UsageStatsPeriodMonth (line 1232) | UsageStatsPeriodMonth UsageStatsPeriod = "month" constant UsageStatsPeriodQuarter (line 1233) | UsageStatsPeriodQuarter UsageStatsPeriod = "quarter" type VectorStoreAction (line 1271) | type VectorStoreAction method IsValid (line 1283) | func (e VectorStoreAction) IsValid() bool { method String (line 1291) | func (e VectorStoreAction) String() string { method UnmarshalGQL (line 1295) | func (e *VectorStoreAction) UnmarshalGQL(v interface{}) error { method MarshalGQL (line 1308) | func (e VectorStoreAction) MarshalGQL(w io.Writer) { constant VectorStoreActionRetrieve (line 1274) | VectorStoreActionRetrieve VectorStoreAction = "retrieve" constant VectorStoreActionStore (line 1275) | VectorStoreActionStore VectorStoreAction = "store" FILE: backend/pkg/graph/resolver.go type Resolver (line 19) | type Resolver struct FILE: backend/pkg/graph/schema.resolvers.go method Mutation (line 2248) | func (r *Resolver) Mutation() MutationResolver { return &mutationResolve... method Query (line 2251) | func (r *Resolver) Query() QueryResolver { return &queryResolver{r} } method Subscription (line 2254) | func (r *Resolver) Subscription() SubscriptionResolver { return &subscri... type mutationResolver (line 2256) | type mutationResolver struct method CreateFlow (line 36) | func (r *mutationResolver) CreateFlow(ctx context.Context, modelProvid... method PutUserInput (line 85) | func (r *mutationResolver) PutUserInput(ctx context.Context, flowID in... method StopFlow (line 109) | func (r *mutationResolver) StopFlow(ctx context.Context, flowID int64)... method FinishFlow (line 128) | func (r *mutationResolver) FinishFlow(ctx context.Context, flowID int6... method DeleteFlow (line 148) | func (r *mutationResolver) DeleteFlow(ctx context.Context, flowID int6... method RenameFlow (line 189) | func (r *mutationResolver) RenameFlow(ctx context.Context, flowID int6... method CreateAssistant (line 227) | func (r *mutationResolver) CreateAssistant(ctx context.Context, flowID... method CallAssistant (line 295) | func (r *mutationResolver) CallAssistant(ctx context.Context, flowID i... method StopAssistant (line 325) | func (r *mutationResolver) StopAssistant(ctx context.Context, flowID i... method DeleteAssistant (line 365) | func (r *mutationResolver) DeleteAssistant(ctx context.Context, flowID... method TestAgent (line 400) | func (r *mutationResolver) TestAgent(ctx context.Context, typeArg mode... method TestProvider (line 423) | func (r *mutationResolver) TestProvider(ctx context.Context, typeArg m... method CreateProvider (line 445) | func (r *mutationResolver) CreateProvider(ctx context.Context, name st... method UpdateProvider (line 470) | func (r *mutationResolver) UpdateProvider(ctx context.Context, provide... method DeleteProvider (line 495) | func (r *mutationResolver) DeleteProvider(ctx context.Context, provide... method ValidatePrompt (line 522) | func (r *mutationResolver) ValidatePrompt(ctx context.Context, typeArg... method CreatePrompt (line 581) | func (r *mutationResolver) CreatePrompt(ctx context.Context, typeArg m... method UpdatePrompt (line 610) | func (r *mutationResolver) UpdatePrompt(ctx context.Context, promptID ... method DeletePrompt (line 647) | func (r *mutationResolver) DeletePrompt(ctx context.Context, promptID ... method CreateAPIToken (line 670) | func (r *mutationResolver) CreateAPIToken(ctx context.Context, input m... method UpdateAPIToken (line 747) | func (r *mutationResolver) UpdateAPIToken(ctx context.Context, tokenID... method DeleteAPIToken (line 817) | func (r *mutationResolver) DeleteAPIToken(ctx context.Context, tokenID... method AddFavoriteFlow (line 854) | func (r *mutationResolver) AddFavoriteFlow(ctx context.Context, flowID... method DeleteFavoriteFlow (line 902) | func (r *mutationResolver) DeleteFavoriteFlow(ctx context.Context, flo... type queryResolver (line 2257) | type queryResolver struct method Providers (line 941) | func (r *queryResolver) Providers(ctx context.Context) ([]*model.Provi... method Assistants (line 968) | func (r *queryResolver) Assistants(ctx context.Context, flowID int64) ... method Flows (line 988) | func (r *queryResolver) Flows(ctx context.Context) ([]*model.Flow, err... method Flow (line 1027) | func (r *queryResolver) Flow(ctx context.Context, flowID int64) (*mode... method Tasks (line 1059) | func (r *queryResolver) Tasks(ctx context.Context, flowID int64) ([]*m... method Screenshots (line 1087) | func (r *queryResolver) Screenshots(ctx context.Context, flowID int64)... method TerminalLogs (line 1107) | func (r *queryResolver) TerminalLogs(ctx context.Context, flowID int64... method MessageLogs (line 1127) | func (r *queryResolver) MessageLogs(ctx context.Context, flowID int64)... method AgentLogs (line 1147) | func (r *queryResolver) AgentLogs(ctx context.Context, flowID int64) (... method SearchLogs (line 1167) | func (r *queryResolver) SearchLogs(ctx context.Context, flowID int64) ... method VectorStoreLogs (line 1187) | func (r *queryResolver) VectorStoreLogs(ctx context.Context, flowID in... method AssistantLogs (line 1207) | func (r *queryResolver) AssistantLogs(ctx context.Context, flowID int6... method UsageStatsTotal (line 1231) | func (r *queryResolver) UsageStatsTotal(ctx context.Context) (*model.U... method UsageStatsByPeriod (line 1250) | func (r *queryResolver) UsageStatsByPeriod(ctx context.Context, period... method UsageStatsByProvider (line 1286) | func (r *queryResolver) UsageStatsByProvider(ctx context.Context) ([]*... method UsageStatsByModel (line 1305) | func (r *queryResolver) UsageStatsByModel(ctx context.Context) ([]*mod... method UsageStatsByAgentType (line 1324) | func (r *queryResolver) UsageStatsByAgentType(ctx context.Context) ([]... method UsageStatsByFlow (line 1343) | func (r *queryResolver) UsageStatsByFlow(ctx context.Context, flowID i... method UsageStatsByAgentTypeForFlow (line 1363) | func (r *queryResolver) UsageStatsByAgentTypeForFlow(ctx context.Conte... method ToolcallsStatsTotal (line 1383) | func (r *queryResolver) ToolcallsStatsTotal(ctx context.Context) (*mod... method ToolcallsStatsByPeriod (line 1402) | func (r *queryResolver) ToolcallsStatsByPeriod(ctx context.Context, pe... method ToolcallsStatsByFunction (line 1438) | func (r *queryResolver) ToolcallsStatsByFunction(ctx context.Context) ... method ToolcallsStatsByFlow (line 1457) | func (r *queryResolver) ToolcallsStatsByFlow(ctx context.Context, flow... method ToolcallsStatsByFunctionForFlow (line 1477) | func (r *queryResolver) ToolcallsStatsByFunctionForFlow(ctx context.Co... method FlowsStatsTotal (line 1497) | func (r *queryResolver) FlowsStatsTotal(ctx context.Context) (*model.F... method FlowsStatsByPeriod (line 1516) | func (r *queryResolver) FlowsStatsByPeriod(ctx context.Context, period... method FlowStatsByFlow (line 1552) | func (r *queryResolver) FlowStatsByFlow(ctx context.Context, flowID in... method FlowsExecutionStatsByPeriod (line 1572) | func (r *queryResolver) FlowsExecutionStatsByPeriod(ctx context.Contex... method Settings (line 1671) | func (r *queryResolver) Settings(ctx context.Context) (*model.Settings... method SettingsProviders (line 1688) | func (r *queryResolver) SettingsProviders(ctx context.Context) (*model... method SettingsPrompts (line 1819) | func (r *queryResolver) SettingsPrompts(ctx context.Context) (*model.P... method SettingsUser (line 1852) | func (r *queryResolver) SettingsUser(ctx context.Context) (*model.User... method APIToken (line 1885) | func (r *queryResolver) APIToken(ctx context.Context, tokenID string) ... method APITokens (line 1923) | func (r *queryResolver) APITokens(ctx context.Context) ([]*model.APITo... type subscriptionResolver (line 2258) | type subscriptionResolver struct method FlowCreated (line 1957) | func (r *subscriptionResolver) FlowCreated(ctx context.Context) (<-cha... method FlowDeleted (line 1972) | func (r *subscriptionResolver) FlowDeleted(ctx context.Context) (<-cha... method FlowUpdated (line 1987) | func (r *subscriptionResolver) FlowUpdated(ctx context.Context) (<-cha... method TaskCreated (line 2002) | func (r *subscriptionResolver) TaskCreated(ctx context.Context, flowID... method TaskUpdated (line 2012) | func (r *subscriptionResolver) TaskUpdated(ctx context.Context, flowID... method AssistantCreated (line 2022) | func (r *subscriptionResolver) AssistantCreated(ctx context.Context, f... method AssistantUpdated (line 2032) | func (r *subscriptionResolver) AssistantUpdated(ctx context.Context, f... method AssistantDeleted (line 2042) | func (r *subscriptionResolver) AssistantDeleted(ctx context.Context, f... method ScreenshotAdded (line 2052) | func (r *subscriptionResolver) ScreenshotAdded(ctx context.Context, fl... method TerminalLogAdded (line 2062) | func (r *subscriptionResolver) TerminalLogAdded(ctx context.Context, f... method MessageLogAdded (line 2072) | func (r *subscriptionResolver) MessageLogAdded(ctx context.Context, fl... method MessageLogUpdated (line 2082) | func (r *subscriptionResolver) MessageLogUpdated(ctx context.Context, ... method AgentLogAdded (line 2092) | func (r *subscriptionResolver) AgentLogAdded(ctx context.Context, flow... method SearchLogAdded (line 2102) | func (r *subscriptionResolver) SearchLogAdded(ctx context.Context, flo... method VectorStoreLogAdded (line 2112) | func (r *subscriptionResolver) VectorStoreLogAdded(ctx context.Context... method AssistantLogAdded (line 2122) | func (r *subscriptionResolver) AssistantLogAdded(ctx context.Context, ... method AssistantLogUpdated (line 2132) | func (r *subscriptionResolver) AssistantLogUpdated(ctx context.Context... method ProviderCreated (line 2142) | func (r *subscriptionResolver) ProviderCreated(ctx context.Context) (<... method ProviderUpdated (line 2152) | func (r *subscriptionResolver) ProviderUpdated(ctx context.Context) (<... method ProviderDeleted (line 2162) | func (r *subscriptionResolver) ProviderDeleted(ctx context.Context) (<... method APITokenCreated (line 2172) | func (r *subscriptionResolver) APITokenCreated(ctx context.Context) (<... method APITokenUpdated (line 2191) | func (r *subscriptionResolver) APITokenUpdated(ctx context.Context) (<... method APITokenDeleted (line 2210) | func (r *subscriptionResolver) APITokenDeleted(ctx context.Context) (<... method SettingsUserUpdated (line 2229) | func (r *subscriptionResolver) SettingsUserUpdated(ctx context.Context... FILE: backend/pkg/graph/subscriptions/controller.go constant defChannelLen (line 14) | defChannelLen = 50 constant defSendTimeout (line 15) | defSendTimeout = 5 * time.Second type SubscriptionsController (line 18) | type SubscriptionsController interface type FlowContext (line 23) | type FlowContext interface type FlowSubscriber (line 30) | type FlowSubscriber interface type FlowPublisher (line 61) | type FlowPublisher interface type controller (line 89) | type controller struct method NewFlowPublisher (line 151) | func (s *controller) NewFlowPublisher(userID, flowID int64) FlowPublis... method NewFlowSubscriber (line 159) | func (s *controller) NewFlowSubscriber(userID, flowID int64) FlowSubsc... function NewSubscriptionsController (line 119) | func NewSubscriptionsController() SubscriptionsController { type Channel (line 167) | type Channel interface function NewChannel (line 173) | func NewChannel[T any]() Channel[T] { type channel (line 180) | type channel struct method Subscribe (line 185) | func (c *channel[T]) Subscribe(ctx context.Context, id int64) <-chan T { method Publish (line 217) | func (c *channel[T]) Publish(ctx context.Context, id int64, data T) { method Broadcast (line 230) | func (c *channel[T]) Broadcast(ctx context.Context, data T) { FILE: backend/pkg/graph/subscriptions/publisher.go type flowPublisher (line 11) | type flowPublisher struct method GetFlowID (line 17) | func (p *flowPublisher) GetFlowID() int64 { method SetFlowID (line 21) | func (p *flowPublisher) SetFlowID(flowID int64) { method GetUserID (line 25) | func (p *flowPublisher) GetUserID() int64 { method SetUserID (line 29) | func (p *flowPublisher) SetUserID(userID int64) { method FlowCreated (line 33) | func (p *flowPublisher) FlowCreated(ctx context.Context, flow database... method FlowDeleted (line 39) | func (p *flowPublisher) FlowDeleted(ctx context.Context, flow database... method FlowUpdated (line 45) | func (p *flowPublisher) FlowUpdated(ctx context.Context, flow database... method TaskCreated (line 51) | func (p *flowPublisher) TaskCreated(ctx context.Context, task database... method TaskUpdated (line 55) | func (p *flowPublisher) TaskUpdated(ctx context.Context, task database... method AssistantCreated (line 59) | func (p *flowPublisher) AssistantCreated(ctx context.Context, assistan... method AssistantUpdated (line 63) | func (p *flowPublisher) AssistantUpdated(ctx context.Context, assistan... method AssistantDeleted (line 67) | func (p *flowPublisher) AssistantDeleted(ctx context.Context, assistan... method ScreenshotAdded (line 71) | func (p *flowPublisher) ScreenshotAdded(ctx context.Context, screensho... method TerminalLogAdded (line 75) | func (p *flowPublisher) TerminalLogAdded(ctx context.Context, terminal... method MessageLogAdded (line 79) | func (p *flowPublisher) MessageLogAdded(ctx context.Context, messageLo... method MessageLogUpdated (line 83) | func (p *flowPublisher) MessageLogUpdated(ctx context.Context, message... method AgentLogAdded (line 87) | func (p *flowPublisher) AgentLogAdded(ctx context.Context, agentLog da... method SearchLogAdded (line 91) | func (p *flowPublisher) SearchLogAdded(ctx context.Context, searchLog ... method VectorStoreLogAdded (line 95) | func (p *flowPublisher) VectorStoreLogAdded(ctx context.Context, vecto... method AssistantLogAdded (line 99) | func (p *flowPublisher) AssistantLogAdded(ctx context.Context, assista... method AssistantLogUpdated (line 103) | func (p *flowPublisher) AssistantLogUpdated(ctx context.Context, assis... method ProviderCreated (line 107) | func (p *flowPublisher) ProviderCreated(ctx context.Context, provider ... method ProviderUpdated (line 111) | func (p *flowPublisher) ProviderUpdated(ctx context.Context, provider ... method ProviderDeleted (line 115) | func (p *flowPublisher) ProviderDeleted(ctx context.Context, provider ... method APITokenCreated (line 119) | func (p *flowPublisher) APITokenCreated(ctx context.Context, apiToken ... method APITokenUpdated (line 123) | func (p *flowPublisher) APITokenUpdated(ctx context.Context, apiToken ... method APITokenDeleted (line 127) | func (p *flowPublisher) APITokenDeleted(ctx context.Context, apiToken ... method SettingsUserUpdated (line 131) | func (p *flowPublisher) SettingsUserUpdated(ctx context.Context, userP... FILE: backend/pkg/graph/subscriptions/subscriber.go type flowSubscriber (line 9) | type flowSubscriber struct method GetFlowID (line 15) | func (s *flowSubscriber) GetFlowID() int64 { method SetFlowID (line 19) | func (s *flowSubscriber) SetFlowID(flowID int64) { method GetUserID (line 23) | func (s *flowSubscriber) GetUserID() int64 { method SetUserID (line 27) | func (s *flowSubscriber) SetUserID(userID int64) { method FlowCreatedAdmin (line 31) | func (s *flowSubscriber) FlowCreatedAdmin(ctx context.Context) (<-chan... method FlowCreated (line 35) | func (s *flowSubscriber) FlowCreated(ctx context.Context) (<-chan *mod... method FlowDeletedAdmin (line 39) | func (s *flowSubscriber) FlowDeletedAdmin(ctx context.Context) (<-chan... method FlowDeleted (line 43) | func (s *flowSubscriber) FlowDeleted(ctx context.Context) (<-chan *mod... method FlowUpdatedAdmin (line 47) | func (s *flowSubscriber) FlowUpdatedAdmin(ctx context.Context) (<-chan... method FlowUpdated (line 51) | func (s *flowSubscriber) FlowUpdated(ctx context.Context) (<-chan *mod... method TaskCreated (line 55) | func (s *flowSubscriber) TaskCreated(ctx context.Context) (<-chan *mod... method TaskUpdated (line 59) | func (s *flowSubscriber) TaskUpdated(ctx context.Context) (<-chan *mod... method AssistantCreated (line 63) | func (s *flowSubscriber) AssistantCreated(ctx context.Context) (<-chan... method AssistantUpdated (line 67) | func (s *flowSubscriber) AssistantUpdated(ctx context.Context) (<-chan... method AssistantDeleted (line 71) | func (s *flowSubscriber) AssistantDeleted(ctx context.Context) (<-chan... method ScreenshotAdded (line 75) | func (s *flowSubscriber) ScreenshotAdded(ctx context.Context) (<-chan ... method TerminalLogAdded (line 79) | func (s *flowSubscriber) TerminalLogAdded(ctx context.Context) (<-chan... method MessageLogAdded (line 83) | func (s *flowSubscriber) MessageLogAdded(ctx context.Context) (<-chan ... method MessageLogUpdated (line 87) | func (s *flowSubscriber) MessageLogUpdated(ctx context.Context) (<-cha... method AgentLogAdded (line 91) | func (s *flowSubscriber) AgentLogAdded(ctx context.Context) (<-chan *m... method SearchLogAdded (line 95) | func (s *flowSubscriber) SearchLogAdded(ctx context.Context) (<-chan *... method VectorStoreLogAdded (line 99) | func (s *flowSubscriber) VectorStoreLogAdded(ctx context.Context) (<-c... method AssistantLogAdded (line 103) | func (s *flowSubscriber) AssistantLogAdded(ctx context.Context) (<-cha... method AssistantLogUpdated (line 107) | func (s *flowSubscriber) AssistantLogUpdated(ctx context.Context) (<-c... method ProviderCreated (line 111) | func (s *flowSubscriber) ProviderCreated(ctx context.Context) (<-chan ... method ProviderUpdated (line 115) | func (s *flowSubscriber) ProviderUpdated(ctx context.Context) (<-chan ... method ProviderDeleted (line 119) | func (s *flowSubscriber) ProviderDeleted(ctx context.Context) (<-chan ... method APITokenCreated (line 123) | func (s *flowSubscriber) APITokenCreated(ctx context.Context) (<-chan ... method APITokenUpdated (line 127) | func (s *flowSubscriber) APITokenUpdated(ctx context.Context) (<-chan ... method APITokenDeleted (line 131) | func (s *flowSubscriber) APITokenDeleted(ctx context.Context) (<-chan ... method SettingsUserUpdated (line 135) | func (s *flowSubscriber) SettingsUserUpdated(ctx context.Context) (<-c... FILE: backend/pkg/graphiti/client.go type Client (line 42) | type Client struct method IsEnabled (line 69) | func (c *Client) IsEnabled() bool { method GetTimeout (line 74) | func (c *Client) GetTimeout() time.Duration { method AddMessages (line 82) | func (c *Client) AddMessages(ctx context.Context, req graphiti.AddMess... method TemporalWindowSearch (line 92) | func (c *Client) TemporalWindowSearch(ctx context.Context, req Tempora... method EntityRelationshipsSearch (line 100) | func (c *Client) EntityRelationshipsSearch(ctx context.Context, req En... method DiverseResultsSearch (line 108) | func (c *Client) DiverseResultsSearch(ctx context.Context, req Diverse... method EpisodeContextSearch (line 116) | func (c *Client) EpisodeContextSearch(ctx context.Context, req Episode... method SuccessfulToolsSearch (line 124) | func (c *Client) SuccessfulToolsSearch(ctx context.Context, req Succes... method RecentContextSearch (line 132) | func (c *Client) RecentContextSearch(ctx context.Context, req RecentCo... method EntityByLabelSearch (line 140) | func (c *Client) EntityByLabelSearch(ctx context.Context, req EntityBy... function NewClient (line 49) | func NewClient(url string, timeout time.Duration, enabled bool) (*Client... FILE: backend/pkg/observability/collector.go constant defCollectPeriod (line 17) | defCollectPeriod = 10 * time.Second function startProcessMetricCollect (line 19) | func startProcessMetricCollect(meter otelmetric.Meter, attrs []attribute... function startGoRuntimeMetricCollect (line 72) | func startGoRuntimeMetricCollect(meter otelmetric.Meter, attrs []attribu... function startDumperMetricCollect (line 141) | func startDumperMetricCollect(stats Dumper, meter otelmetric.Meter, attr... FILE: backend/pkg/observability/langfuse/agent.go constant agentDefaultName (line 15) | agentDefaultName = "Default Agent" type Agent (line 18) | type Agent interface type agent (line 26) | type agent struct method End (line 181) | func (a *agent) End(opts ...AgentOption) { method String (line 215) | func (a *agent) String() string { method MarshalJSON (line 219) | func (a *agent) MarshalJSON() ([]byte, error) { method Observation (line 223) | func (a *agent) Observation(ctx context.Context) (context.Context, Obs... method ObservationInfo (line 235) | func (a *agent) ObservationInfo() ObservationInfo { type AgentOption (line 47) | type AgentOption function withAgentTraceID (line 49) | func withAgentTraceID(traceID string) AgentOption { function withAgentParentObservationID (line 55) | func withAgentParentObservationID(parentObservationID string) AgentOption { function WithAgentID (line 62) | func WithAgentID(id string) AgentOption { function WithAgentName (line 68) | func WithAgentName(name string) AgentOption { function WithAgentMetadata (line 74) | func WithAgentMetadata(metadata Metadata) AgentOption { function WithAgentInput (line 80) | func WithAgentInput(input any) AgentOption { function WithAgentOutput (line 86) | func WithAgentOutput(output any) AgentOption { function WithAgentStartTime (line 93) | func WithAgentStartTime(time time.Time) AgentOption { function WithAgentEndTime (line 99) | func WithAgentEndTime(time time.Time) AgentOption { function WithAgentLevel (line 105) | func WithAgentLevel(level ObservationLevel) AgentOption { function WithAgentStatus (line 111) | func WithAgentStatus(status string) AgentOption { function WithAgentVersion (line 117) | func WithAgentVersion(version string) AgentOption { function WithAgentModel (line 123) | func WithAgentModel(model string) AgentOption { function WithAgentModelParameters (line 129) | func WithAgentModelParameters(parameters *ModelParameters) AgentOption { function WithAgentTools (line 135) | func WithAgentTools(tools []llms.Tool) AgentOption { function newAgent (line 141) | func newAgent(observer enqueue, opts ...AgentOption) Agent { FILE: backend/pkg/observability/langfuse/api/annotationqueues.go type CreateAnnotationQueueRequest (line 19) | type CreateAnnotationQueueRequest struct method require (line 28) | func (c *CreateAnnotationQueueRequest) require(field *big.Int) { method SetName (line 37) | func (c *CreateAnnotationQueueRequest) SetName(name string) { method SetDescription (line 44) | func (c *CreateAnnotationQueueRequest) SetDescription(description *str... method SetScoreConfigIDs (line 51) | func (c *CreateAnnotationQueueRequest) SetScoreConfigIDs(scoreConfigID... method UnmarshalJSON (line 56) | func (c *CreateAnnotationQueueRequest) UnmarshalJSON(data []byte) error { method MarshalJSON (line 66) | func (c *CreateAnnotationQueueRequest) MarshalJSON() ([]byte, error) { type AnnotationQueuesCreateQueueAssignmentRequest (line 81) | type AnnotationQueuesCreateQueueAssignmentRequest struct method require (line 90) | func (a *AnnotationQueuesCreateQueueAssignmentRequest) require(field *... method SetQueueID (line 99) | func (a *AnnotationQueuesCreateQueueAssignmentRequest) SetQueueID(queu... method UnmarshalJSON (line 104) | func (a *AnnotationQueuesCreateQueueAssignmentRequest) UnmarshalJSON(d... method MarshalJSON (line 113) | func (a *AnnotationQueuesCreateQueueAssignmentRequest) MarshalJSON() (... type CreateAnnotationQueueItemRequest (line 124) | type CreateAnnotationQueueItemRequest struct method require (line 136) | func (c *CreateAnnotationQueueItemRequest) require(field *big.Int) { method SetQueueID (line 145) | func (c *CreateAnnotationQueueItemRequest) SetQueueID(queueID string) { method SetObjectID (line 152) | func (c *CreateAnnotationQueueItemRequest) SetObjectID(objectID string) { method SetObjectType (line 159) | func (c *CreateAnnotationQueueItemRequest) SetObjectType(objectType An... method SetStatus (line 166) | func (c *CreateAnnotationQueueItemRequest) SetStatus(status *Annotatio... method UnmarshalJSON (line 171) | func (c *CreateAnnotationQueueItemRequest) UnmarshalJSON(data []byte) ... method MarshalJSON (line 181) | func (c *CreateAnnotationQueueItemRequest) MarshalJSON() ([]byte, erro... type AnnotationQueuesDeleteQueueAssignmentRequest (line 196) | type AnnotationQueuesDeleteQueueAssignmentRequest struct method require (line 205) | func (a *AnnotationQueuesDeleteQueueAssignmentRequest) require(field *... method SetQueueID (line 214) | func (a *AnnotationQueuesDeleteQueueAssignmentRequest) SetQueueID(queu... method UnmarshalJSON (line 219) | func (a *AnnotationQueuesDeleteQueueAssignmentRequest) UnmarshalJSON(d... method MarshalJSON (line 228) | func (a *AnnotationQueuesDeleteQueueAssignmentRequest) MarshalJSON() (... type AnnotationQueuesDeleteQueueItemRequest (line 237) | type AnnotationQueuesDeleteQueueItemRequest struct method require (line 247) | func (a *AnnotationQueuesDeleteQueueItemRequest) require(field *big.In... method SetQueueID (line 256) | func (a *AnnotationQueuesDeleteQueueItemRequest) SetQueueID(queueID st... method SetItemID (line 263) | func (a *AnnotationQueuesDeleteQueueItemRequest) SetItemID(itemID stri... type AnnotationQueuesGetQueueRequest (line 272) | type AnnotationQueuesGetQueueRequest struct method require (line 280) | func (a *AnnotationQueuesGetQueueRequest) require(field *big.Int) { method SetQueueID (line 289) | func (a *AnnotationQueuesGetQueueRequest) SetQueueID(queueID string) { type AnnotationQueuesGetQueueItemRequest (line 299) | type AnnotationQueuesGetQueueItemRequest struct method require (line 309) | func (a *AnnotationQueuesGetQueueItemRequest) require(field *big.Int) { method SetQueueID (line 318) | func (a *AnnotationQueuesGetQueueItemRequest) SetQueueID(queueID strin... method SetItemID (line 325) | func (a *AnnotationQueuesGetQueueItemRequest) SetItemID(itemID string) { type AnnotationQueuesListQueueItemsRequest (line 337) | type AnnotationQueuesListQueueItemsRequest struct method require (line 351) | func (a *AnnotationQueuesListQueueItemsRequest) require(field *big.Int) { method SetQueueID (line 360) | func (a *AnnotationQueuesListQueueItemsRequest) SetQueueID(queueID str... method SetStatus (line 367) | func (a *AnnotationQueuesListQueueItemsRequest) SetStatus(status *Anno... method SetPage (line 374) | func (a *AnnotationQueuesListQueueItemsRequest) SetPage(page *int) { method SetLimit (line 381) | func (a *AnnotationQueuesListQueueItemsRequest) SetLimit(limit *int) { type AnnotationQueuesListQueuesRequest (line 391) | type AnnotationQueuesListQueuesRequest struct method require (line 401) | func (a *AnnotationQueuesListQueuesRequest) require(field *big.Int) { method SetPage (line 410) | func (a *AnnotationQueuesListQueuesRequest) SetPage(page *int) { method SetLimit (line 417) | func (a *AnnotationQueuesListQueuesRequest) SetLimit(limit *int) { type AnnotationQueue (line 431) | type AnnotationQueue struct method GetID (line 446) | func (a *AnnotationQueue) GetID() string { method GetName (line 453) | func (a *AnnotationQueue) GetName() string { method GetDescription (line 460) | func (a *AnnotationQueue) GetDescription() *string { method GetScoreConfigIDs (line 467) | func (a *AnnotationQueue) GetScoreConfigIDs() []string { method GetCreatedAt (line 474) | func (a *AnnotationQueue) GetCreatedAt() time.Time { method GetUpdatedAt (line 481) | func (a *AnnotationQueue) GetUpdatedAt() time.Time { method GetExtraProperties (line 488) | func (a *AnnotationQueue) GetExtraProperties() map[string]interface{} { method require (line 492) | func (a *AnnotationQueue) require(field *big.Int) { method SetID (line 501) | func (a *AnnotationQueue) SetID(id string) { method SetName (line 508) | func (a *AnnotationQueue) SetName(name string) { method SetDescription (line 515) | func (a *AnnotationQueue) SetDescription(description *string) { method SetScoreConfigIDs (line 522) | func (a *AnnotationQueue) SetScoreConfigIDs(scoreConfigIDs []string) { method SetCreatedAt (line 529) | func (a *AnnotationQueue) SetCreatedAt(createdAt time.Time) { method SetUpdatedAt (line 536) | func (a *AnnotationQueue) SetUpdatedAt(updatedAt time.Time) { method UnmarshalJSON (line 541) | func (a *AnnotationQueue) UnmarshalJSON(data []byte) error { method MarshalJSON (line 565) | func (a *AnnotationQueue) MarshalJSON() ([]byte, error) { method String (line 580) | func (a *AnnotationQueue) String() string { type AnnotationQueueAssignmentRequest (line 596) | type AnnotationQueueAssignmentRequest struct method GetUserID (line 606) | func (a *AnnotationQueueAssignmentRequest) GetUserID() string { method GetExtraProperties (line 613) | func (a *AnnotationQueueAssignmentRequest) GetExtraProperties() map[st... method require (line 617) | func (a *AnnotationQueueAssignmentRequest) require(field *big.Int) { method SetUserID (line 626) | func (a *AnnotationQueueAssignmentRequest) SetUserID(userID string) { method UnmarshalJSON (line 631) | func (a *AnnotationQueueAssignmentRequest) UnmarshalJSON(data []byte) ... method MarshalJSON (line 647) | func (a *AnnotationQueueAssignmentRequest) MarshalJSON() ([]byte, erro... method String (line 658) | func (a *AnnotationQueueAssignmentRequest) String() string { type AnnotationQueueItem (line 681) | type AnnotationQueueItem struct method GetID (line 698) | func (a *AnnotationQueueItem) GetID() string { method GetQueueID (line 705) | func (a *AnnotationQueueItem) GetQueueID() string { method GetObjectID (line 712) | func (a *AnnotationQueueItem) GetObjectID() string { method GetObjectType (line 719) | func (a *AnnotationQueueItem) GetObjectType() AnnotationQueueObjectType { method GetStatus (line 726) | func (a *AnnotationQueueItem) GetStatus() AnnotationQueueStatus { method GetCompletedAt (line 733) | func (a *AnnotationQueueItem) GetCompletedAt() *time.Time { method GetCreatedAt (line 740) | func (a *AnnotationQueueItem) GetCreatedAt() time.Time { method GetUpdatedAt (line 747) | func (a *AnnotationQueueItem) GetUpdatedAt() time.Time { method GetExtraProperties (line 754) | func (a *AnnotationQueueItem) GetExtraProperties() map[string]interfac... method require (line 758) | func (a *AnnotationQueueItem) require(field *big.Int) { method SetID (line 767) | func (a *AnnotationQueueItem) SetID(id string) { method SetQueueID (line 774) | func (a *AnnotationQueueItem) SetQueueID(queueID string) { method SetObjectID (line 781) | func (a *AnnotationQueueItem) SetObjectID(objectID string) { method SetObjectType (line 788) | func (a *AnnotationQueueItem) SetObjectType(objectType AnnotationQueue... method SetStatus (line 795) | func (a *AnnotationQueueItem) SetStatus(status AnnotationQueueStatus) { method SetCompletedAt (line 802) | func (a *AnnotationQueueItem) SetCompletedAt(completedAt *time.Time) { method SetCreatedAt (line 809) | func (a *AnnotationQueueItem) SetCreatedAt(createdAt time.Time) { method SetUpdatedAt (line 816) | func (a *AnnotationQueueItem) SetUpdatedAt(updatedAt time.Time) { method UnmarshalJSON (line 821) | func (a *AnnotationQueueItem) UnmarshalJSON(data []byte) error { method MarshalJSON (line 847) | func (a *AnnotationQueueItem) MarshalJSON() ([]byte, error) { method String (line 864) | func (a *AnnotationQueueItem) String() string { type AnnotationQueueObjectType (line 876) | type AnnotationQueueObjectType method Ptr (line 897) | func (a AnnotationQueueObjectType) Ptr() *AnnotationQueueObjectType { constant AnnotationQueueObjectTypeTrace (line 879) | AnnotationQueueObjectTypeTrace AnnotationQueueObjectType = "TRACE" constant AnnotationQueueObjectTypeObservation (line 880) | AnnotationQueueObjectTypeObservation AnnotationQueueObjectType = "OBSERV... constant AnnotationQueueObjectTypeSession (line 881) | AnnotationQueueObjectTypeSession AnnotationQueueObjectType = "SESSION" function NewAnnotationQueueObjectTypeFromString (line 884) | func NewAnnotationQueueObjectTypeFromString(s string) (AnnotationQueueOb... type AnnotationQueueStatus (line 901) | type AnnotationQueueStatus method Ptr (line 919) | func (a AnnotationQueueStatus) Ptr() *AnnotationQueueStatus { constant AnnotationQueueStatusPending (line 904) | AnnotationQueueStatusPending AnnotationQueueStatus = "PENDING" constant AnnotationQueueStatusCompleted (line 905) | AnnotationQueueStatusCompleted AnnotationQueueStatus = "COMPLETED" function NewAnnotationQueueStatusFromString (line 908) | func NewAnnotationQueueStatusFromString(s string) (AnnotationQueueStatus... type CreateAnnotationQueueAssignmentResponse (line 929) | type CreateAnnotationQueueAssignmentResponse struct method GetUserID (line 941) | func (c *CreateAnnotationQueueAssignmentResponse) GetUserID() string { method GetQueueID (line 948) | func (c *CreateAnnotationQueueAssignmentResponse) GetQueueID() string { method GetProjectID (line 955) | func (c *CreateAnnotationQueueAssignmentResponse) GetProjectID() string { method GetExtraProperties (line 962) | func (c *CreateAnnotationQueueAssignmentResponse) GetExtraProperties()... method require (line 966) | func (c *CreateAnnotationQueueAssignmentResponse) require(field *big.I... method SetUserID (line 975) | func (c *CreateAnnotationQueueAssignmentResponse) SetUserID(userID str... method SetQueueID (line 982) | func (c *CreateAnnotationQueueAssignmentResponse) SetQueueID(queueID s... method SetProjectID (line 989) | func (c *CreateAnnotationQueueAssignmentResponse) SetProjectID(project... method UnmarshalJSON (line 994) | func (c *CreateAnnotationQueueAssignmentResponse) UnmarshalJSON(data [... method MarshalJSON (line 1010) | func (c *CreateAnnotationQueueAssignmentResponse) MarshalJSON() ([]byt... method String (line 1021) | func (c *CreateAnnotationQueueAssignmentResponse) String() string { type DeleteAnnotationQueueAssignmentResponse (line 1037) | type DeleteAnnotationQueueAssignmentResponse struct method GetSuccess (line 1047) | func (d *DeleteAnnotationQueueAssignmentResponse) GetSuccess() bool { method GetExtraProperties (line 1054) | func (d *DeleteAnnotationQueueAssignmentResponse) GetExtraProperties()... method require (line 1058) | func (d *DeleteAnnotationQueueAssignmentResponse) require(field *big.I... method SetSuccess (line 1067) | func (d *DeleteAnnotationQueueAssignmentResponse) SetSuccess(success b... method UnmarshalJSON (line 1072) | func (d *DeleteAnnotationQueueAssignmentResponse) UnmarshalJSON(data [... method MarshalJSON (line 1088) | func (d *DeleteAnnotationQueueAssignmentResponse) MarshalJSON() ([]byt... method String (line 1099) | func (d *DeleteAnnotationQueueAssignmentResponse) String() string { type DeleteAnnotationQueueItemResponse (line 1116) | type DeleteAnnotationQueueItemResponse struct method GetSuccess (line 1127) | func (d *DeleteAnnotationQueueItemResponse) GetSuccess() bool { method GetMessage (line 1134) | func (d *DeleteAnnotationQueueItemResponse) GetMessage() string { method GetExtraProperties (line 1141) | func (d *DeleteAnnotationQueueItemResponse) GetExtraProperties() map[s... method require (line 1145) | func (d *DeleteAnnotationQueueItemResponse) require(field *big.Int) { method SetSuccess (line 1154) | func (d *DeleteAnnotationQueueItemResponse) SetSuccess(success bool) { method SetMessage (line 1161) | func (d *DeleteAnnotationQueueItemResponse) SetMessage(message string) { method UnmarshalJSON (line 1166) | func (d *DeleteAnnotationQueueItemResponse) UnmarshalJSON(data []byte)... method MarshalJSON (line 1182) | func (d *DeleteAnnotationQueueItemResponse) MarshalJSON() ([]byte, err... method String (line 1193) | func (d *DeleteAnnotationQueueItemResponse) String() string { type PaginatedAnnotationQueueItems (line 1210) | type PaginatedAnnotationQueueItems struct method GetData (line 1221) | func (p *PaginatedAnnotationQueueItems) GetData() []*AnnotationQueueIt... method GetMeta (line 1228) | func (p *PaginatedAnnotationQueueItems) GetMeta() *UtilsMetaResponse { method GetExtraProperties (line 1235) | func (p *PaginatedAnnotationQueueItems) GetExtraProperties() map[strin... method require (line 1239) | func (p *PaginatedAnnotationQueueItems) require(field *big.Int) { method SetData (line 1248) | func (p *PaginatedAnnotationQueueItems) SetData(data []*AnnotationQueu... method SetMeta (line 1255) | func (p *PaginatedAnnotationQueueItems) SetMeta(meta *UtilsMetaRespons... method UnmarshalJSON (line 1260) | func (p *PaginatedAnnotationQueueItems) UnmarshalJSON(data []byte) err... method MarshalJSON (line 1276) | func (p *PaginatedAnnotationQueueItems) MarshalJSON() ([]byte, error) { method String (line 1287) | func (p *PaginatedAnnotationQueueItems) String() string { type PaginatedAnnotationQueues (line 1304) | type PaginatedAnnotationQueues struct method GetData (line 1315) | func (p *PaginatedAnnotationQueues) GetData() []*AnnotationQueue { method GetMeta (line 1322) | func (p *PaginatedAnnotationQueues) GetMeta() *UtilsMetaResponse { method GetExtraProperties (line 1329) | func (p *PaginatedAnnotationQueues) GetExtraProperties() map[string]in... method require (line 1333) | func (p *PaginatedAnnotationQueues) require(field *big.Int) { method SetData (line 1342) | func (p *PaginatedAnnotationQueues) SetData(data []*AnnotationQueue) { method SetMeta (line 1349) | func (p *PaginatedAnnotationQueues) SetMeta(meta *UtilsMetaResponse) { method UnmarshalJSON (line 1354) | func (p *PaginatedAnnotationQueues) UnmarshalJSON(data []byte) error { method MarshalJSON (line 1370) | func (p *PaginatedAnnotationQueues) MarshalJSON() ([]byte, error) { method String (line 1381) | func (p *PaginatedAnnotationQueues) String() string { type UpdateAnnotationQueueItemRequest (line 1399) | type UpdateAnnotationQueueItemRequest struct method require (line 1410) | func (u *UpdateAnnotationQueueItemRequest) require(field *big.Int) { method SetQueueID (line 1419) | func (u *UpdateAnnotationQueueItemRequest) SetQueueID(queueID string) { method SetItemID (line 1426) | func (u *UpdateAnnotationQueueItemRequest) SetItemID(itemID string) { method SetStatus (line 1433) | func (u *UpdateAnnotationQueueItemRequest) SetStatus(status *Annotatio... method UnmarshalJSON (line 1438) | func (u *UpdateAnnotationQueueItemRequest) UnmarshalJSON(data []byte) ... method MarshalJSON (line 1448) | func (u *UpdateAnnotationQueueItemRequest) MarshalJSON() ([]byte, erro... FILE: backend/pkg/observability/langfuse/api/annotationqueues/client.go type Client (line 14) | type Client struct method Listqueues (line 37) | func (c *Client) Listqueues( method Createqueue (line 54) | func (c *Client) Createqueue( method Getqueue (line 71) | func (c *Client) Getqueue( method Listqueueitems (line 88) | func (c *Client) Listqueueitems( method Createqueueitem (line 105) | func (c *Client) Createqueueitem( method Getqueueitem (line 122) | func (c *Client) Getqueueitem( method Deletequeueitem (line 139) | func (c *Client) Deletequeueitem( method Updatequeueitem (line 156) | func (c *Client) Updatequeueitem( method Createqueueassignment (line 173) | func (c *Client) Createqueueassignment( method Deletequeueassignment (line 190) | func (c *Client) Deletequeueassignment( function NewClient (line 22) | func NewClient(options *core.RequestOptions) *Client { FILE: backend/pkg/observability/langfuse/api/annotationqueues/raw_client.go type RawClient (line 15) | type RawClient struct method Listqueues (line 34) | func (r *RawClient) Listqueues( method Createqueue (line 82) | func (r *RawClient) Createqueue( method Getqueue (line 125) | func (r *RawClient) Getqueue( method Listqueueitems (line 169) | func (r *RawClient) Listqueueitems( method Createqueueitem (line 220) | func (r *RawClient) Createqueueitem( method Getqueueitem (line 266) | func (r *RawClient) Getqueueitem( method Deletequeueitem (line 311) | func (r *RawClient) Deletequeueitem( method Updatequeueitem (line 356) | func (r *RawClient) Updatequeueitem( method Createqueueassignment (line 403) | func (r *RawClient) Createqueueassignment( method Deletequeueassignment (line 449) | func (r *RawClient) Deletequeueassignment( function NewRawClient (line 21) | func NewRawClient(options *core.RequestOptions) *RawClient { FILE: backend/pkg/observability/langfuse/api/blobstorageintegrations.go type BlobStorageIntegrationsDeleteBlobStorageIntegrationRequest (line 17) | type BlobStorageIntegrationsDeleteBlobStorageIntegrationRequest struct method require (line 24) | func (b *BlobStorageIntegrationsDeleteBlobStorageIntegrationRequest) r... method SetID (line 33) | func (b *BlobStorageIntegrationsDeleteBlobStorageIntegrationRequest) S... type BlobStorageExportFrequency (line 38) | type BlobStorageExportFrequency method Ptr (line 59) | func (b BlobStorageExportFrequency) Ptr() *BlobStorageExportFrequency { constant BlobStorageExportFrequencyHourly (line 41) | BlobStorageExportFrequencyHourly BlobStorageExportFrequency = "hourly" constant BlobStorageExportFrequencyDaily (line 42) | BlobStorageExportFrequencyDaily BlobStorageExportFrequency = "daily" constant BlobStorageExportFrequencyWeekly (line 43) | BlobStorageExportFrequencyWeekly BlobStorageExportFrequency = "weekly" function NewBlobStorageExportFrequencyFromString (line 46) | func NewBlobStorageExportFrequencyFromString(s string) (BlobStorageExpor... type BlobStorageExportMode (line 63) | type BlobStorageExportMode method Ptr (line 84) | func (b BlobStorageExportMode) Ptr() *BlobStorageExportMode { constant BlobStorageExportModeFullHistory (line 66) | BlobStorageExportModeFullHistory BlobStorageExportMode = "FULL_HISTORY" constant BlobStorageExportModeFromToday (line 67) | BlobStorageExportModeFromToday BlobStorageExportMode = "FROM_TODAY" constant BlobStorageExportModeFromCustomDate (line 68) | BlobStorageExportModeFromCustomDate BlobStorageExportMode = "FROM_CUSTOM... function NewBlobStorageExportModeFromString (line 71) | func NewBlobStorageExportModeFromString(s string) (BlobStorageExportMode... type BlobStorageIntegrationDeletionResponse (line 92) | type BlobStorageIntegrationDeletionResponse struct method GetMessage (line 102) | func (b *BlobStorageIntegrationDeletionResponse) GetMessage() string { method GetExtraProperties (line 109) | func (b *BlobStorageIntegrationDeletionResponse) GetExtraProperties() ... method require (line 113) | func (b *BlobStorageIntegrationDeletionResponse) require(field *big.In... method SetMessage (line 122) | func (b *BlobStorageIntegrationDeletionResponse) SetMessage(message st... method UnmarshalJSON (line 127) | func (b *BlobStorageIntegrationDeletionResponse) UnmarshalJSON(data []... method MarshalJSON (line 143) | func (b *BlobStorageIntegrationDeletionResponse) MarshalJSON() ([]byte... method String (line 154) | func (b *BlobStorageIntegrationDeletionResponse) String() string { type BlobStorageIntegrationFileType (line 166) | type BlobStorageIntegrationFileType method Ptr (line 187) | func (b BlobStorageIntegrationFileType) Ptr() *BlobStorageIntegrationF... constant BlobStorageIntegrationFileTypeJSON (line 169) | BlobStorageIntegrationFileTypeJSON BlobStorageIntegrationFileType = "JSON" constant BlobStorageIntegrationFileTypeCsv (line 170) | BlobStorageIntegrationFileTypeCsv BlobStorageIntegrationFileType = "CSV" constant BlobStorageIntegrationFileTypeJsonl (line 171) | BlobStorageIntegrationFileTypeJsonl BlobStorageIntegrationFileType = "JS... function NewBlobStorageIntegrationFileTypeFromString (line 174) | func NewBlobStorageIntegrationFileTypeFromString(s string) (BlobStorageI... type BlobStorageIntegrationResponse (line 212) | type BlobStorageIntegrationResponse struct method GetID (line 239) | func (b *BlobStorageIntegrationResponse) GetID() string { method GetProjectID (line 246) | func (b *BlobStorageIntegrationResponse) GetProjectID() string { method GetType (line 253) | func (b *BlobStorageIntegrationResponse) GetType() BlobStorageIntegrat... method GetBucketName (line 260) | func (b *BlobStorageIntegrationResponse) GetBucketName() string { method GetEndpoint (line 267) | func (b *BlobStorageIntegrationResponse) GetEndpoint() *string { method GetRegion (line 274) | func (b *BlobStorageIntegrationResponse) GetRegion() string { method GetAccessKeyID (line 281) | func (b *BlobStorageIntegrationResponse) GetAccessKeyID() *string { method GetPrefix (line 288) | func (b *BlobStorageIntegrationResponse) GetPrefix() string { method GetExportFrequency (line 295) | func (b *BlobStorageIntegrationResponse) GetExportFrequency() BlobStor... method GetEnabled (line 302) | func (b *BlobStorageIntegrationResponse) GetEnabled() bool { method GetForcePathStyle (line 309) | func (b *BlobStorageIntegrationResponse) GetForcePathStyle() bool { method GetFileType (line 316) | func (b *BlobStorageIntegrationResponse) GetFileType() BlobStorageInte... method GetExportMode (line 323) | func (b *BlobStorageIntegrationResponse) GetExportMode() BlobStorageEx... method GetExportStartDate (line 330) | func (b *BlobStorageIntegrationResponse) GetExportStartDate() *time.Ti... method GetNextSyncAt (line 337) | func (b *BlobStorageIntegrationResponse) GetNextSyncAt() *time.Time { method GetLastSyncAt (line 344) | func (b *BlobStorageIntegrationResponse) GetLastSyncAt() *time.Time { method GetCreatedAt (line 351) | func (b *BlobStorageIntegrationResponse) GetCreatedAt() time.Time { method GetUpdatedAt (line 358) | func (b *BlobStorageIntegrationResponse) GetUpdatedAt() time.Time { method GetExtraProperties (line 365) | func (b *BlobStorageIntegrationResponse) GetExtraProperties() map[stri... method require (line 369) | func (b *BlobStorageIntegrationResponse) require(field *big.Int) { method SetID (line 378) | func (b *BlobStorageIntegrationResponse) SetID(id string) { method SetProjectID (line 385) | func (b *BlobStorageIntegrationResponse) SetProjectID(projectID string) { method SetType (line 392) | func (b *BlobStorageIntegrationResponse) SetType(type_ BlobStorageInte... method SetBucketName (line 399) | func (b *BlobStorageIntegrationResponse) SetBucketName(bucketName stri... method SetEndpoint (line 406) | func (b *BlobStorageIntegrationResponse) SetEndpoint(endpoint *string) { method SetRegion (line 413) | func (b *BlobStorageIntegrationResponse) SetRegion(region string) { method SetAccessKeyID (line 420) | func (b *BlobStorageIntegrationResponse) SetAccessKeyID(accessKeyID *s... method SetPrefix (line 427) | func (b *BlobStorageIntegrationResponse) SetPrefix(prefix string) { method SetExportFrequency (line 434) | func (b *BlobStorageIntegrationResponse) SetExportFrequency(exportFreq... method SetEnabled (line 441) | func (b *BlobStorageIntegrationResponse) SetEnabled(enabled bool) { method SetForcePathStyle (line 448) | func (b *BlobStorageIntegrationResponse) SetForcePathStyle(forcePathSt... method SetFileType (line 455) | func (b *BlobStorageIntegrationResponse) SetFileType(fileType BlobStor... method SetExportMode (line 462) | func (b *BlobStorageIntegrationResponse) SetExportMode(exportMode Blob... method SetExportStartDate (line 469) | func (b *BlobStorageIntegrationResponse) SetExportStartDate(exportStar... method SetNextSyncAt (line 476) | func (b *BlobStorageIntegrationResponse) SetNextSyncAt(nextSyncAt *tim... method SetLastSyncAt (line 483) | func (b *BlobStorageIntegrationResponse) SetLastSyncAt(lastSyncAt *tim... method SetCreatedAt (line 490) | func (b *BlobStorageIntegrationResponse) SetCreatedAt(createdAt time.T... method SetUpdatedAt (line 497) | func (b *BlobStorageIntegrationResponse) SetUpdatedAt(updatedAt time.T... method UnmarshalJSON (line 502) | func (b *BlobStorageIntegrationResponse) UnmarshalJSON(data []byte) er... method MarshalJSON (line 532) | func (b *BlobStorageIntegrationResponse) MarshalJSON() ([]byte, error) { method String (line 553) | func (b *BlobStorageIntegrationResponse) String() string { type BlobStorageIntegrationType (line 565) | type BlobStorageIntegrationType method Ptr (line 586) | func (b BlobStorageIntegrationType) Ptr() *BlobStorageIntegrationType { constant BlobStorageIntegrationTypeS3 (line 568) | BlobStorageIntegrationTypeS3 BlobStorageIntegrationType = ... constant BlobStorageIntegrationTypeS3Compatible (line 569) | BlobStorageIntegrationTypeS3Compatible BlobStorageIntegrationType = ... constant BlobStorageIntegrationTypeAzureBlobStorage (line 570) | BlobStorageIntegrationTypeAzureBlobStorage BlobStorageIntegrationType = ... function NewBlobStorageIntegrationTypeFromString (line 573) | func NewBlobStorageIntegrationTypeFromString(s string) (BlobStorageInteg... type BlobStorageIntegrationsResponse (line 594) | type BlobStorageIntegrationsResponse struct method GetData (line 604) | func (b *BlobStorageIntegrationsResponse) GetData() []*BlobStorageInte... method GetExtraProperties (line 611) | func (b *BlobStorageIntegrationsResponse) GetExtraProperties() map[str... method require (line 615) | func (b *BlobStorageIntegrationsResponse) require(field *big.Int) { method SetData (line 624) | func (b *BlobStorageIntegrationsResponse) SetData(data []*BlobStorageI... method UnmarshalJSON (line 629) | func (b *BlobStorageIntegrationsResponse) UnmarshalJSON(data []byte) e... method MarshalJSON (line 645) | func (b *BlobStorageIntegrationsResponse) MarshalJSON() ([]byte, error) { method String (line 656) | func (b *BlobStorageIntegrationsResponse) String() string { type CreateBlobStorageIntegrationRequest (line 685) | type CreateBlobStorageIntegrationRequest struct method require (line 715) | func (c *CreateBlobStorageIntegrationRequest) require(field *big.Int) { method SetProjectID (line 724) | func (c *CreateBlobStorageIntegrationRequest) SetProjectID(projectID s... method SetType (line 731) | func (c *CreateBlobStorageIntegrationRequest) SetType(type_ BlobStorag... method SetBucketName (line 738) | func (c *CreateBlobStorageIntegrationRequest) SetBucketName(bucketName... method SetEndpoint (line 745) | func (c *CreateBlobStorageIntegrationRequest) SetEndpoint(endpoint *st... method SetRegion (line 752) | func (c *CreateBlobStorageIntegrationRequest) SetRegion(region string) { method SetAccessKeyID (line 759) | func (c *CreateBlobStorageIntegrationRequest) SetAccessKeyID(accessKey... method SetSecretAccessKey (line 766) | func (c *CreateBlobStorageIntegrationRequest) SetSecretAccessKey(secre... method SetPrefix (line 773) | func (c *CreateBlobStorageIntegrationRequest) SetPrefix(prefix *string) { method SetExportFrequency (line 780) | func (c *CreateBlobStorageIntegrationRequest) SetExportFrequency(expor... method SetEnabled (line 787) | func (c *CreateBlobStorageIntegrationRequest) SetEnabled(enabled bool) { method SetForcePathStyle (line 794) | func (c *CreateBlobStorageIntegrationRequest) SetForcePathStyle(forceP... method SetFileType (line 801) | func (c *CreateBlobStorageIntegrationRequest) SetFileType(fileType Blo... method SetExportMode (line 808) | func (c *CreateBlobStorageIntegrationRequest) SetExportMode(exportMode... method SetExportStartDate (line 815) | func (c *CreateBlobStorageIntegrationRequest) SetExportStartDate(expor... method UnmarshalJSON (line 820) | func (c *CreateBlobStorageIntegrationRequest) UnmarshalJSON(data []byt... method MarshalJSON (line 830) | func (c *CreateBlobStorageIntegrationRequest) MarshalJSON() ([]byte, e... FILE: backend/pkg/observability/langfuse/api/blobstorageintegrations/client.go type Client (line 14) | type Client struct method Getblobstorageintegrations (line 37) | func (c *Client) Getblobstorageintegrations( method Upsertblobstorageintegration (line 52) | func (c *Client) Upsertblobstorageintegration( method Deleteblobstorageintegration (line 69) | func (c *Client) Deleteblobstorageintegration( function NewClient (line 22) | func NewClient(options *core.RequestOptions) *Client { FILE: backend/pkg/observability/langfuse/api/blobstorageintegrations/raw_client.go type RawClient (line 15) | type RawClient struct method Getblobstorageintegrations (line 34) | func (r *RawClient) Getblobstorageintegrations( method Upsertblobstorageintegration (line 74) | func (r *RawClient) Upsertblobstorageintegration( method Deleteblobstorageintegration (line 117) | func (r *RawClient) Deleteblobstorageintegration( function NewRawClient (line 21) | func NewRawClient(options *core.RequestOptions) *RawClient { FILE: backend/pkg/observability/langfuse/api/client/client.go type Client (line 38) | type Client struct function NewClient (line 71) | func NewClient(opts ...option.RequestOption) *Client { FILE: backend/pkg/observability/langfuse/api/client/client_test.go function TestNewClient (line 13) | func TestNewClient(t *testing.T) { FILE: backend/pkg/observability/langfuse/api/comments.go type CreateCommentRequest (line 21) | type CreateCommentRequest struct method require (line 37) | func (c *CreateCommentRequest) require(field *big.Int) { method SetProjectID (line 46) | func (c *CreateCommentRequest) SetProjectID(projectID string) { method SetObjectType (line 53) | func (c *CreateCommentRequest) SetObjectType(objectType string) { method SetObjectID (line 60) | func (c *CreateCommentRequest) SetObjectID(objectID string) { method SetContent (line 67) | func (c *CreateCommentRequest) SetContent(content string) { method SetAuthorUserID (line 74) | func (c *CreateCommentRequest) SetAuthorUserID(authorUserID *string) { method UnmarshalJSON (line 79) | func (c *CreateCommentRequest) UnmarshalJSON(data []byte) error { method MarshalJSON (line 89) | func (c *CreateCommentRequest) MarshalJSON() ([]byte, error) { type CommentsGetRequest (line 108) | type CommentsGetRequest struct method require (line 124) | func (c *CommentsGetRequest) require(field *big.Int) { method SetPage (line 133) | func (c *CommentsGetRequest) SetPage(page *int) { method SetLimit (line 140) | func (c *CommentsGetRequest) SetLimit(limit *int) { method SetObjectType (line 147) | func (c *CommentsGetRequest) SetObjectType(objectType *string) { method SetObjectID (line 154) | func (c *CommentsGetRequest) SetObjectID(objectID *string) { method SetAuthorUserID (line 161) | func (c *CommentsGetRequest) SetAuthorUserID(authorUserID *string) { type CommentsGetByIDRequest (line 170) | type CommentsGetByIDRequest struct method require (line 178) | func (c *CommentsGetByIDRequest) require(field *big.Int) { method SetCommentID (line 187) | func (c *CommentsGetByIDRequest) SetCommentID(commentID string) { type Comment (line 203) | type Comment struct method GetID (line 221) | func (c *Comment) GetID() string { method GetProjectID (line 228) | func (c *Comment) GetProjectID() string { method GetCreatedAt (line 235) | func (c *Comment) GetCreatedAt() time.Time { method GetUpdatedAt (line 242) | func (c *Comment) GetUpdatedAt() time.Time { method GetObjectType (line 249) | func (c *Comment) GetObjectType() CommentObjectType { method GetObjectID (line 256) | func (c *Comment) GetObjectID() string { method GetContent (line 263) | func (c *Comment) GetContent() string { method GetAuthorUserID (line 270) | func (c *Comment) GetAuthorUserID() *string { method GetExtraProperties (line 277) | func (c *Comment) GetExtraProperties() map[string]interface{} { method require (line 281) | func (c *Comment) require(field *big.Int) { method SetID (line 290) | func (c *Comment) SetID(id string) { method SetProjectID (line 297) | func (c *Comment) SetProjectID(projectID string) { method SetCreatedAt (line 304) | func (c *Comment) SetCreatedAt(createdAt time.Time) { method SetUpdatedAt (line 311) | func (c *Comment) SetUpdatedAt(updatedAt time.Time) { method SetObjectType (line 318) | func (c *Comment) SetObjectType(objectType CommentObjectType) { method SetObjectID (line 325) | func (c *Comment) SetObjectID(objectID string) { method SetContent (line 332) | func (c *Comment) SetContent(content string) { method SetAuthorUserID (line 339) | func (c *Comment) SetAuthorUserID(authorUserID *string) { method UnmarshalJSON (line 344) | func (c *Comment) UnmarshalJSON(data []byte) error { method MarshalJSON (line 368) | func (c *Comment) MarshalJSON() ([]byte, error) { method String (line 383) | func (c *Comment) String() string { type CommentObjectType (line 395) | type CommentObjectType method Ptr (line 419) | func (c CommentObjectType) Ptr() *CommentObjectType { constant CommentObjectTypeTrace (line 398) | CommentObjectTypeTrace CommentObjectType = "TRACE" constant CommentObjectTypeObservation (line 399) | CommentObjectTypeObservation CommentObjectType = "OBSERVATION" constant CommentObjectTypeSession (line 400) | CommentObjectTypeSession CommentObjectType = "SESSION" constant CommentObjectTypePrompt (line 401) | CommentObjectTypePrompt CommentObjectType = "PROMPT" function NewCommentObjectTypeFromString (line 404) | func NewCommentObjectTypeFromString(s string) (CommentObjectType, error) { type CreateCommentResponse (line 427) | type CreateCommentResponse struct method GetID (line 438) | func (c *CreateCommentResponse) GetID() string { method GetExtraProperties (line 445) | func (c *CreateCommentResponse) GetExtraProperties() map[string]interf... method require (line 449) | func (c *CreateCommentResponse) require(field *big.Int) { method SetID (line 458) | func (c *CreateCommentResponse) SetID(id string) { method UnmarshalJSON (line 463) | func (c *CreateCommentResponse) UnmarshalJSON(data []byte) error { method MarshalJSON (line 479) | func (c *CreateCommentResponse) MarshalJSON() ([]byte, error) { method String (line 490) | func (c *CreateCommentResponse) String() string { type GetCommentsResponse (line 507) | type GetCommentsResponse struct method GetData (line 518) | func (g *GetCommentsResponse) GetData() []*Comment { method GetMeta (line 525) | func (g *GetCommentsResponse) GetMeta() *UtilsMetaResponse { method GetExtraProperties (line 532) | func (g *GetCommentsResponse) GetExtraProperties() map[string]interfac... method require (line 536) | func (g *GetCommentsResponse) require(field *big.Int) { method SetData (line 545) | func (g *GetCommentsResponse) SetData(data []*Comment) { method SetMeta (line 552) | func (g *GetCommentsResponse) SetMeta(meta *UtilsMetaResponse) { method UnmarshalJSON (line 557) | func (g *GetCommentsResponse) UnmarshalJSON(data []byte) error { method MarshalJSON (line 573) | func (g *GetCommentsResponse) MarshalJSON() ([]byte, error) { method String (line 584) | func (g *GetCommentsResponse) String() string { FILE: backend/pkg/observability/langfuse/api/comments/client.go type Client (line 14) | type Client struct method Get (line 37) | func (c *Client) Get( method Create (line 54) | func (c *Client) Create( method GetByID (line 71) | func (c *Client) GetByID( function NewClient (line 22) | func NewClient(options *core.RequestOptions) *Client { FILE: backend/pkg/observability/langfuse/api/comments/raw_client.go type RawClient (line 15) | type RawClient struct method Get (line 34) | func (r *RawClient) Get( method Create (line 82) | func (r *RawClient) Create( method GetByID (line 125) | func (r *RawClient) GetByID( function NewRawClient (line 21) | func NewRawClient(options *core.RequestOptions) *RawClient { FILE: backend/pkg/observability/langfuse/api/core/api_error.go type APIError (line 10) | type APIError struct method Unwrap (line 28) | func (a *APIError) Unwrap() error { method Error (line 36) | func (a *APIError) Error() string { function NewAPIError (line 18) | func NewAPIError(statusCode int, header http.Header, err error) *APIError { FILE: backend/pkg/observability/langfuse/api/core/http.go type HTTPClient (line 6) | type HTTPClient interface type Response (line 11) | type Response struct FILE: backend/pkg/observability/langfuse/api/core/request_option.go type RequestOption (line 12) | type RequestOption interface type RequestOptions (line 20) | type RequestOptions struct method ToHeader (line 49) | func (r *RequestOptions) ToHeader() http.Header { method cloneHeader (line 57) | func (r *RequestOptions) cloneHeader() http.Header { function NewRequestOptions (line 35) | func NewRequestOptions(opts ...RequestOption) *RequestOptions { type BaseURLOption (line 62) | type BaseURLOption struct method applyRequestOptions (line 66) | func (b *BaseURLOption) applyRequestOptions(opts *RequestOptions) { type HTTPClientOption (line 71) | type HTTPClientOption struct method applyRequestOptions (line 75) | func (h *HTTPClientOption) applyRequestOptions(opts *RequestOptions) { type HTTPHeaderOption (line 80) | type HTTPHeaderOption struct method applyRequestOptions (line 84) | func (h *HTTPHeaderOption) applyRequestOptions(opts *RequestOptions) { type BodyPropertiesOption (line 89) | type BodyPropertiesOption struct method applyRequestOptions (line 93) | func (b *BodyPropertiesOption) applyRequestOptions(opts *RequestOption... type QueryParametersOption (line 98) | type QueryParametersOption struct method applyRequestOptions (line 102) | func (q *QueryParametersOption) applyRequestOptions(opts *RequestOptio... type MaxAttemptsOption (line 107) | type MaxAttemptsOption struct method applyRequestOptions (line 111) | func (m *MaxAttemptsOption) applyRequestOptions(opts *RequestOptions) { type BasicAuthOption (line 116) | type BasicAuthOption struct method applyRequestOptions (line 121) | func (b *BasicAuthOption) applyRequestOptions(opts *RequestOptions) { FILE: backend/pkg/observability/langfuse/api/datasetitems.go type CreateDatasetItemRequest (line 24) | type CreateDatasetItemRequest struct method require (line 40) | func (c *CreateDatasetItemRequest) require(field *big.Int) { method SetDatasetName (line 49) | func (c *CreateDatasetItemRequest) SetDatasetName(datasetName string) { method SetInput (line 56) | func (c *CreateDatasetItemRequest) SetInput(input interface{}) { method SetExpectedOutput (line 63) | func (c *CreateDatasetItemRequest) SetExpectedOutput(expectedOutput in... method SetMetadata (line 70) | func (c *CreateDatasetItemRequest) SetMetadata(metadata interface{}) { method SetSourceTraceID (line 77) | func (c *CreateDatasetItemRequest) SetSourceTraceID(sourceTraceID *str... method SetSourceObservationID (line 84) | func (c *CreateDatasetItemRequest) SetSourceObservationID(sourceObserv... method SetID (line 91) | func (c *CreateDatasetItemRequest) SetID(id *string) { method SetStatus (line 98) | func (c *CreateDatasetItemRequest) SetStatus(status *DatasetStatus) { method UnmarshalJSON (line 103) | func (c *CreateDatasetItemRequest) UnmarshalJSON(data []byte) error { method MarshalJSON (line 113) | func (c *CreateDatasetItemRequest) MarshalJSON() ([]byte, error) { type DatasetItemsDeleteRequest (line 128) | type DatasetItemsDeleteRequest struct method require (line 135) | func (d *DatasetItemsDeleteRequest) require(field *big.Int) { method SetID (line 144) | func (d *DatasetItemsDeleteRequest) SetID(id string) { type DatasetItemsGetRequest (line 153) | type DatasetItemsGetRequest struct method require (line 160) | func (d *DatasetItemsGetRequest) require(field *big.Int) { method SetID (line 169) | func (d *DatasetItemsGetRequest) SetID(id string) { type DatasetItemsListRequest (line 182) | type DatasetItemsListRequest struct method require (line 195) | func (d *DatasetItemsListRequest) require(field *big.Int) { method SetDatasetName (line 204) | func (d *DatasetItemsListRequest) SetDatasetName(datasetName *string) { method SetSourceTraceID (line 211) | func (d *DatasetItemsListRequest) SetSourceTraceID(sourceTraceID *stri... method SetSourceObservationID (line 218) | func (d *DatasetItemsListRequest) SetSourceObservationID(sourceObserva... method SetPage (line 225) | func (d *DatasetItemsListRequest) SetPage(page *int) { method SetLimit (line 232) | func (d *DatasetItemsListRequest) SetLimit(limit *int) { type DatasetItem (line 251) | type DatasetItem struct method GetID (line 273) | func (d *DatasetItem) GetID() string { method GetStatus (line 280) | func (d *DatasetItem) GetStatus() DatasetStatus { method GetInput (line 287) | func (d *DatasetItem) GetInput() interface{} { method GetExpectedOutput (line 294) | func (d *DatasetItem) GetExpectedOutput() interface{} { method GetMetadata (line 301) | func (d *DatasetItem) GetMetadata() interface{} { method GetSourceTraceID (line 308) | func (d *DatasetItem) GetSourceTraceID() *string { method GetSourceObservationID (line 315) | func (d *DatasetItem) GetSourceObservationID() *string { method GetDatasetID (line 322) | func (d *DatasetItem) GetDatasetID() string { method GetDatasetName (line 329) | func (d *DatasetItem) GetDatasetName() string { method GetCreatedAt (line 336) | func (d *DatasetItem) GetCreatedAt() time.Time { method GetUpdatedAt (line 343) | func (d *DatasetItem) GetUpdatedAt() time.Time { method GetExtraProperties (line 350) | func (d *DatasetItem) GetExtraProperties() map[string]interface{} { method require (line 354) | func (d *DatasetItem) require(field *big.Int) { method SetID (line 363) | func (d *DatasetItem) SetID(id string) { method SetStatus (line 370) | func (d *DatasetItem) SetStatus(status DatasetStatus) { method SetInput (line 377) | func (d *DatasetItem) SetInput(input interface{}) { method SetExpectedOutput (line 384) | func (d *DatasetItem) SetExpectedOutput(expectedOutput interface{}) { method SetMetadata (line 391) | func (d *DatasetItem) SetMetadata(metadata interface{}) { method SetSourceTraceID (line 398) | func (d *DatasetItem) SetSourceTraceID(sourceTraceID *string) { method SetSourceObservationID (line 405) | func (d *DatasetItem) SetSourceObservationID(sourceObservationID *stri... method SetDatasetID (line 412) | func (d *DatasetItem) SetDatasetID(datasetID string) { method SetDatasetName (line 419) | func (d *DatasetItem) SetDatasetName(datasetName string) { method SetCreatedAt (line 426) | func (d *DatasetItem) SetCreatedAt(createdAt time.Time) { method SetUpdatedAt (line 433) | func (d *DatasetItem) SetUpdatedAt(updatedAt time.Time) { method UnmarshalJSON (line 438) | func (d *DatasetItem) UnmarshalJSON(data []byte) error { method MarshalJSON (line 462) | func (d *DatasetItem) MarshalJSON() ([]byte, error) { method String (line 477) | func (d *DatasetItem) String() string { type DatasetStatus (line 489) | type DatasetStatus method Ptr (line 507) | func (d DatasetStatus) Ptr() *DatasetStatus { constant DatasetStatusActive (line 492) | DatasetStatusActive DatasetStatus = "ACTIVE" constant DatasetStatusArchived (line 493) | DatasetStatusArchived DatasetStatus = "ARCHIVED" function NewDatasetStatusFromString (line 496) | func NewDatasetStatusFromString(s string) (DatasetStatus, error) { type DeleteDatasetItemResponse (line 515) | type DeleteDatasetItemResponse struct method GetMessage (line 526) | func (d *DeleteDatasetItemResponse) GetMessage() string { method GetExtraProperties (line 533) | func (d *DeleteDatasetItemResponse) GetExtraProperties() map[string]in... method require (line 537) | func (d *DeleteDatasetItemResponse) require(field *big.Int) { method SetMessage (line 546) | func (d *DeleteDatasetItemResponse) SetMessage(message string) { method UnmarshalJSON (line 551) | func (d *DeleteDatasetItemResponse) UnmarshalJSON(data []byte) error { method MarshalJSON (line 567) | func (d *DeleteDatasetItemResponse) MarshalJSON() ([]byte, error) { method String (line 578) | func (d *DeleteDatasetItemResponse) String() string { type PaginatedDatasetItems (line 595) | type PaginatedDatasetItems struct method GetData (line 606) | func (p *PaginatedDatasetItems) GetData() []*DatasetItem { method GetMeta (line 613) | func (p *PaginatedDatasetItems) GetMeta() *UtilsMetaResponse { method GetExtraProperties (line 620) | func (p *PaginatedDatasetItems) GetExtraProperties() map[string]interf... method require (line 624) | func (p *PaginatedDatasetItems) require(field *big.Int) { method SetData (line 633) | func (p *PaginatedDatasetItems) SetData(data []*DatasetItem) { method SetMeta (line 640) | func (p *PaginatedDatasetItems) SetMeta(meta *UtilsMetaResponse) { method UnmarshalJSON (line 645) | func (p *PaginatedDatasetItems) UnmarshalJSON(data []byte) error { method MarshalJSON (line 661) | func (p *PaginatedDatasetItems) MarshalJSON() ([]byte, error) { method String (line 672) | func (p *PaginatedDatasetItems) String() string { FILE: backend/pkg/observability/langfuse/api/datasetitems/client.go type Client (line 14) | type Client struct method List (line 37) | func (c *Client) List( method Create (line 54) | func (c *Client) Create( method Get (line 71) | func (c *Client) Get( method Delete (line 88) | func (c *Client) Delete( function NewClient (line 22) | func NewClient(options *core.RequestOptions) *Client { FILE: backend/pkg/observability/langfuse/api/datasetitems/raw_client.go type RawClient (line 15) | type RawClient struct method List (line 34) | func (r *RawClient) List( method Create (line 82) | func (r *RawClient) Create( method Get (line 125) | func (r *RawClient) Get( method Delete (line 169) | func (r *RawClient) Delete( function NewRawClient (line 21) | func NewRawClient(options *core.RequestOptions) *RawClient { FILE: backend/pkg/observability/langfuse/api/datasetrunitems.go type CreateDatasetRunItemRequest (line 21) | type CreateDatasetRunItemRequest struct method require (line 36) | func (c *CreateDatasetRunItemRequest) require(field *big.Int) { method SetRunName (line 45) | func (c *CreateDatasetRunItemRequest) SetRunName(runName string) { method SetRunDescription (line 52) | func (c *CreateDatasetRunItemRequest) SetRunDescription(runDescription... method SetMetadata (line 59) | func (c *CreateDatasetRunItemRequest) SetMetadata(metadata interface{}) { method SetDatasetItemID (line 66) | func (c *CreateDatasetRunItemRequest) SetDatasetItemID(datasetItemID s... method SetObservationID (line 73) | func (c *CreateDatasetRunItemRequest) SetObservationID(observationID *... method SetTraceID (line 80) | func (c *CreateDatasetRunItemRequest) SetTraceID(traceID *string) { method UnmarshalJSON (line 85) | func (c *CreateDatasetRunItemRequest) UnmarshalJSON(data []byte) error { method MarshalJSON (line 95) | func (c *CreateDatasetRunItemRequest) MarshalJSON() ([]byte, error) { type DatasetRunItemsListRequest (line 113) | type DatasetRunItemsListRequest struct method require (line 125) | func (d *DatasetRunItemsListRequest) require(field *big.Int) { method SetDatasetID (line 134) | func (d *DatasetRunItemsListRequest) SetDatasetID(datasetID string) { method SetRunName (line 141) | func (d *DatasetRunItemsListRequest) SetRunName(runName string) { method SetPage (line 148) | func (d *DatasetRunItemsListRequest) SetPage(page *int) { method SetLimit (line 155) | func (d *DatasetRunItemsListRequest) SetLimit(limit *int) { type PaginatedDatasetRunItems (line 165) | type PaginatedDatasetRunItems struct method GetData (line 176) | func (p *PaginatedDatasetRunItems) GetData() []*DatasetRunItem { method GetMeta (line 183) | func (p *PaginatedDatasetRunItems) GetMeta() *UtilsMetaResponse { method GetExtraProperties (line 190) | func (p *PaginatedDatasetRunItems) GetExtraProperties() map[string]int... method require (line 194) | func (p *PaginatedDatasetRunItems) require(field *big.Int) { method SetData (line 203) | func (p *PaginatedDatasetRunItems) SetData(data []*DatasetRunItem) { method SetMeta (line 210) | func (p *PaginatedDatasetRunItems) SetMeta(meta *UtilsMetaResponse) { method UnmarshalJSON (line 215) | func (p *PaginatedDatasetRunItems) UnmarshalJSON(data []byte) error { method MarshalJSON (line 231) | func (p *PaginatedDatasetRunItems) MarshalJSON() ([]byte, error) { method String (line 242) | func (p *PaginatedDatasetRunItems) String() string { FILE: backend/pkg/observability/langfuse/api/datasetrunitems/client.go type Client (line 14) | type Client struct method List (line 37) | func (c *Client) List( method Create (line 54) | func (c *Client) Create( function NewClient (line 22) | func NewClient(options *core.RequestOptions) *Client { FILE: backend/pkg/observability/langfuse/api/datasetrunitems/raw_client.go type RawClient (line 15) | type RawClient struct method List (line 34) | func (r *RawClient) List( method Create (line 82) | func (r *RawClient) Create( function NewRawClient (line 21) | func NewRawClient(options *core.RequestOptions) *RawClient { FILE: backend/pkg/observability/langfuse/api/datasets.go type CreateDatasetRequest (line 21) | type CreateDatasetRequest struct method require (line 34) | func (c *CreateDatasetRequest) require(field *big.Int) { method SetName (line 43) | func (c *CreateDatasetRequest) SetName(name string) { method SetDescription (line 50) | func (c *CreateDatasetRequest) SetDescription(description *string) { method SetMetadata (line 57) | func (c *CreateDatasetRequest) SetMetadata(metadata interface{}) { method SetInputSchema (line 64) | func (c *CreateDatasetRequest) SetInputSchema(inputSchema interface{}) { method SetExpectedOutputSchema (line 71) | func (c *CreateDatasetRequest) SetExpectedOutputSchema(expectedOutputS... method UnmarshalJSON (line 76) | func (c *CreateDatasetRequest) UnmarshalJSON(data []byte) error { method MarshalJSON (line 86) | func (c *CreateDatasetRequest) MarshalJSON() ([]byte, error) { type DatasetsDeleteRunRequest (line 102) | type DatasetsDeleteRunRequest struct method require (line 110) | func (d *DatasetsDeleteRunRequest) require(field *big.Int) { method SetDatasetName (line 119) | func (d *DatasetsDeleteRunRequest) SetDatasetName(datasetName string) { method SetRunName (line 126) | func (d *DatasetsDeleteRunRequest) SetRunName(runName string) { type DatasetsGetRequest (line 135) | type DatasetsGetRequest struct method require (line 142) | func (d *DatasetsGetRequest) require(field *big.Int) { method SetDatasetName (line 151) | func (d *DatasetsGetRequest) SetDatasetName(datasetName string) { type DatasetsGetRunRequest (line 161) | type DatasetsGetRunRequest struct method require (line 169) | func (d *DatasetsGetRunRequest) require(field *big.Int) { method SetDatasetName (line 178) | func (d *DatasetsGetRunRequest) SetDatasetName(datasetName string) { method SetRunName (line 185) | func (d *DatasetsGetRunRequest) SetRunName(runName string) { type DatasetsGetRunsRequest (line 196) | type DatasetsGetRunsRequest struct method require (line 207) | func (d *DatasetsGetRunsRequest) require(field *big.Int) { method SetDatasetName (line 216) | func (d *DatasetsGetRunsRequest) SetDatasetName(datasetName string) { method SetPage (line 223) | func (d *DatasetsGetRunsRequest) SetPage(page *int) { method SetLimit (line 230) | func (d *DatasetsGetRunsRequest) SetLimit(limit *int) { type DatasetsListRequest (line 240) | type DatasetsListRequest struct method require (line 250) | func (d *DatasetsListRequest) require(field *big.Int) { method SetPage (line 259) | func (d *DatasetsListRequest) SetPage(page *int) { method SetLimit (line 266) | func (d *DatasetsListRequest) SetLimit(limit *int) { type Dataset (line 283) | type Dataset struct method GetID (line 304) | func (d *Dataset) GetID() string { method GetName (line 311) | func (d *Dataset) GetName() string { method GetDescription (line 318) | func (d *Dataset) GetDescription() *string { method GetMetadata (line 325) | func (d *Dataset) GetMetadata() interface{} { method GetInputSchema (line 332) | func (d *Dataset) GetInputSchema() interface{} { method GetExpectedOutputSchema (line 339) | func (d *Dataset) GetExpectedOutputSchema() interface{} { method GetProjectID (line 346) | func (d *Dataset) GetProjectID() string { method GetCreatedAt (line 353) | func (d *Dataset) GetCreatedAt() time.Time { method GetUpdatedAt (line 360) | func (d *Dataset) GetUpdatedAt() time.Time { method GetExtraProperties (line 367) | func (d *Dataset) GetExtraProperties() map[string]interface{} { method require (line 371) | func (d *Dataset) require(field *big.Int) { method SetID (line 380) | func (d *Dataset) SetID(id string) { method SetName (line 387) | func (d *Dataset) SetName(name string) { method SetDescription (line 394) | func (d *Dataset) SetDescription(description *string) { method SetMetadata (line 401) | func (d *Dataset) SetMetadata(metadata interface{}) { method SetInputSchema (line 408) | func (d *Dataset) SetInputSchema(inputSchema interface{}) { method SetExpectedOutputSchema (line 415) | func (d *Dataset) SetExpectedOutputSchema(expectedOutputSchema interfa... method SetProjectID (line 422) | func (d *Dataset) SetProjectID(projectID string) { method SetCreatedAt (line 429) | func (d *Dataset) SetCreatedAt(createdAt time.Time) { method SetUpdatedAt (line 436) | func (d *Dataset) SetUpdatedAt(updatedAt time.Time) { method UnmarshalJSON (line 441) | func (d *Dataset) UnmarshalJSON(data []byte) error { method MarshalJSON (line 465) | func (d *Dataset) MarshalJSON() ([]byte, error) { method String (line 480) | func (d *Dataset) String() string { type DatasetRun (line 503) | type DatasetRun struct method GetID (line 527) | func (d *DatasetRun) GetID() string { method GetName (line 534) | func (d *DatasetRun) GetName() string { method GetDescription (line 541) | func (d *DatasetRun) GetDescription() *string { method GetMetadata (line 548) | func (d *DatasetRun) GetMetadata() interface{} { method GetDatasetID (line 555) | func (d *DatasetRun) GetDatasetID() string { method GetDatasetName (line 562) | func (d *DatasetRun) GetDatasetName() string { method GetCreatedAt (line 569) | func (d *DatasetRun) GetCreatedAt() time.Time { method GetUpdatedAt (line 576) | func (d *DatasetRun) GetUpdatedAt() time.Time { method GetExtraProperties (line 583) | func (d *DatasetRun) GetExtraProperties() map[string]interface{} { method require (line 587) | func (d *DatasetRun) require(field *big.Int) { method SetID (line 596) | func (d *DatasetRun) SetID(id string) { method SetName (line 603) | func (d *DatasetRun) SetName(name string) { method SetDescription (line 610) | func (d *DatasetRun) SetDescription(description *string) { method SetMetadata (line 617) | func (d *DatasetRun) SetMetadata(metadata interface{}) { method SetDatasetID (line 624) | func (d *DatasetRun) SetDatasetID(datasetID string) { method SetDatasetName (line 631) | func (d *DatasetRun) SetDatasetName(datasetName string) { method SetCreatedAt (line 638) | func (d *DatasetRun) SetCreatedAt(createdAt time.Time) { method SetUpdatedAt (line 645) | func (d *DatasetRun) SetUpdatedAt(updatedAt time.Time) { method UnmarshalJSON (line 650) | func (d *DatasetRun) UnmarshalJSON(data []byte) error { method MarshalJSON (line 674) | func (d *DatasetRun) MarshalJSON() ([]byte, error) { method String (line 689) | func (d *DatasetRun) String() string { type DatasetRunWithItems (line 713) | type DatasetRunWithItems struct method GetID (line 738) | func (d *DatasetRunWithItems) GetID() string { method GetName (line 745) | func (d *DatasetRunWithItems) GetName() string { method GetDescription (line 752) | func (d *DatasetRunWithItems) GetDescription() *string { method GetMetadata (line 759) | func (d *DatasetRunWithItems) GetMetadata() interface{} { method GetDatasetID (line 766) | func (d *DatasetRunWithItems) GetDatasetID() string { method GetDatasetName (line 773) | func (d *DatasetRunWithItems) GetDatasetName() string { method GetCreatedAt (line 780) | func (d *DatasetRunWithItems) GetCreatedAt() time.Time { method GetUpdatedAt (line 787) | func (d *DatasetRunWithItems) GetUpdatedAt() time.Time { method GetDatasetRunItems (line 794) | func (d *DatasetRunWithItems) GetDatasetRunItems() []*DatasetRunItem { method GetExtraProperties (line 801) | func (d *DatasetRunWithItems) GetExtraProperties() map[string]interfac... method require (line 805) | func (d *DatasetRunWithItems) require(field *big.Int) { method SetID (line 814) | func (d *DatasetRunWithItems) SetID(id string) { method SetName (line 821) | func (d *DatasetRunWithItems) SetName(name string) { method SetDescription (line 828) | func (d *DatasetRunWithItems) SetDescription(description *string) { method SetMetadata (line 835) | func (d *DatasetRunWithItems) SetMetadata(metadata interface{}) { method SetDatasetID (line 842) | func (d *DatasetRunWithItems) SetDatasetID(datasetID string) { method SetDatasetName (line 849) | func (d *DatasetRunWithItems) SetDatasetName(datasetName string) { method SetCreatedAt (line 856) | func (d *DatasetRunWithItems) SetCreatedAt(createdAt time.Time) { method SetUpdatedAt (line 863) | func (d *DatasetRunWithItems) SetUpdatedAt(updatedAt time.Time) { method SetDatasetRunItems (line 870) | func (d *DatasetRunWithItems) SetDatasetRunItems(datasetRunItems []*Da... method UnmarshalJSON (line 875) | func (d *DatasetRunWithItems) UnmarshalJSON(data []byte) error { method MarshalJSON (line 899) | func (d *DatasetRunWithItems) MarshalJSON() ([]byte, error) { method String (line 914) | func (d *DatasetRunWithItems) String() string { type DeleteDatasetRunResponse (line 930) | type DeleteDatasetRunResponse struct method GetMessage (line 940) | func (d *DeleteDatasetRunResponse) GetMessage() string { method GetExtraProperties (line 947) | func (d *DeleteDatasetRunResponse) GetExtraProperties() map[string]int... method require (line 951) | func (d *DeleteDatasetRunResponse) require(field *big.Int) { method SetMessage (line 960) | func (d *DeleteDatasetRunResponse) SetMessage(message string) { method UnmarshalJSON (line 965) | func (d *DeleteDatasetRunResponse) UnmarshalJSON(data []byte) error { method MarshalJSON (line 981) | func (d *DeleteDatasetRunResponse) MarshalJSON() ([]byte, error) { method String (line 992) | func (d *DeleteDatasetRunResponse) String() string { type PaginatedDatasetRuns (line 1009) | type PaginatedDatasetRuns struct method GetData (line 1020) | func (p *PaginatedDatasetRuns) GetData() []*DatasetRun { method GetMeta (line 1027) | func (p *PaginatedDatasetRuns) GetMeta() *UtilsMetaResponse { method GetExtraProperties (line 1034) | func (p *PaginatedDatasetRuns) GetExtraProperties() map[string]interfa... method require (line 1038) | func (p *PaginatedDatasetRuns) require(field *big.Int) { method SetData (line 1047) | func (p *PaginatedDatasetRuns) SetData(data []*DatasetRun) { method SetMeta (line 1054) | func (p *PaginatedDatasetRuns) SetMeta(meta *UtilsMetaResponse) { method UnmarshalJSON (line 1059) | func (p *PaginatedDatasetRuns) UnmarshalJSON(data []byte) error { method MarshalJSON (line 1075) | func (p *PaginatedDatasetRuns) MarshalJSON() ([]byte, error) { method String (line 1086) | func (p *PaginatedDatasetRuns) String() string { type PaginatedDatasets (line 1103) | type PaginatedDatasets struct method GetData (line 1114) | func (p *PaginatedDatasets) GetData() []*Dataset { method GetMeta (line 1121) | func (p *PaginatedDatasets) GetMeta() *UtilsMetaResponse { method GetExtraProperties (line 1128) | func (p *PaginatedDatasets) GetExtraProperties() map[string]interface{} { method require (line 1132) | func (p *PaginatedDatasets) require(field *big.Int) { method SetData (line 1141) | func (p *PaginatedDatasets) SetData(data []*Dataset) { method SetMeta (line 1148) | func (p *PaginatedDatasets) SetMeta(meta *UtilsMetaResponse) { method UnmarshalJSON (line 1153) | func (p *PaginatedDatasets) UnmarshalJSON(data []byte) error { method MarshalJSON (line 1169) | func (p *PaginatedDatasets) MarshalJSON() ([]byte, error) { method String (line 1180) | func (p *PaginatedDatasets) String() string { FILE: backend/pkg/observability/langfuse/api/datasets/client.go type Client (line 14) | type Client struct method List (line 37) | func (c *Client) List( method Create (line 54) | func (c *Client) Create( method Get (line 71) | func (c *Client) Get( method Getrun (line 88) | func (c *Client) Getrun( method Deleterun (line 105) | func (c *Client) Deleterun( method Getruns (line 122) | func (c *Client) Getruns( function NewClient (line 22) | func NewClient(options *core.RequestOptions) *Client { FILE: backend/pkg/observability/langfuse/api/datasets/raw_client.go type RawClient (line 15) | type RawClient struct method List (line 34) | func (r *RawClient) List( method Create (line 82) | func (r *RawClient) Create( method Get (line 125) | func (r *RawClient) Get( method Getrun (line 169) | func (r *RawClient) Getrun( method Deleterun (line 214) | func (r *RawClient) Deleterun( method Getruns (line 259) | func (r *RawClient) Getruns( function NewRawClient (line 21) | func NewRawClient(options *core.RequestOptions) *RawClient { FILE: backend/pkg/observability/langfuse/api/errors.go type BadRequestError (line 10) | type BadRequestError struct method UnmarshalJSON (line 15) | func (b *BadRequestError) UnmarshalJSON(data []byte) error { method MarshalJSON (line 25) | func (b *BadRequestError) MarshalJSON() ([]byte, error) { method Unwrap (line 29) | func (b *BadRequestError) Unwrap() error { type ForbiddenError (line 33) | type ForbiddenError struct method UnmarshalJSON (line 38) | func (f *ForbiddenError) UnmarshalJSON(data []byte) error { method MarshalJSON (line 48) | func (f *ForbiddenError) MarshalJSON() ([]byte, error) { method Unwrap (line 52) | func (f *ForbiddenError) Unwrap() error { type MethodNotAllowedError (line 56) | type MethodNotAllowedError struct method UnmarshalJSON (line 61) | func (m *MethodNotAllowedError) UnmarshalJSON(data []byte) error { method MarshalJSON (line 71) | func (m *MethodNotAllowedError) MarshalJSON() ([]byte, error) { method Unwrap (line 75) | func (m *MethodNotAllowedError) Unwrap() error { type NotFoundError (line 79) | type NotFoundError struct method UnmarshalJSON (line 84) | func (n *NotFoundError) UnmarshalJSON(data []byte) error { method MarshalJSON (line 94) | func (n *NotFoundError) MarshalJSON() ([]byte, error) { method Unwrap (line 98) | func (n *NotFoundError) Unwrap() error { type ServiceUnavailableError (line 102) | type ServiceUnavailableError struct method UnmarshalJSON (line 107) | func (s *ServiceUnavailableError) UnmarshalJSON(data []byte) error { method MarshalJSON (line 117) | func (s *ServiceUnavailableError) MarshalJSON() ([]byte, error) { method Unwrap (line 121) | func (s *ServiceUnavailableError) Unwrap() error { type UnauthorizedError (line 125) | type UnauthorizedError struct method UnmarshalJSON (line 130) | func (u *UnauthorizedError) UnmarshalJSON(data []byte) error { method MarshalJSON (line 140) | func (u *UnauthorizedError) MarshalJSON() ([]byte, error) { method Unwrap (line 144) | func (u *UnauthorizedError) Unwrap() error { FILE: backend/pkg/observability/langfuse/api/file_param.go type FileParam (line 8) | type FileParam struct method Name (line 40) | func (f *FileParam) Name() string { return f.filename } method ContentType (line 41) | func (f *FileParam) ContentType() string { return f.contentType } type FileParamOption (line 16) | type FileParamOption interface function NewFileParam (line 27) | func NewFileParam( FILE: backend/pkg/observability/langfuse/api/health.go type HealthResponse (line 17) | type HealthResponse struct method GetVersion (line 29) | func (h *HealthResponse) GetVersion() string { method GetStatus (line 36) | func (h *HealthResponse) GetStatus() string { method GetExtraProperties (line 43) | func (h *HealthResponse) GetExtraProperties() map[string]interface{} { method require (line 47) | func (h *HealthResponse) require(field *big.Int) { method SetVersion (line 56) | func (h *HealthResponse) SetVersion(version string) { method SetStatus (line 63) | func (h *HealthResponse) SetStatus(status string) { method UnmarshalJSON (line 68) | func (h *HealthResponse) UnmarshalJSON(data []byte) error { method MarshalJSON (line 84) | func (h *HealthResponse) MarshalJSON() ([]byte, error) { method String (line 95) | func (h *HealthResponse) String() string { FILE: backend/pkg/observability/langfuse/api/health/client.go type Client (line 14) | type Client struct method Health (line 37) | func (c *Client) Health( function NewClient (line 22) | func NewClient(options *core.RequestOptions) *Client { FILE: backend/pkg/observability/langfuse/api/health/raw_client.go type RawClient (line 15) | type RawClient struct method Health (line 34) | func (r *RawClient) Health( function NewRawClient (line 21) | func NewRawClient(options *core.RequestOptions) *RawClient { FILE: backend/pkg/observability/langfuse/api/ingestion.go type IngestionBatchRequest (line 18) | type IngestionBatchRequest struct method require (line 28) | func (i *IngestionBatchRequest) require(field *big.Int) { method SetBatch (line 37) | func (i *IngestionBatchRequest) SetBatch(batch []*IngestionEvent) { method SetMetadata (line 44) | func (i *IngestionBatchRequest) SetMetadata(metadata interface{}) { method UnmarshalJSON (line 49) | func (i *IngestionBatchRequest) UnmarshalJSON(data []byte) error { method MarshalJSON (line 59) | func (i *IngestionBatchRequest) MarshalJSON() ([]byte, error) { type BaseEvent (line 76) | type BaseEvent struct method GetID (line 91) | func (b *BaseEvent) GetID() string { method GetTimestamp (line 98) | func (b *BaseEvent) GetTimestamp() string { method GetMetadata (line 105) | func (b *BaseEvent) GetMetadata() interface{} { method GetExtraProperties (line 112) | func (b *BaseEvent) GetExtraProperties() map[string]interface{} { method require (line 116) | func (b *BaseEvent) require(field *big.Int) { method SetID (line 125) | func (b *BaseEvent) SetID(id string) { method SetTimestamp (line 132) | func (b *BaseEvent) SetTimestamp(timestamp string) { method SetMetadata (line 139) | func (b *BaseEvent) SetMetadata(metadata interface{}) { method UnmarshalJSON (line 144) | func (b *BaseEvent) UnmarshalJSON(data []byte) error { method MarshalJSON (line 160) | func (b *BaseEvent) MarshalJSON() ([]byte, error) { method String (line 171) | func (b *BaseEvent) String() string { type CreateAgentEvent (line 190) | type CreateAgentEvent struct method GetID (line 206) | func (c *CreateAgentEvent) GetID() string { method GetTimestamp (line 213) | func (c *CreateAgentEvent) GetTimestamp() string { method GetMetadata (line 220) | func (c *CreateAgentEvent) GetMetadata() interface{} { method GetBody (line 227) | func (c *CreateAgentEvent) GetBody() *CreateGenerationBody { method GetExtraProperties (line 234) | func (c *CreateAgentEvent) GetExtraProperties() map[string]interface{} { method require (line 238) | func (c *CreateAgentEvent) require(field *big.Int) { method SetID (line 247) | func (c *CreateAgentEvent) SetID(id string) { method SetTimestamp (line 254) | func (c *CreateAgentEvent) SetTimestamp(timestamp string) { method SetMetadata (line 261) | func (c *CreateAgentEvent) SetMetadata(metadata interface{}) { method SetBody (line 268) | func (c *CreateAgentEvent) SetBody(body *CreateGenerationBody) { method UnmarshalJSON (line 273) | func (c *CreateAgentEvent) UnmarshalJSON(data []byte) error { method MarshalJSON (line 289) | func (c *CreateAgentEvent) MarshalJSON() ([]byte, error) { method String (line 300) | func (c *CreateAgentEvent) String() string { type CreateChainEvent (line 319) | type CreateChainEvent struct method GetID (line 335) | func (c *CreateChainEvent) GetID() string { method GetTimestamp (line 342) | func (c *CreateChainEvent) GetTimestamp() string { method GetMetadata (line 349) | func (c *CreateChainEvent) GetMetadata() interface{} { method GetBody (line 356) | func (c *CreateChainEvent) GetBody() *CreateGenerationBody { method GetExtraProperties (line 363) | func (c *CreateChainEvent) GetExtraProperties() map[string]interface{} { method require (line 367) | func (c *CreateChainEvent) require(field *big.Int) { method SetID (line 376) | func (c *CreateChainEvent) SetID(id string) { method SetTimestamp (line 383) | func (c *CreateChainEvent) SetTimestamp(timestamp string) { method SetMetadata (line 390) | func (c *CreateChainEvent) SetMetadata(metadata interface{}) { method SetBody (line 397) | func (c *CreateChainEvent) SetBody(body *CreateGenerationBody) { method UnmarshalJSON (line 402) | func (c *CreateChainEvent) UnmarshalJSON(data []byte) error { method MarshalJSON (line 418) | func (c *CreateChainEvent) MarshalJSON() ([]byte, error) { method String (line 429) | func (c *CreateChainEvent) String() string { type CreateEmbeddingEvent (line 448) | type CreateEmbeddingEvent struct method GetID (line 464) | func (c *CreateEmbeddingEvent) GetID() string { method GetTimestamp (line 471) | func (c *CreateEmbeddingEvent) GetTimestamp() string { method GetMetadata (line 478) | func (c *CreateEmbeddingEvent) GetMetadata() interface{} { method GetBody (line 485) | func (c *CreateEmbeddingEvent) GetBody() *CreateGenerationBody { method GetExtraProperties (line 492) | func (c *CreateEmbeddingEvent) GetExtraProperties() map[string]interfa... method require (line 496) | func (c *CreateEmbeddingEvent) require(field *big.Int) { method SetID (line 505) | func (c *CreateEmbeddingEvent) SetID(id string) { method SetTimestamp (line 512) | func (c *CreateEmbeddingEvent) SetTimestamp(timestamp string) { method SetMetadata (line 519) | func (c *CreateEmbeddingEvent) SetMetadata(metadata interface{}) { method SetBody (line 526) | func (c *CreateEmbeddingEvent) SetBody(body *CreateGenerationBody) { method UnmarshalJSON (line 531) | func (c *CreateEmbeddingEvent) UnmarshalJSON(data []byte) error { method MarshalJSON (line 547) | func (c *CreateEmbeddingEvent) MarshalJSON() ([]byte, error) { method String (line 558) | func (c *CreateEmbeddingEvent) String() string { type CreateEvaluatorEvent (line 577) | type CreateEvaluatorEvent struct method GetID (line 593) | func (c *CreateEvaluatorEvent) GetID() string { method GetTimestamp (line 600) | func (c *CreateEvaluatorEvent) GetTimestamp() string { method GetMetadata (line 607) | func (c *CreateEvaluatorEvent) GetMetadata() interface{} { method GetBody (line 614) | func (c *CreateEvaluatorEvent) GetBody() *CreateGenerationBody { method GetExtraProperties (line 621) | func (c *CreateEvaluatorEvent) GetExtraProperties() map[string]interfa... method require (line 625) | func (c *CreateEvaluatorEvent) require(field *big.Int) { method SetID (line 634) | func (c *CreateEvaluatorEvent) SetID(id string) { method SetTimestamp (line 641) | func (c *CreateEvaluatorEvent) SetTimestamp(timestamp string) { method SetMetadata (line 648) | func (c *CreateEvaluatorEvent) SetMetadata(metadata interface{}) { method SetBody (line 655) | func (c *CreateEvaluatorEvent) SetBody(body *CreateGenerationBody) { method UnmarshalJSON (line 660) | func (c *CreateEvaluatorEvent) UnmarshalJSON(data []byte) error { method MarshalJSON (line 676) | func (c *CreateEvaluatorEvent) MarshalJSON() ([]byte, error) { method String (line 687) | func (c *CreateEvaluatorEvent) String() string { type CreateEventBody (line 714) | type CreateEventBody struct method GetTraceID (line 735) | func (c *CreateEventBody) GetTraceID() *string { method GetName (line 742) | func (c *CreateEventBody) GetName() *string { method GetStartTime (line 749) | func (c *CreateEventBody) GetStartTime() *time.Time { method GetMetadata (line 756) | func (c *CreateEventBody) GetMetadata() interface{} { method GetInput (line 763) | func (c *CreateEventBody) GetInput() interface{} { method GetOutput (line 770) | func (c *CreateEventBody) GetOutput() interface{} { method GetLevel (line 777) | func (c *CreateEventBody) GetLevel() *ObservationLevel { method GetStatusMessage (line 784) | func (c *CreateEventBody) GetStatusMessage() *string { method GetParentObservationID (line 791) | func (c *CreateEventBody) GetParentObservationID() *string { method GetVersion (line 798) | func (c *CreateEventBody) GetVersion() *string { method GetEnvironment (line 805) | func (c *CreateEventBody) GetEnvironment() *string { method GetID (line 812) | func (c *CreateEventBody) GetID() *string { method GetExtraProperties (line 819) | func (c *CreateEventBody) GetExtraProperties() map[string]interface{} { method require (line 823) | func (c *CreateEventBody) require(field *big.Int) { method SetTraceID (line 832) | func (c *CreateEventBody) SetTraceID(traceID *string) { method SetName (line 839) | func (c *CreateEventBody) SetName(name *string) { method SetStartTime (line 846) | func (c *CreateEventBody) SetStartTime(startTime *time.Time) { method SetMetadata (line 853) | func (c *CreateEventBody) SetMetadata(metadata interface{}) { method SetInput (line 860) | func (c *CreateEventBody) SetInput(input interface{}) { method SetOutput (line 867) | func (c *CreateEventBody) SetOutput(output interface{}) { method SetLevel (line 874) | func (c *CreateEventBody) SetLevel(level *ObservationLevel) { method SetStatusMessage (line 881) | func (c *CreateEventBody) SetStatusMessage(statusMessage *string) { method SetParentObservationID (line 888) | func (c *CreateEventBody) SetParentObservationID(parentObservationID *... method SetVersion (line 895) | func (c *CreateEventBody) SetVersion(version *string) { method SetEnvironment (line 902) | func (c *CreateEventBody) SetEnvironment(environment *string) { method SetID (line 909) | func (c *CreateEventBody) SetID(id *string) { method UnmarshalJSON (line 914) | func (c *CreateEventBody) UnmarshalJSON(data []byte) error { method MarshalJSON (line 936) | func (c *CreateEventBody) MarshalJSON() ([]byte, error) { method String (line 949) | func (c *CreateEventBody) String() string { type CreateEventEvent (line 968) | type CreateEventEvent struct method GetID (line 984) | func (c *CreateEventEvent) GetID() string { method GetTimestamp (line 991) | func (c *CreateEventEvent) GetTimestamp() string { method GetMetadata (line 998) | func (c *CreateEventEvent) GetMetadata() interface{} { method GetBody (line 1005) | func (c *CreateEventEvent) GetBody() *CreateEventBody { method GetExtraProperties (line 1012) | func (c *CreateEventEvent) GetExtraProperties() map[string]interface{} { method require (line 1016) | func (c *CreateEventEvent) require(field *big.Int) { method SetID (line 1025) | func (c *CreateEventEvent) SetID(id string) { method SetTimestamp (line 1032) | func (c *CreateEventEvent) SetTimestamp(timestamp string) { method SetMetadata (line 1039) | func (c *CreateEventEvent) SetMetadata(metadata interface{}) { method SetBody (line 1046) | func (c *CreateEventEvent) SetBody(body *CreateEventBody) { method UnmarshalJSON (line 1051) | func (c *CreateEventEvent) UnmarshalJSON(data []byte) error { method MarshalJSON (line 1067) | func (c *CreateEventEvent) MarshalJSON() ([]byte, error) { method String (line 1078) | func (c *CreateEventEvent) String() string { type CreateGenerationBody (line 1114) | type CreateGenerationBody struct method GetTraceID (line 1144) | func (c *CreateGenerationBody) GetTraceID() *string { method GetName (line 1151) | func (c *CreateGenerationBody) GetName() *string { method GetStartTime (line 1158) | func (c *CreateGenerationBody) GetStartTime() *time.Time { method GetMetadata (line 1165) | func (c *CreateGenerationBody) GetMetadata() interface{} { method GetInput (line 1172) | func (c *CreateGenerationBody) GetInput() interface{} { method GetOutput (line 1179) | func (c *CreateGenerationBody) GetOutput() interface{} { method GetLevel (line 1186) | func (c *CreateGenerationBody) GetLevel() *ObservationLevel { method GetStatusMessage (line 1193) | func (c *CreateGenerationBody) GetStatusMessage() *string { method GetParentObservationID (line 1200) | func (c *CreateGenerationBody) GetParentObservationID() *string { method GetVersion (line 1207) | func (c *CreateGenerationBody) GetVersion() *string { method GetEnvironment (line 1214) | func (c *CreateGenerationBody) GetEnvironment() *string { method GetID (line 1221) | func (c *CreateGenerationBody) GetID() *string { method GetEndTime (line 1228) | func (c *CreateGenerationBody) GetEndTime() *time.Time { method GetCompletionStartTime (line 1235) | func (c *CreateGenerationBody) GetCompletionStartTime() *time.Time { method GetModel (line 1242) | func (c *CreateGenerationBody) GetModel() *string { method GetModelParameters (line 1249) | func (c *CreateGenerationBody) GetModelParameters() map[string]*MapVal... method GetUsage (line 1256) | func (c *CreateGenerationBody) GetUsage() *IngestionUsage { method GetUsageDetails (line 1263) | func (c *CreateGenerationBody) GetUsageDetails() *UsageDetails { method GetCostDetails (line 1270) | func (c *CreateGenerationBody) GetCostDetails() map[string]*float64 { method GetPromptName (line 1277) | func (c *CreateGenerationBody) GetPromptName() *string { method GetPromptVersion (line 1284) | func (c *CreateGenerationBody) GetPromptVersion() *int { method GetExtraProperties (line 1291) | func (c *CreateGenerationBody) GetExtraProperties() map[string]interfa... method require (line 1295) | func (c *CreateGenerationBody) require(field *big.Int) { method SetTraceID (line 1304) | func (c *CreateGenerationBody) SetTraceID(traceID *string) { method SetName (line 1311) | func (c *CreateGenerationBody) SetName(name *string) { method SetStartTime (line 1318) | func (c *CreateGenerationBody) SetStartTime(startTime *time.Time) { method SetMetadata (line 1325) | func (c *CreateGenerationBody) SetMetadata(metadata interface{}) { method SetInput (line 1332) | func (c *CreateGenerationBody) SetInput(input interface{}) { method SetOutput (line 1339) | func (c *CreateGenerationBody) SetOutput(output interface{}) { method SetLevel (line 1346) | func (c *CreateGenerationBody) SetLevel(level *ObservationLevel) { method SetStatusMessage (line 1353) | func (c *CreateGenerationBody) SetStatusMessage(statusMessage *string) { method SetParentObservationID (line 1360) | func (c *CreateGenerationBody) SetParentObservationID(parentObservatio... method SetVersion (line 1367) | func (c *CreateGenerationBody) SetVersion(version *string) { method SetEnvironment (line 1374) | func (c *CreateGenerationBody) SetEnvironment(environment *string) { method SetID (line 1381) | func (c *CreateGenerationBody) SetID(id *string) { method SetEndTime (line 1388) | func (c *CreateGenerationBody) SetEndTime(endTime *time.Time) { method SetCompletionStartTime (line 1395) | func (c *CreateGenerationBody) SetCompletionStartTime(completionStartT... method SetModel (line 1402) | func (c *CreateGenerationBody) SetModel(model *string) { method SetModelParameters (line 1409) | func (c *CreateGenerationBody) SetModelParameters(modelParameters map[... method SetUsage (line 1416) | func (c *CreateGenerationBody) SetUsage(usage *IngestionUsage) { method SetUsageDetails (line 1423) | func (c *CreateGenerationBody) SetUsageDetails(usageDetails *UsageDeta... method SetCostDetails (line 1430) | func (c *CreateGenerationBody) SetCostDetails(costDetails map[string]*... method SetPromptName (line 1437) | func (c *CreateGenerationBody) SetPromptName(promptName *string) { method SetPromptVersion (line 1444) | func (c *CreateGenerationBody) SetPromptVersion(promptVersion *int) { method UnmarshalJSON (line 1449) | func (c *CreateGenerationBody) UnmarshalJSON(data []byte) error { method MarshalJSON (line 1475) | func (c *CreateGenerationBody) MarshalJSON() ([]byte, error) { method String (line 1492) | func (c *CreateGenerationBody) String() string { type CreateGenerationEvent (line 1511) | type CreateGenerationEvent struct method GetID (line 1527) | func (c *CreateGenerationEvent) GetID() string { method GetTimestamp (line 1534) | func (c *CreateGenerationEvent) GetTimestamp() string { method GetMetadata (line 1541) | func (c *CreateGenerationEvent) GetMetadata() interface{} { method GetBody (line 1548) | func (c *CreateGenerationEvent) GetBody() *CreateGenerationBody { method GetExtraProperties (line 1555) | func (c *CreateGenerationEvent) GetExtraProperties() map[string]interf... method require (line 1559) | func (c *CreateGenerationEvent) require(field *big.Int) { method SetID (line 1568) | func (c *CreateGenerationEvent) SetID(id string) { method SetTimestamp (line 1575) | func (c *CreateGenerationEvent) SetTimestamp(timestamp string) { method SetMetadata (line 1582) | func (c *CreateGenerationEvent) SetMetadata(metadata interface{}) { method SetBody (line 1589) | func (c *CreateGenerationEvent) SetBody(body *CreateGenerationBody) { method UnmarshalJSON (line 1594) | func (c *CreateGenerationEvent) UnmarshalJSON(data []byte) error { method MarshalJSON (line 1610) | func (c *CreateGenerationEvent) MarshalJSON() ([]byte, error) { method String (line 1621) | func (c *CreateGenerationEvent) String() string { type CreateGuardrailEvent (line 1640) | type CreateGuardrailEvent struct method GetID (line 1656) | func (c *CreateGuardrailEvent) GetID() string { method GetTimestamp (line 1663) | func (c *CreateGuardrailEvent) GetTimestamp() string { method GetMetadata (line 1670) | func (c *CreateGuardrailEvent) GetMetadata() interface{} { method GetBody (line 1677) | func (c *CreateGuardrailEvent) GetBody() *CreateGenerationBody { method GetExtraProperties (line 1684) | func (c *CreateGuardrailEvent) GetExtraProperties() map[string]interfa... method require (line 1688) | func (c *CreateGuardrailEvent) require(field *big.Int) { method SetID (line 1697) | func (c *CreateGuardrailEvent) SetID(id string) { method SetTimestamp (line 1704) | func (c *CreateGuardrailEvent) SetTimestamp(timestamp string) { method SetMetadata (line 1711) | func (c *CreateGuardrailEvent) SetMetadata(metadata interface{}) { method SetBody (line 1718) | func (c *CreateGuardrailEvent) SetBody(body *CreateGenerationBody) { method UnmarshalJSON (line 1723) | func (c *CreateGuardrailEvent) UnmarshalJSON(data []byte) error { method MarshalJSON (line 1739) | func (c *CreateGuardrailEvent) MarshalJSON() ([]byte, error) { method String (line 1750) | func (c *CreateGuardrailEvent) String() string { type CreateObservationEvent (line 1769) | type CreateObservationEvent struct method GetID (line 1785) | func (c *CreateObservationEvent) GetID() string { method GetTimestamp (line 1792) | func (c *CreateObservationEvent) GetTimestamp() string { method GetMetadata (line 1799) | func (c *CreateObservationEvent) GetMetadata() interface{} { method GetBody (line 1806) | func (c *CreateObservationEvent) GetBody() *ObservationBody { method GetExtraProperties (line 1813) | func (c *CreateObservationEvent) GetExtraProperties() map[string]inter... method require (line 1817) | func (c *CreateObservationEvent) require(field *big.Int) { method SetID (line 1826) | func (c *CreateObservationEvent) SetID(id string) { method SetTimestamp (line 1833) | func (c *CreateObservationEvent) SetTimestamp(timestamp string) { method SetMetadata (line 1840) | func (c *CreateObservationEvent) SetMetadata(metadata interface{}) { method SetBody (line 1847) | func (c *CreateObservationEvent) SetBody(body *ObservationBody) { method UnmarshalJSON (line 1852) | func (c *CreateObservationEvent) UnmarshalJSON(data []byte) error { method MarshalJSON (line 1868) | func (c *CreateObservationEvent) MarshalJSON() ([]byte, error) { method String (line 1879) | func (c *CreateObservationEvent) String() string { type CreateRetrieverEvent (line 1898) | type CreateRetrieverEvent struct method GetID (line 1914) | func (c *CreateRetrieverEvent) GetID() string { method GetTimestamp (line 1921) | func (c *CreateRetrieverEvent) GetTimestamp() string { method GetMetadata (line 1928) | func (c *CreateRetrieverEvent) GetMetadata() interface{} { method GetBody (line 1935) | func (c *CreateRetrieverEvent) GetBody() *CreateGenerationBody { method GetExtraProperties (line 1942) | func (c *CreateRetrieverEvent) GetExtraProperties() map[string]interfa... method require (line 1946) | func (c *CreateRetrieverEvent) require(field *big.Int) { method SetID (line 1955) | func (c *CreateRetrieverEvent) SetID(id string) { method SetTimestamp (line 1962) | func (c *CreateRetrieverEvent) SetTimestamp(timestamp string) { method SetMetadata (line 1969) | func (c *CreateRetrieverEvent) SetMetadata(metadata interface{}) { method SetBody (line 1976) | func (c *CreateRetrieverEvent) SetBody(body *CreateGenerationBody) { method UnmarshalJSON (line 1981) | func (c *CreateRetrieverEvent) UnmarshalJSON(data []byte) error { method MarshalJSON (line 1997) | func (c *CreateRetrieverEvent) MarshalJSON() ([]byte, error) { method String (line 2008) | func (c *CreateRetrieverEvent) String() string { type CreateSpanBody (line 2036) | type CreateSpanBody struct method GetTraceID (line 2058) | func (c *CreateSpanBody) GetTraceID() *string { method GetName (line 2065) | func (c *CreateSpanBody) GetName() *string { method GetStartTime (line 2072) | func (c *CreateSpanBody) GetStartTime() *time.Time { method GetMetadata (line 2079) | func (c *CreateSpanBody) GetMetadata() interface{} { method GetInput (line 2086) | func (c *CreateSpanBody) GetInput() interface{} { method GetOutput (line 2093) | func (c *CreateSpanBody) GetOutput() interface{} { method GetLevel (line 2100) | func (c *CreateSpanBody) GetLevel() *ObservationLevel { method GetStatusMessage (line 2107) | func (c *CreateSpanBody) GetStatusMessage() *string { method GetParentObservationID (line 2114) | func (c *CreateSpanBody) GetParentObservationID() *string { method GetVersion (line 2121) | func (c *CreateSpanBody) GetVersion() *string { method GetEnvironment (line 2128) | func (c *CreateSpanBody) GetEnvironment() *string { method GetID (line 2135) | func (c *CreateSpanBody) GetID() *string { method GetEndTime (line 2142) | func (c *CreateSpanBody) GetEndTime() *time.Time { method GetExtraProperties (line 2149) | func (c *CreateSpanBody) GetExtraProperties() map[string]interface{} { method require (line 2153) | func (c *CreateSpanBody) require(field *big.Int) { method SetTraceID (line 2162) | func (c *CreateSpanBody) SetTraceID(traceID *string) { method SetName (line 2169) | func (c *CreateSpanBody) SetName(name *string) { method SetStartTime (line 2176) | func (c *CreateSpanBody) SetStartTime(startTime *time.Time) { method SetMetadata (line 2183) | func (c *CreateSpanBody) SetMetadata(metadata interface{}) { method SetInput (line 2190) | func (c *CreateSpanBody) SetInput(input interface{}) { method SetOutput (line 2197) | func (c *CreateSpanBody) SetOutput(output interface{}) { method SetLevel (line 2204) | func (c *CreateSpanBody) SetLevel(level *ObservationLevel) { method SetStatusMessage (line 2211) | func (c *CreateSpanBody) SetStatusMessage(statusMessage *string) { method SetParentObservationID (line 2218) | func (c *CreateSpanBody) SetParentObservationID(parentObservationID *s... method SetVersion (line 2225) | func (c *CreateSpanBody) SetVersion(version *string) { method SetEnvironment (line 2232) | func (c *CreateSpanBody) SetEnvironment(environment *string) { method SetID (line 2239) | func (c *CreateSpanBody) SetID(id *string) { method SetEndTime (line 2246) | func (c *CreateSpanBody) SetEndTime(endTime *time.Time) { method UnmarshalJSON (line 2251) | func (c *CreateSpanBody) UnmarshalJSON(data []byte) error { method MarshalJSON (line 2275) | func (c *CreateSpanBody) MarshalJSON() ([]byte, error) { method String (line 2290) | func (c *CreateSpanBody) String() string { type CreateSpanEvent (line 2309) | type CreateSpanEvent struct method GetID (line 2325) | func (c *CreateSpanEvent) GetID() string { method GetTimestamp (line 2332) | func (c *CreateSpanEvent) GetTimestamp() string { method GetMetadata (line 2339) | func (c *CreateSpanEvent) GetMetadata() interface{} { method GetBody (line 2346) | func (c *CreateSpanEvent) GetBody() *CreateSpanBody { method GetExtraProperties (line 2353) | func (c *CreateSpanEvent) GetExtraProperties() map[string]interface{} { method require (line 2357) | func (c *CreateSpanEvent) require(field *big.Int) { method SetID (line 2366) | func (c *CreateSpanEvent) SetID(id string) { method SetTimestamp (line 2373) | func (c *CreateSpanEvent) SetTimestamp(timestamp string) { method SetMetadata (line 2380) | func (c *CreateSpanEvent) SetMetadata(metadata interface{}) { method SetBody (line 2387) | func (c *CreateSpanEvent) SetBody(body *CreateSpanBody) { method UnmarshalJSON (line 2392) | func (c *CreateSpanEvent) UnmarshalJSON(data []byte) error { method MarshalJSON (line 2408) | func (c *CreateSpanEvent) MarshalJSON() ([]byte, error) { method String (line 2419) | func (c *CreateSpanEvent) String() string { type CreateToolEvent (line 2438) | type CreateToolEvent struct method GetID (line 2454) | func (c *CreateToolEvent) GetID() string { method GetTimestamp (line 2461) | func (c *CreateToolEvent) GetTimestamp() string { method GetMetadata (line 2468) | func (c *CreateToolEvent) GetMetadata() interface{} { method GetBody (line 2475) | func (c *CreateToolEvent) GetBody() *CreateGenerationBody { method GetExtraProperties (line 2482) | func (c *CreateToolEvent) GetExtraProperties() map[string]interface{} { method require (line 2486) | func (c *CreateToolEvent) require(field *big.Int) { method SetID (line 2495) | func (c *CreateToolEvent) SetID(id string) { method SetTimestamp (line 2502) | func (c *CreateToolEvent) SetTimestamp(timestamp string) { method SetMetadata (line 2509) | func (c *CreateToolEvent) SetMetadata(metadata interface{}) { method SetBody (line 2516) | func (c *CreateToolEvent) SetBody(body *CreateGenerationBody) { method UnmarshalJSON (line 2521) | func (c *CreateToolEvent) UnmarshalJSON(data []byte) error { method MarshalJSON (line 2537) | func (c *CreateToolEvent) MarshalJSON() ([]byte, error) { method String (line 2548) | func (c *CreateToolEvent) String() string { type IngestionError (line 2567) | type IngestionError struct method GetID (line 2580) | func (i *IngestionError) GetID() string { method GetStatus (line 2587) | func (i *IngestionError) GetStatus() int { method GetMessage (line 2594) | func (i *IngestionError) GetMessage() *string { method GetError (line 2601) | func (i *IngestionError) GetError() interface{} { method GetExtraProperties (line 2608) | func (i *IngestionError) GetExtraProperties() map[string]interface{} { method require (line 2612) | func (i *IngestionError) require(field *big.Int) { method SetID (line 2621) | func (i *IngestionError) SetID(id string) { method SetStatus (line 2628) | func (i *IngestionError) SetStatus(status int) { method SetMessage (line 2635) | func (i *IngestionError) SetMessage(message *string) { method SetError (line 2642) | func (i *IngestionError) SetError(error_ interface{}) { method UnmarshalJSON (line 2647) | func (i *IngestionError) UnmarshalJSON(data []byte) error { method MarshalJSON (line 2663) | func (i *IngestionError) MarshalJSON() ([]byte, error) { method String (line 2674) | func (i *IngestionError) String() string { type IngestionEvent (line 2686) | type IngestionEvent struct method GetIngestionEventZero (line 2708) | func (i *IngestionEvent) GetIngestionEventZero() *IngestionEventZero { method GetIngestionEventOne (line 2715) | func (i *IngestionEvent) GetIngestionEventOne() *IngestionEventOne { method GetIngestionEventTwo (line 2722) | func (i *IngestionEvent) GetIngestionEventTwo() *IngestionEventTwo { method GetIngestionEventThree (line 2729) | func (i *IngestionEvent) GetIngestionEventThree() *IngestionEventThree { method GetIngestionEventFour (line 2736) | func (i *IngestionEvent) GetIngestionEventFour() *IngestionEventFour { method GetIngestionEventFive (line 2743) | func (i *IngestionEvent) GetIngestionEventFive() *IngestionEventFive { method GetIngestionEventSix (line 2750) | func (i *IngestionEvent) GetIngestionEventSix() *IngestionEventSix { method GetIngestionEventSeven (line 2757) | func (i *IngestionEvent) GetIngestionEventSeven() *IngestionEventSeven { method GetIngestionEventEight (line 2764) | func (i *IngestionEvent) GetIngestionEventEight() *IngestionEventEight { method GetIngestionEventNine (line 2771) | func (i *IngestionEvent) GetIngestionEventNine() *IngestionEventNine { method GetIngestionEventTen (line 2778) | func (i *IngestionEvent) GetIngestionEventTen() *IngestionEventTen { method GetIngestionEventEleven (line 2785) | func (i *IngestionEvent) GetIngestionEventEleven() *IngestionEventElev... method GetIngestionEventTwelve (line 2792) | func (i *IngestionEvent) GetIngestionEventTwelve() *IngestionEventTwel... method GetIngestionEventThirteen (line 2799) | func (i *IngestionEvent) GetIngestionEventThirteen() *IngestionEventTh... method GetIngestionEventFourteen (line 2806) | func (i *IngestionEvent) GetIngestionEventFourteen() *IngestionEventFo... method GetIngestionEventFifteen (line 2813) | func (i *IngestionEvent) GetIngestionEventFifteen() *IngestionEventFif... method GetIngestionEventSixteen (line 2820) | func (i *IngestionEvent) GetIngestionEventSixteen() *IngestionEventSix... method UnmarshalJSON (line 2827) | func (i *IngestionEvent) UnmarshalJSON(data []byte) error { method MarshalJSON (line 2933) | func (i IngestionEvent) MarshalJSON() ([]byte, error) { method Accept (line 3008) | func (i *IngestionEvent) Accept(visitor IngestionEventVisitor) error { type IngestionEventVisitor (line 2988) | type IngestionEventVisitor interface type IngestionEventEight (line 3071) | type IngestionEventEight struct method GetID (line 3088) | func (i *IngestionEventEight) GetID() string { method GetTimestamp (line 3095) | func (i *IngestionEventEight) GetTimestamp() string { method GetMetadata (line 3102) | func (i *IngestionEventEight) GetMetadata() interface{} { method GetBody (line 3109) | func (i *IngestionEventEight) GetBody() *ObservationBody { method GetType (line 3116) | func (i *IngestionEventEight) GetType() *IngestionEventEightType { method GetExtraProperties (line 3123) | func (i *IngestionEventEight) GetExtraProperties() map[string]interfac... method require (line 3127) | func (i *IngestionEventEight) require(field *big.Int) { method SetID (line 3136) | func (i *IngestionEventEight) SetID(id string) { method SetTimestamp (line 3143) | func (i *IngestionEventEight) SetTimestamp(timestamp string) { method SetMetadata (line 3150) | func (i *IngestionEventEight) SetMetadata(metadata interface{}) { method SetBody (line 3157) | func (i *IngestionEventEight) SetBody(body *ObservationBody) { method SetType (line 3164) | func (i *IngestionEventEight) SetType(type_ *IngestionEventEightType) { method UnmarshalJSON (line 3169) | func (i *IngestionEventEight) UnmarshalJSON(data []byte) error { method MarshalJSON (line 3185) | func (i *IngestionEventEight) MarshalJSON() ([]byte, error) { method String (line 3196) | func (i *IngestionEventEight) String() string { type IngestionEventEightType (line 3208) | type IngestionEventEightType method Ptr (line 3223) | func (i IngestionEventEightType) Ptr() *IngestionEventEightType { constant IngestionEventEightTypeObservationCreate (line 3211) | IngestionEventEightTypeObservationCreate IngestionEventEightType = "obse... function NewIngestionEventEightTypeFromString (line 3214) | func NewIngestionEventEightTypeFromString(s string) (IngestionEventEight... type IngestionEventEleven (line 3235) | type IngestionEventEleven struct method GetID (line 3252) | func (i *IngestionEventEleven) GetID() string { method GetTimestamp (line 3259) | func (i *IngestionEventEleven) GetTimestamp() string { method GetMetadata (line 3266) | func (i *IngestionEventEleven) GetMetadata() interface{} { method GetBody (line 3273) | func (i *IngestionEventEleven) GetBody() *CreateGenerationBody { method GetType (line 3280) | func (i *IngestionEventEleven) GetType() *IngestionEventElevenType { method GetExtraProperties (line 3287) | func (i *IngestionEventEleven) GetExtraProperties() map[string]interfa... method require (line 3291) | func (i *IngestionEventEleven) require(field *big.Int) { method SetID (line 3300) | func (i *IngestionEventEleven) SetID(id string) { method SetTimestamp (line 3307) | func (i *IngestionEventEleven) SetTimestamp(timestamp string) { method SetMetadata (line 3314) | func (i *IngestionEventEleven) SetMetadata(metadata interface{}) { method SetBody (line 3321) | func (i *IngestionEventEleven) SetBody(body *CreateGenerationBody) { method SetType (line 3328) | func (i *IngestionEventEleven) SetType(type_ *IngestionEventElevenType) { method UnmarshalJSON (line 3333) | func (i *IngestionEventEleven) UnmarshalJSON(data []byte) error { method MarshalJSON (line 3349) | func (i *IngestionEventEleven) MarshalJSON() ([]byte, error) { method String (line 3360) | func (i *IngestionEventEleven) String() string { type IngestionEventElevenType (line 3372) | type IngestionEventElevenType method Ptr (line 3387) | func (i IngestionEventElevenType) Ptr() *IngestionEventElevenType { constant IngestionEventElevenTypeToolCreate (line 3375) | IngestionEventElevenTypeToolCreate IngestionEventElevenType = "tool-create" function NewIngestionEventElevenTypeFromString (line 3378) | func NewIngestionEventElevenTypeFromString(s string) (IngestionEventElev... type IngestionEventFifteen (line 3399) | type IngestionEventFifteen struct method GetID (line 3416) | func (i *IngestionEventFifteen) GetID() string { method GetTimestamp (line 3423) | func (i *IngestionEventFifteen) GetTimestamp() string { method GetMetadata (line 3430) | func (i *IngestionEventFifteen) GetMetadata() interface{} { method GetBody (line 3437) | func (i *IngestionEventFifteen) GetBody() *CreateGenerationBody { method GetType (line 3444) | func (i *IngestionEventFifteen) GetType() *IngestionEventFifteenType { method GetExtraProperties (line 3451) | func (i *IngestionEventFifteen) GetExtraProperties() map[string]interf... method require (line 3455) | func (i *IngestionEventFifteen) require(field *big.Int) { method SetID (line 3464) | func (i *IngestionEventFifteen) SetID(id string) { method SetTimestamp (line 3471) | func (i *IngestionEventFifteen) SetTimestamp(timestamp string) { method SetMetadata (line 3478) | func (i *IngestionEventFifteen) SetMetadata(metadata interface{}) { method SetBody (line 3485) | func (i *IngestionEventFifteen) SetBody(body *CreateGenerationBody) { method SetType (line 3492) | func (i *IngestionEventFifteen) SetType(type_ *IngestionEventFifteenTy... method UnmarshalJSON (line 3497) | func (i *IngestionEventFifteen) UnmarshalJSON(data []byte) error { method MarshalJSON (line 3513) | func (i *IngestionEventFifteen) MarshalJSON() ([]byte, error) { method String (line 3524) | func (i *IngestionEventFifteen) String() string { type IngestionEventFifteenType (line 3536) | type IngestionEventFifteenType method Ptr (line 3551) | func (i IngestionEventFifteenType) Ptr() *IngestionEventFifteenType { constant IngestionEventFifteenTypeEmbeddingCreate (line 3539) | IngestionEventFifteenTypeEmbeddingCreate IngestionEventFifteenType = "em... function NewIngestionEventFifteenTypeFromString (line 3542) | func NewIngestionEventFifteenTypeFromString(s string) (IngestionEventFif... type IngestionEventFive (line 3563) | type IngestionEventFive struct method GetID (line 3580) | func (i *IngestionEventFive) GetID() string { method GetTimestamp (line 3587) | func (i *IngestionEventFive) GetTimestamp() string { method GetMetadata (line 3594) | func (i *IngestionEventFive) GetMetadata() interface{} { method GetBody (line 3601) | func (i *IngestionEventFive) GetBody() *UpdateGenerationBody { method GetType (line 3608) | func (i *IngestionEventFive) GetType() *IngestionEventFiveType { method GetExtraProperties (line 3615) | func (i *IngestionEventFive) GetExtraProperties() map[string]interface... method require (line 3619) | func (i *IngestionEventFive) require(field *big.Int) { method SetID (line 3628) | func (i *IngestionEventFive) SetID(id string) { method SetTimestamp (line 3635) | func (i *IngestionEventFive) SetTimestamp(timestamp string) { method SetMetadata (line 3642) | func (i *IngestionEventFive) SetMetadata(metadata interface{}) { method SetBody (line 3649) | func (i *IngestionEventFive) SetBody(body *UpdateGenerationBody) { method SetType (line 3656) | func (i *IngestionEventFive) SetType(type_ *IngestionEventFiveType) { method UnmarshalJSON (line 3661) | func (i *IngestionEventFive) UnmarshalJSON(data []byte) error { method MarshalJSON (line 3677) | func (i *IngestionEventFive) MarshalJSON() ([]byte, error) { method String (line 3688) | func (i *IngestionEventFive) String() string { type IngestionEventFiveType (line 3700) | type IngestionEventFiveType method Ptr (line 3715) | func (i IngestionEventFiveType) Ptr() *IngestionEventFiveType { constant IngestionEventFiveTypeGenerationUpdate (line 3703) | IngestionEventFiveTypeGenerationUpdate IngestionEventFiveType = "generat... function NewIngestionEventFiveTypeFromString (line 3706) | func NewIngestionEventFiveTypeFromString(s string) (IngestionEventFiveTy... type IngestionEventFour (line 3727) | type IngestionEventFour struct method GetID (line 3744) | func (i *IngestionEventFour) GetID() string { method GetTimestamp (line 3751) | func (i *IngestionEventFour) GetTimestamp() string { method GetMetadata (line 3758) | func (i *IngestionEventFour) GetMetadata() interface{} { method GetBody (line 3765) | func (i *IngestionEventFour) GetBody() *CreateGenerationBody { method GetType (line 3772) | func (i *IngestionEventFour) GetType() *IngestionEventFourType { method GetExtraProperties (line 3779) | func (i *IngestionEventFour) GetExtraProperties() map[string]interface... method require (line 3783) | func (i *IngestionEventFour) require(field *big.Int) { method SetID (line 3792) | func (i *IngestionEventFour) SetID(id string) { method SetTimestamp (line 3799) | func (i *IngestionEventFour) SetTimestamp(timestamp string) { method SetMetadata (line 3806) | func (i *IngestionEventFour) SetMetadata(metadata interface{}) { method SetBody (line 3813) | func (i *IngestionEventFour) SetBody(body *CreateGenerationBody) { method SetType (line 3820) | func (i *IngestionEventFour) SetType(type_ *IngestionEventFourType) { method UnmarshalJSON (line 3825) | func (i *IngestionEventFour) UnmarshalJSON(data []byte) error { method MarshalJSON (line 3841) | func (i *IngestionEventFour) MarshalJSON() ([]byte, error) { method String (line 3852) | func (i *IngestionEventFour) String() string { type IngestionEventFourType (line 3864) | type IngestionEventFourType method Ptr (line 3879) | func (i IngestionEventFourType) Ptr() *IngestionEventFourType { constant IngestionEventFourTypeGenerationCreate (line 3867) | IngestionEventFourTypeGenerationCreate IngestionEventFourType = "generat... function NewIngestionEventFourTypeFromString (line 3870) | func NewIngestionEventFourTypeFromString(s string) (IngestionEventFourTy... type IngestionEventFourteen (line 3891) | type IngestionEventFourteen struct method GetID (line 3908) | func (i *IngestionEventFourteen) GetID() string { method GetTimestamp (line 3915) | func (i *IngestionEventFourteen) GetTimestamp() string { method GetMetadata (line 3922) | func (i *IngestionEventFourteen) GetMetadata() interface{} { method GetBody (line 3929) | func (i *IngestionEventFourteen) GetBody() *CreateGenerationBody { method GetType (line 3936) | func (i *IngestionEventFourteen) GetType() *IngestionEventFourteenType { method GetExtraProperties (line 3943) | func (i *IngestionEventFourteen) GetExtraProperties() map[string]inter... method require (line 3947) | func (i *IngestionEventFourteen) require(field *big.Int) { method SetID (line 3956) | func (i *IngestionEventFourteen) SetID(id string) { method SetTimestamp (line 3963) | func (i *IngestionEventFourteen) SetTimestamp(timestamp string) { method SetMetadata (line 3970) | func (i *IngestionEventFourteen) SetMetadata(metadata interface{}) { method SetBody (line 3977) | func (i *IngestionEventFourteen) SetBody(body *CreateGenerationBody) { method SetType (line 3984) | func (i *IngestionEventFourteen) SetType(type_ *IngestionEventFourteen... method UnmarshalJSON (line 3989) | func (i *IngestionEventFourteen) UnmarshalJSON(data []byte) error { method MarshalJSON (line 4005) | func (i *IngestionEventFourteen) MarshalJSON() ([]byte, error) { method String (line 4016) | func (i *IngestionEventFourteen) String() string { type IngestionEventFourteenType (line 4028) | type IngestionEventFourteenType method Ptr (line 4043) | func (i IngestionEventFourteenType) Ptr() *IngestionEventFourteenType { constant IngestionEventFourteenTypeEvaluatorCreate (line 4031) | IngestionEventFourteenTypeEvaluatorCreate IngestionEventFourteenType = "... function NewIngestionEventFourteenTypeFromString (line 4034) | func NewIngestionEventFourteenTypeFromString(s string) (IngestionEventFo... type IngestionEventNine (line 4055) | type IngestionEventNine struct method GetID (line 4072) | func (i *IngestionEventNine) GetID() string { method GetTimestamp (line 4079) | func (i *IngestionEventNine) GetTimestamp() string { method GetMetadata (line 4086) | func (i *IngestionEventNine) GetMetadata() interface{} { method GetBody (line 4093) | func (i *IngestionEventNine) GetBody() *ObservationBody { method GetType (line 4100) | func (i *IngestionEventNine) GetType() *IngestionEventNineType { method GetExtraProperties (line 4107) | func (i *IngestionEventNine) GetExtraProperties() map[string]interface... method require (line 4111) | func (i *IngestionEventNine) require(field *big.Int) { method SetID (line 4120) | func (i *IngestionEventNine) SetID(id string) { method SetTimestamp (line 4127) | func (i *IngestionEventNine) SetTimestamp(timestamp string) { method SetMetadata (line 4134) | func (i *IngestionEventNine) SetMetadata(metadata interface{}) { method SetBody (line 4141) | func (i *IngestionEventNine) SetBody(body *ObservationBody) { method SetType (line 4148) | func (i *IngestionEventNine) SetType(type_ *IngestionEventNineType) { method UnmarshalJSON (line 4153) | func (i *IngestionEventNine) UnmarshalJSON(data []byte) error { method MarshalJSON (line 4169) | func (i *IngestionEventNine) MarshalJSON() ([]byte, error) { method String (line 4180) | func (i *IngestionEventNine) String() string { type IngestionEventNineType (line 4192) | type IngestionEventNineType method Ptr (line 4207) | func (i IngestionEventNineType) Ptr() *IngestionEventNineType { constant IngestionEventNineTypeObservationUpdate (line 4195) | IngestionEventNineTypeObservationUpdate IngestionEventNineType = "observ... function NewIngestionEventNineTypeFromString (line 4198) | func NewIngestionEventNineTypeFromString(s string) (IngestionEventNineTy... type IngestionEventOne (line 4219) | type IngestionEventOne struct method GetID (line 4236) | func (i *IngestionEventOne) GetID() string { method GetTimestamp (line 4243) | func (i *IngestionEventOne) GetTimestamp() string { method GetMetadata (line 4250) | func (i *IngestionEventOne) GetMetadata() interface{} { method GetBody (line 4257) | func (i *IngestionEventOne) GetBody() *ScoreBody { method GetType (line 4264) | func (i *IngestionEventOne) GetType() *IngestionEventOneType { method GetExtraProperties (line 4271) | func (i *IngestionEventOne) GetExtraProperties() map[string]interface{} { method require (line 4275) | func (i *IngestionEventOne) require(field *big.Int) { method SetID (line 4284) | func (i *IngestionEventOne) SetID(id string) { method SetTimestamp (line 4291) | func (i *IngestionEventOne) SetTimestamp(timestamp string) { method SetMetadata (line 4298) | func (i *IngestionEventOne) SetMetadata(metadata interface{}) { method SetBody (line 4305) | func (i *IngestionEventOne) SetBody(body *ScoreBody) { method SetType (line 4312) | func (i *IngestionEventOne) SetType(type_ *IngestionEventOneType) { method UnmarshalJSON (line 4317) | func (i *IngestionEventOne) UnmarshalJSON(data []byte) error { method MarshalJSON (line 4333) | func (i *IngestionEventOne) MarshalJSON() ([]byte, error) { method String (line 4344) | func (i *IngestionEventOne) String() string { type IngestionEventOneType (line 4356) | type IngestionEventOneType method Ptr (line 4371) | func (i IngestionEventOneType) Ptr() *IngestionEventOneType { constant IngestionEventOneTypeScoreCreate (line 4359) | IngestionEventOneTypeScoreCreate IngestionEventOneType = "score-create" function NewIngestionEventOneTypeFromString (line 4362) | func NewIngestionEventOneTypeFromString(s string) (IngestionEventOneType... type IngestionEventSeven (line 4383) | type IngestionEventSeven struct method GetID (line 4400) | func (i *IngestionEventSeven) GetID() string { method GetTimestamp (line 4407) | func (i *IngestionEventSeven) GetTimestamp() string { method GetMetadata (line 4414) | func (i *IngestionEventSeven) GetMetadata() interface{} { method GetBody (line 4421) | func (i *IngestionEventSeven) GetBody() *SdkLogBody { method GetType (line 4428) | func (i *IngestionEventSeven) GetType() *IngestionEventSevenType { method GetExtraProperties (line 4435) | func (i *IngestionEventSeven) GetExtraProperties() map[string]interfac... method require (line 4439) | func (i *IngestionEventSeven) require(field *big.Int) { method SetID (line 4448) | func (i *IngestionEventSeven) SetID(id string) { method SetTimestamp (line 4455) | func (i *IngestionEventSeven) SetTimestamp(timestamp string) { method SetMetadata (line 4462) | func (i *IngestionEventSeven) SetMetadata(metadata interface{}) { method SetBody (line 4469) | func (i *IngestionEventSeven) SetBody(body *SdkLogBody) { method SetType (line 4476) | func (i *IngestionEventSeven) SetType(type_ *IngestionEventSevenType) { method UnmarshalJSON (line 4481) | func (i *IngestionEventSeven) UnmarshalJSON(data []byte) error { method MarshalJSON (line 4497) | func (i *IngestionEventSeven) MarshalJSON() ([]byte, error) { method String (line 4508) | func (i *IngestionEventSeven) String() string { type IngestionEventSevenType (line 4520) | type IngestionEventSevenType method Ptr (line 4535) | func (i IngestionEventSevenType) Ptr() *IngestionEventSevenType { constant IngestionEventSevenTypeSdkLog (line 4523) | IngestionEventSevenTypeSdkLog IngestionEventSevenType = "sdk-log" function NewIngestionEventSevenTypeFromString (line 4526) | func NewIngestionEventSevenTypeFromString(s string) (IngestionEventSeven... type IngestionEventSix (line 4547) | type IngestionEventSix struct method GetID (line 4564) | func (i *IngestionEventSix) GetID() string { method GetTimestamp (line 4571) | func (i *IngestionEventSix) GetTimestamp() string { method GetMetadata (line 4578) | func (i *IngestionEventSix) GetMetadata() interface{} { method GetBody (line 4585) | func (i *IngestionEventSix) GetBody() *CreateEventBody { method GetType (line 4592) | func (i *IngestionEventSix) GetType() *IngestionEventSixType { method GetExtraProperties (line 4599) | func (i *IngestionEventSix) GetExtraProperties() map[string]interface{} { method require (line 4603) | func (i *IngestionEventSix) require(field *big.Int) { method SetID (line 4612) | func (i *IngestionEventSix) SetID(id string) { method SetTimestamp (line 4619) | func (i *IngestionEventSix) SetTimestamp(timestamp string) { method SetMetadata (line 4626) | func (i *IngestionEventSix) SetMetadata(metadata interface{}) { method SetBody (line 4633) | func (i *IngestionEventSix) SetBody(body *CreateEventBody) { method SetType (line 4640) | func (i *IngestionEventSix) SetType(type_ *IngestionEventSixType) { method UnmarshalJSON (line 4645) | func (i *IngestionEventSix) UnmarshalJSON(data []byte) error { method MarshalJSON (line 4661) | func (i *IngestionEventSix) MarshalJSON() ([]byte, error) { method String (line 4672) | func (i *IngestionEventSix) String() string { type IngestionEventSixType (line 4684) | type IngestionEventSixType method Ptr (line 4699) | func (i IngestionEventSixType) Ptr() *IngestionEventSixType { constant IngestionEventSixTypeEventCreate (line 4687) | IngestionEventSixTypeEventCreate IngestionEventSixType = "event-create" function NewIngestionEventSixTypeFromString (line 4690) | func NewIngestionEventSixTypeFromString(s string) (IngestionEventSixType... type IngestionEventSixteen (line 4711) | type IngestionEventSixteen struct method GetID (line 4728) | func (i *IngestionEventSixteen) GetID() string { method GetTimestamp (line 4735) | func (i *IngestionEventSixteen) GetTimestamp() string { method GetMetadata (line 4742) | func (i *IngestionEventSixteen) GetMetadata() interface{} { method GetBody (line 4749) | func (i *IngestionEventSixteen) GetBody() *CreateGenerationBody { method GetType (line 4756) | func (i *IngestionEventSixteen) GetType() *IngestionEventSixteenType { method GetExtraProperties (line 4763) | func (i *IngestionEventSixteen) GetExtraProperties() map[string]interf... method require (line 4767) | func (i *IngestionEventSixteen) require(field *big.Int) { method SetID (line 4776) | func (i *IngestionEventSixteen) SetID(id string) { method SetTimestamp (line 4783) | func (i *IngestionEventSixteen) SetTimestamp(timestamp string) { method SetMetadata (line 4790) | func (i *IngestionEventSixteen) SetMetadata(metadata interface{}) { method SetBody (line 4797) | func (i *IngestionEventSixteen) SetBody(body *CreateGenerationBody) { method SetType (line 4804) | func (i *IngestionEventSixteen) SetType(type_ *IngestionEventSixteenTy... method UnmarshalJSON (line 4809) | func (i *IngestionEventSixteen) UnmarshalJSON(data []byte) error { method MarshalJSON (line 4825) | func (i *IngestionEventSixteen) MarshalJSON() ([]byte, error) { method String (line 4836) | func (i *IngestionEventSixteen) String() string { type IngestionEventSixteenType (line 4848) | type IngestionEventSixteenType method Ptr (line 4863) | func (i IngestionEventSixteenType) Ptr() *IngestionEventSixteenType { constant IngestionEventSixteenTypeGuardrailCreate (line 4851) | IngestionEventSixteenTypeGuardrailCreate IngestionEventSixteenType = "gu... function NewIngestionEventSixteenTypeFromString (line 4854) | func NewIngestionEventSixteenTypeFromString(s string) (IngestionEventSix... type IngestionEventTen (line 4875) | type IngestionEventTen struct method GetID (line 4892) | func (i *IngestionEventTen) GetID() string { method GetTimestamp (line 4899) | func (i *IngestionEventTen) GetTimestamp() string { method GetMetadata (line 4906) | func (i *IngestionEventTen) GetMetadata() interface{} { method GetBody (line 4913) | func (i *IngestionEventTen) GetBody() *CreateGenerationBody { method GetType (line 4920) | func (i *IngestionEventTen) GetType() *IngestionEventTenType { method GetExtraProperties (line 4927) | func (i *IngestionEventTen) GetExtraProperties() map[string]interface{} { method require (line 4931) | func (i *IngestionEventTen) require(field *big.Int) { method SetID (line 4940) | func (i *IngestionEventTen) SetID(id string) { method SetTimestamp (line 4947) | func (i *IngestionEventTen) SetTimestamp(timestamp string) { method SetMetadata (line 4954) | func (i *IngestionEventTen) SetMetadata(metadata interface{}) { method SetBody (line 4961) | func (i *IngestionEventTen) SetBody(body *CreateGenerationBody) { method SetType (line 4968) | func (i *IngestionEventTen) SetType(type_ *IngestionEventTenType) { method UnmarshalJSON (line 4973) | func (i *IngestionEventTen) UnmarshalJSON(data []byte) error { method MarshalJSON (line 4989) | func (i *IngestionEventTen) MarshalJSON() ([]byte, error) { method String (line 5000) | func (i *IngestionEventTen) String() string { type IngestionEventTenType (line 5012) | type IngestionEventTenType method Ptr (line 5027) | func (i IngestionEventTenType) Ptr() *IngestionEventTenType { constant IngestionEventTenTypeAgentCreate (line 5015) | IngestionEventTenTypeAgentCreate IngestionEventTenType = "agent-create" function NewIngestionEventTenTypeFromString (line 5018) | func NewIngestionEventTenTypeFromString(s string) (IngestionEventTenType... type IngestionEventThirteen (line 5039) | type IngestionEventThirteen struct method GetID (line 5056) | func (i *IngestionEventThirteen) GetID() string { method GetTimestamp (line 5063) | func (i *IngestionEventThirteen) GetTimestamp() string { method GetMetadata (line 5070) | func (i *IngestionEventThirteen) GetMetadata() interface{} { method GetBody (line 5077) | func (i *IngestionEventThirteen) GetBody() *CreateGenerationBody { method GetType (line 5084) | func (i *IngestionEventThirteen) GetType() *IngestionEventThirteenType { method GetExtraProperties (line 5091) | func (i *IngestionEventThirteen) GetExtraProperties() map[string]inter... method require (line 5095) | func (i *IngestionEventThirteen) require(field *big.Int) { method SetID (line 5104) | func (i *IngestionEventThirteen) SetID(id string) { method SetTimestamp (line 5111) | func (i *IngestionEventThirteen) SetTimestamp(timestamp string) { method SetMetadata (line 5118) | func (i *IngestionEventThirteen) SetMetadata(metadata interface{}) { method SetBody (line 5125) | func (i *IngestionEventThirteen) SetBody(body *CreateGenerationBody) { method SetType (line 5132) | func (i *IngestionEventThirteen) SetType(type_ *IngestionEventThirteen... method UnmarshalJSON (line 5137) | func (i *IngestionEventThirteen) UnmarshalJSON(data []byte) error { method MarshalJSON (line 5153) | func (i *IngestionEventThirteen) MarshalJSON() ([]byte, error) { method String (line 5164) | func (i *IngestionEventThirteen) String() string { type IngestionEventThirteenType (line 5176) | type IngestionEventThirteenType method Ptr (line 5191) | func (i IngestionEventThirteenType) Ptr() *IngestionEventThirteenType { constant IngestionEventThirteenTypeRetrieverCreate (line 5179) | IngestionEventThirteenTypeRetrieverCreate IngestionEventThirteenType = "... function NewIngestionEventThirteenTypeFromString (line 5182) | func NewIngestionEventThirteenTypeFromString(s string) (IngestionEventTh... type IngestionEventThree (line 5203) | type IngestionEventThree struct method GetID (line 5220) | func (i *IngestionEventThree) GetID() string { method GetTimestamp (line 5227) | func (i *IngestionEventThree) GetTimestamp() string { method GetMetadata (line 5234) | func (i *IngestionEventThree) GetMetadata() interface{} { method GetBody (line 5241) | func (i *IngestionEventThree) GetBody() *UpdateSpanBody { method GetType (line 5248) | func (i *IngestionEventThree) GetType() *IngestionEventThreeType { method GetExtraProperties (line 5255) | func (i *IngestionEventThree) GetExtraProperties() map[string]interfac... method require (line 5259) | func (i *IngestionEventThree) require(field *big.Int) { method SetID (line 5268) | func (i *IngestionEventThree) SetID(id string) { method SetTimestamp (line 5275) | func (i *IngestionEventThree) SetTimestamp(timestamp string) { method SetMetadata (line 5282) | func (i *IngestionEventThree) SetMetadata(metadata interface{}) { method SetBody (line 5289) | func (i *IngestionEventThree) SetBody(body *UpdateSpanBody) { method SetType (line 5296) | func (i *IngestionEventThree) SetType(type_ *IngestionEventThreeType) { method UnmarshalJSON (line 5301) | func (i *IngestionEventThree) UnmarshalJSON(data []byte) error { method MarshalJSON (line 5317) | func (i *IngestionEventThree) MarshalJSON() ([]byte, error) { method String (line 5328) | func (i *IngestionEventThree) String() string { type IngestionEventThreeType (line 5340) | type IngestionEventThreeType method Ptr (line 5355) | func (i IngestionEventThreeType) Ptr() *IngestionEventThreeType { constant IngestionEventThreeTypeSpanUpdate (line 5343) | IngestionEventThreeTypeSpanUpdate IngestionEventThreeType = "span-update" function NewIngestionEventThreeTypeFromString (line 5346) | func NewIngestionEventThreeTypeFromString(s string) (IngestionEventThree... type IngestionEventTwelve (line 5367) | type IngestionEventTwelve struct method GetID (line 5384) | func (i *IngestionEventTwelve) GetID() string { method GetTimestamp (line 5391) | func (i *IngestionEventTwelve) GetTimestamp() string { method GetMetadata (line 5398) | func (i *IngestionEventTwelve) GetMetadata() interface{} { method GetBody (line 5405) | func (i *IngestionEventTwelve) GetBody() *CreateGenerationBody { method GetType (line 5412) | func (i *IngestionEventTwelve) GetType() *IngestionEventTwelveType { method GetExtraProperties (line 5419) | func (i *IngestionEventTwelve) GetExtraProperties() map[string]interfa... method require (line 5423) | func (i *IngestionEventTwelve) require(field *big.Int) { method SetID (line 5432) | func (i *IngestionEventTwelve) SetID(id string) { method SetTimestamp (line 5439) | func (i *IngestionEventTwelve) SetTimestamp(timestamp string) { method SetMetadata (line 5446) | func (i *IngestionEventTwelve) SetMetadata(metadata interface{}) { method SetBody (line 5453) | func (i *IngestionEventTwelve) SetBody(body *CreateGenerationBody) { method SetType (line 5460) | func (i *IngestionEventTwelve) SetType(type_ *IngestionEventTwelveType) { method UnmarshalJSON (line 5465) | func (i *IngestionEventTwelve) UnmarshalJSON(data []byte) error { method MarshalJSON (line 5481) | func (i *IngestionEventTwelve) MarshalJSON() ([]byte, error) { method String (line 5492) | func (i *IngestionEventTwelve) String() string { type IngestionEventTwelveType (line 5504) | type IngestionEventTwelveType method Ptr (line 5519) | func (i IngestionEventTwelveType) Ptr() *IngestionEventTwelveType { constant IngestionEventTwelveTypeChainCreate (line 5507) | IngestionEventTwelveTypeChainCreate IngestionEventTwelveType = "chain-cr... function NewIngestionEventTwelveTypeFromString (line 5510) | func NewIngestionEventTwelveTypeFromString(s string) (IngestionEventTwel... type IngestionEventTwo (line 5531) | type IngestionEventTwo struct method GetID (line 5548) | func (i *IngestionEventTwo) GetID() string { method GetTimestamp (line 5555) | func (i *IngestionEventTwo) GetTimestamp() string { method GetMetadata (line 5562) | func (i *IngestionEventTwo) GetMetadata() interface{} { method GetBody (line 5569) | func (i *IngestionEventTwo) GetBody() *CreateSpanBody { method GetType (line 5576) | func (i *IngestionEventTwo) GetType() *IngestionEventTwoType { method GetExtraProperties (line 5583) | func (i *IngestionEventTwo) GetExtraProperties() map[string]interface{} { method require (line 5587) | func (i *IngestionEventTwo) require(field *big.Int) { method SetID (line 5596) | func (i *IngestionEventTwo) SetID(id string) { method SetTimestamp (line 5603) | func (i *IngestionEventTwo) SetTimestamp(timestamp string) { method SetMetadata (line 5610) | func (i *IngestionEventTwo) SetMetadata(metadata interface{}) { method SetBody (line 5617) | func (i *IngestionEventTwo) SetBody(body *CreateSpanBody) { method SetType (line 5624) | func (i *IngestionEventTwo) SetType(type_ *IngestionEventTwoType) { method UnmarshalJSON (line 5629) | func (i *IngestionEventTwo) UnmarshalJSON(data []byte) error { method MarshalJSON (line 5645) | func (i *IngestionEventTwo) MarshalJSON() ([]byte, error) { method String (line 5656) | func (i *IngestionEventTwo) String() string { type IngestionEventTwoType (line 5668) | type IngestionEventTwoType method Ptr (line 5683) | func (i IngestionEventTwoType) Ptr() *IngestionEventTwoType { constant IngestionEventTwoTypeSpanCreate (line 5671) | IngestionEventTwoTypeSpanCreate IngestionEventTwoType = "span-create" function NewIngestionEventTwoTypeFromString (line 5674) | func NewIngestionEventTwoTypeFromString(s string) (IngestionEventTwoType... type IngestionEventZero (line 5695) | type IngestionEventZero struct method GetID (line 5712) | func (i *IngestionEventZero) GetID() string { method GetTimestamp (line 5719) | func (i *IngestionEventZero) GetTimestamp() string { method GetMetadata (line 5726) | func (i *IngestionEventZero) GetMetadata() interface{} { method GetBody (line 5733) | func (i *IngestionEventZero) GetBody() *TraceBody { method GetType (line 5740) | func (i *IngestionEventZero) GetType() *IngestionEventZeroType { method GetExtraProperties (line 5747) | func (i *IngestionEventZero) GetExtraProperties() map[string]interface... method require (line 5751) | func (i *IngestionEventZero) require(field *big.Int) { method SetID (line 5760) | func (i *IngestionEventZero) SetID(id string) { method SetTimestamp (line 5767) | func (i *IngestionEventZero) SetTimestamp(timestamp string) { method SetMetadata (line 5774) | func (i *IngestionEventZero) SetMetadata(metadata interface{}) { method SetBody (line 5781) | func (i *IngestionEventZero) SetBody(body *TraceBody) { method SetType (line 5788) | func (i *IngestionEventZero) SetType(type_ *IngestionEventZeroType) { method UnmarshalJSON (line 5793) | func (i *IngestionEventZero) UnmarshalJSON(data []byte) error { method MarshalJSON (line 5809) | func (i *IngestionEventZero) MarshalJSON() ([]byte, error) { method String (line 5820) | func (i *IngestionEventZero) String() string { type IngestionEventZeroType (line 5832) | type IngestionEventZeroType method Ptr (line 5847) | func (i IngestionEventZeroType) Ptr() *IngestionEventZeroType { constant IngestionEventZeroTypeTraceCreate (line 5835) | IngestionEventZeroTypeTraceCreate IngestionEventZeroType = "trace-create" function NewIngestionEventZeroTypeFromString (line 5838) | func NewIngestionEventZeroTypeFromString(s string) (IngestionEventZeroTy... type IngestionResponse (line 5856) | type IngestionResponse struct method GetSuccesses (line 5867) | func (i *IngestionResponse) GetSuccesses() []*IngestionSuccess { method GetErrors (line 5874) | func (i *IngestionResponse) GetErrors() []*IngestionError { method GetExtraProperties (line 5881) | func (i *IngestionResponse) GetExtraProperties() map[string]interface{} { method require (line 5885) | func (i *IngestionResponse) require(field *big.Int) { method SetSuccesses (line 5894) | func (i *IngestionResponse) SetSuccesses(successes []*IngestionSuccess) { method SetErrors (line 5901) | func (i *IngestionResponse) SetErrors(errors []*IngestionError) { method UnmarshalJSON (line 5906) | func (i *IngestionResponse) UnmarshalJSON(data []byte) error { method MarshalJSON (line 5922) | func (i *IngestionResponse) MarshalJSON() ([]byte, error) { method String (line 5933) | func (i *IngestionResponse) String() string { type IngestionSuccess (line 5950) | type IngestionSuccess struct method GetID (line 5961) | func (i *IngestionSuccess) GetID() string { method GetStatus (line 5968) | func (i *IngestionSuccess) GetStatus() int { method GetExtraProperties (line 5975) | func (i *IngestionSuccess) GetExtraProperties() map[string]interface{} { method require (line 5979) | func (i *IngestionSuccess) require(field *big.Int) { method SetID (line 5988) | func (i *IngestionSuccess) SetID(id string) { method SetStatus (line 5995) | func (i *IngestionSuccess) SetStatus(status int) { method UnmarshalJSON (line 6000) | func (i *IngestionSuccess) UnmarshalJSON(data []byte) error { method MarshalJSON (line 6016) | func (i *IngestionSuccess) MarshalJSON() ([]byte, error) { method String (line 6027) | func (i *IngestionSuccess) String() string { type IngestionUsage (line 6039) | type IngestionUsage struct method GetUsage (line 6046) | func (i *IngestionUsage) GetUsage() *Usage { method GetOpenAiUsage (line 6053) | func (i *IngestionUsage) GetOpenAiUsage() *OpenAiUsage { method UnmarshalJSON (line 6060) | func (i *IngestionUsage) UnmarshalJSON(data []byte) error { method MarshalJSON (line 6076) | func (i IngestionUsage) MarshalJSON() ([]byte, error) { method Accept (line 6091) | func (i *IngestionUsage) Accept(visitor IngestionUsageVisitor) error { type IngestionUsageVisitor (line 6086) | type IngestionUsageVisitor interface type MapValue (line 6101) | type MapValue struct method GetStringOptional (line 6110) | func (m *MapValue) GetStringOptional() *string { method GetIntegerOptional (line 6117) | func (m *MapValue) GetIntegerOptional() *int { method GetBooleanOptional (line 6124) | func (m *MapValue) GetBooleanOptional() *bool { method GetStringListOptional (line 6131) | func (m *MapValue) GetStringListOptional() []string { method UnmarshalJSON (line 6138) | func (m *MapValue) UnmarshalJSON(data []byte) error { method MarshalJSON (line 6166) | func (m MapValue) MarshalJSON() ([]byte, error) { method Accept (line 6189) | func (m *MapValue) Accept(visitor MapValueVisitor) error { type MapValueVisitor (line 6182) | type MapValueVisitor interface type ObservationBody (line 6226) | type ObservationBody struct method GetID (line 6253) | func (o *ObservationBody) GetID() *string { method GetTraceID (line 6260) | func (o *ObservationBody) GetTraceID() *string { method GetType (line 6267) | func (o *ObservationBody) GetType() ObservationType { method GetName (line 6274) | func (o *ObservationBody) GetName() *string { method GetStartTime (line 6281) | func (o *ObservationBody) GetStartTime() *time.Time { method GetEndTime (line 6288) | func (o *ObservationBody) GetEndTime() *time.Time { method GetCompletionStartTime (line 6295) | func (o *ObservationBody) GetCompletionStartTime() *time.Time { method GetModel (line 6302) | func (o *ObservationBody) GetModel() *string { method GetModelParameters (line 6309) | func (o *ObservationBody) GetModelParameters() map[string]*MapValue { method GetInput (line 6316) | func (o *ObservationBody) GetInput() interface{} { method GetVersion (line 6323) | func (o *ObservationBody) GetVersion() *string { method GetMetadata (line 6330) | func (o *ObservationBody) GetMetadata() interface{} { method GetOutput (line 6337) | func (o *ObservationBody) GetOutput() interface{} { method GetUsage (line 6344) | func (o *ObservationBody) GetUsage() *Usage { method GetLevel (line 6351) | func (o *ObservationBody) GetLevel() *ObservationLevel { method GetStatusMessage (line 6358) | func (o *ObservationBody) GetStatusMessage() *string { method GetParentObservationID (line 6365) | func (o *ObservationBody) GetParentObservationID() *string { method GetEnvironment (line 6372) | func (o *ObservationBody) GetEnvironment() *string { method GetExtraProperties (line 6379) | func (o *ObservationBody) GetExtraProperties() map[string]interface{} { method require (line 6383) | func (o *ObservationBody) require(field *big.Int) { method SetID (line 6392) | func (o *ObservationBody) SetID(id *string) { method SetTraceID (line 6399) | func (o *ObservationBody) SetTraceID(traceID *string) { method SetType (line 6406) | func (o *ObservationBody) SetType(type_ ObservationType) { method SetName (line 6413) | func (o *ObservationBody) SetName(name *string) { method SetStartTime (line 6420) | func (o *ObservationBody) SetStartTime(startTime *time.Time) { method SetEndTime (line 6427) | func (o *ObservationBody) SetEndTime(endTime *time.Time) { method SetCompletionStartTime (line 6434) | func (o *ObservationBody) SetCompletionStartTime(completionStartTime *... method SetModel (line 6441) | func (o *ObservationBody) SetModel(model *string) { method SetModelParameters (line 6448) | func (o *ObservationBody) SetModelParameters(modelParameters map[strin... method SetInput (line 6455) | func (o *ObservationBody) SetInput(input interface{}) { method SetVersion (line 6462) | func (o *ObservationBody) SetVersion(version *string) { method SetMetadata (line 6469) | func (o *ObservationBody) SetMetadata(metadata interface{}) { method SetOutput (line 6476) | func (o *ObservationBody) SetOutput(output interface{}) { method SetUsage (line 6483) | func (o *ObservationBody) SetUsage(usage *Usage) { method SetLevel (line 6490) | func (o *ObservationBody) SetLevel(level *ObservationLevel) { method SetStatusMessage (line 6497) | func (o *ObservationBody) SetStatusMessage(statusMessage *string) { method SetParentObservationID (line 6504) | func (o *ObservationBody) SetParentObservationID(parentObservationID *... method SetEnvironment (line 6511) | func (o *ObservationBody) SetEnvironment(environment *string) { method UnmarshalJSON (line 6516) | func (o *ObservationBody) UnmarshalJSON(data []byte) error { method MarshalJSON (line 6542) | func (o *ObservationBody) MarshalJSON() ([]byte, error) { method String (line 6559) | func (o *ObservationBody) String() string { type ObservationType (line 6571) | type ObservationType method Ptr (line 6613) | func (o ObservationType) Ptr() *ObservationType { constant ObservationTypeSpan (line 6574) | ObservationTypeSpan ObservationType = "SPAN" constant ObservationTypeGeneration (line 6575) | ObservationTypeGeneration ObservationType = "GENERATION" constant ObservationTypeEvent (line 6576) | ObservationTypeEvent ObservationType = "EVENT" constant ObservationTypeAgent (line 6577) | ObservationTypeAgent ObservationType = "AGENT" constant ObservationTypeTool (line 6578) | ObservationTypeTool ObservationType = "TOOL" constant ObservationTypeChain (line 6579) | ObservationTypeChain ObservationType = "CHAIN" constant ObservationTypeRetriever (line 6580) | ObservationTypeRetriever ObservationType = "RETRIEVER" constant ObservationTypeEvaluator (line 6581) | ObservationTypeEvaluator ObservationType = "EVALUATOR" constant ObservationTypeEmbedding (line 6582) | ObservationTypeEmbedding ObservationType = "EMBEDDING" constant ObservationTypeGuardrail (line 6583) | ObservationTypeGuardrail ObservationType = "GUARDRAIL" function NewObservationTypeFromString (line 6586) | func NewObservationTypeFromString(s string) (ObservationType, error) { type OpenAiCompletionUsageSchema (line 6626) | type OpenAiCompletionUsageSchema struct method GetPromptTokens (line 6640) | func (o *OpenAiCompletionUsageSchema) GetPromptTokens() int { method GetCompletionTokens (line 6647) | func (o *OpenAiCompletionUsageSchema) GetCompletionTokens() int { method GetTotalTokens (line 6654) | func (o *OpenAiCompletionUsageSchema) GetTotalTokens() int { method GetPromptTokensDetails (line 6661) | func (o *OpenAiCompletionUsageSchema) GetPromptTokensDetails() map[str... method GetCompletionTokensDetails (line 6668) | func (o *OpenAiCompletionUsageSchema) GetCompletionTokensDetails() map... method GetExtraProperties (line 6675) | func (o *OpenAiCompletionUsageSchema) GetExtraProperties() map[string]... method require (line 6679) | func (o *OpenAiCompletionUsageSchema) require(field *big.Int) { method SetPromptTokens (line 6688) | func (o *OpenAiCompletionUsageSchema) SetPromptTokens(promptTokens int) { method SetCompletionTokens (line 6695) | func (o *OpenAiCompletionUsageSchema) SetCompletionTokens(completionTo... method SetTotalTokens (line 6702) | func (o *OpenAiCompletionUsageSchema) SetTotalTokens(totalTokens int) { method SetPromptTokensDetails (line 6709) | func (o *OpenAiCompletionUsageSchema) SetPromptTokensDetails(promptTok... method SetCompletionTokensDetails (line 6716) | func (o *OpenAiCompletionUsageSchema) SetCompletionTokensDetails(compl... method UnmarshalJSON (line 6721) | func (o *OpenAiCompletionUsageSchema) UnmarshalJSON(data []byte) error { method MarshalJSON (line 6737) | func (o *OpenAiCompletionUsageSchema) MarshalJSON() ([]byte, error) { method String (line 6748) | func (o *OpenAiCompletionUsageSchema) String() string { type OpenAiResponseUsageSchema (line 6769) | type OpenAiResponseUsageSchema struct method GetInputTokens (line 6783) | func (o *OpenAiResponseUsageSchema) GetInputTokens() int { method GetOutputTokens (line 6790) | func (o *OpenAiResponseUsageSchema) GetOutputTokens() int { method GetTotalTokens (line 6797) | func (o *OpenAiResponseUsageSchema) GetTotalTokens() int { method GetInputTokensDetails (line 6804) | func (o *OpenAiResponseUsageSchema) GetInputTokensDetails() map[string... method GetOutputTokensDetails (line 6811) | func (o *OpenAiResponseUsageSchema) GetOutputTokensDetails() map[strin... method GetExtraProperties (line 6818) | func (o *OpenAiResponseUsageSchema) GetExtraProperties() map[string]in... method require (line 6822) | func (o *OpenAiResponseUsageSchema) require(field *big.Int) { method SetInputTokens (line 6831) | func (o *OpenAiResponseUsageSchema) SetInputTokens(inputTokens int) { method SetOutputTokens (line 6838) | func (o *OpenAiResponseUsageSchema) SetOutputTokens(outputTokens int) { method SetTotalTokens (line 6845) | func (o *OpenAiResponseUsageSchema) SetTotalTokens(totalTokens int) { method SetInputTokensDetails (line 6852) | func (o *OpenAiResponseUsageSchema) SetInputTokensDetails(inputTokensD... method SetOutputTokensDetails (line 6859) | func (o *OpenAiResponseUsageSchema) SetOutputTokensDetails(outputToken... method UnmarshalJSON (line 6864) | func (o *OpenAiResponseUsageSchema) UnmarshalJSON(data []byte) error { method MarshalJSON (line 6880) | func (o *OpenAiResponseUsageSchema) MarshalJSON() ([]byte, error) { method String (line 6891) | func (o *OpenAiResponseUsageSchema) String() string { type OpenAiUsage (line 6910) | type OpenAiUsage struct method GetPromptTokens (line 6922) | func (o *OpenAiUsage) GetPromptTokens() *int { method GetCompletionTokens (line 6929) | func (o *OpenAiUsage) GetCompletionTokens() *int { method GetTotalTokens (line 6936) | func (o *OpenAiUsage) GetTotalTokens() *int { method GetExtraProperties (line 6943) | func (o *OpenAiUsage) GetExtraProperties() map[string]interface{} { method require (line 6947) | func (o *OpenAiUsage) require(field *big.Int) { method SetPromptTokens (line 6956) | func (o *OpenAiUsage) SetPromptTokens(promptTokens *int) { method SetCompletionTokens (line 6963) | func (o *OpenAiUsage) SetCompletionTokens(completionTokens *int) { method SetTotalTokens (line 6970) | func (o *OpenAiUsage) SetTotalTokens(totalTokens *int) { method UnmarshalJSON (line 6975) | func (o *OpenAiUsage) UnmarshalJSON(data []byte) error { method MarshalJSON (line 6991) | func (o *OpenAiUsage) MarshalJSON() ([]byte, error) { method String (line 7002) | func (o *OpenAiUsage) String() string { type OptionalObservationBody (line 7028) | type OptionalObservationBody struct method GetTraceID (line 7048) | func (o *OptionalObservationBody) GetTraceID() *string { method GetName (line 7055) | func (o *OptionalObservationBody) GetName() *string { method GetStartTime (line 7062) | func (o *OptionalObservationBody) GetStartTime() *time.Time { method GetMetadata (line 7069) | func (o *OptionalObservationBody) GetMetadata() interface{} { method GetInput (line 7076) | func (o *OptionalObservationBody) GetInput() interface{} { method GetOutput (line 7083) | func (o *OptionalObservationBody) GetOutput() interface{} { method GetLevel (line 7090) | func (o *OptionalObservationBody) GetLevel() *ObservationLevel { method GetStatusMessage (line 7097) | func (o *OptionalObservationBody) GetStatusMessage() *string { method GetParentObservationID (line 7104) | func (o *OptionalObservationBody) GetParentObservationID() *string { method GetVersion (line 7111) | func (o *OptionalObservationBody) GetVersion() *string { method GetEnvironment (line 7118) | func (o *OptionalObservationBody) GetEnvironment() *string { method GetExtraProperties (line 7125) | func (o *OptionalObservationBody) GetExtraProperties() map[string]inte... method require (line 7129) | func (o *OptionalObservationBody) require(field *big.Int) { method SetTraceID (line 7138) | func (o *OptionalObservationBody) SetTraceID(traceID *string) { method SetName (line 7145) | func (o *OptionalObservationBody) SetName(name *string) { method SetStartTime (line 7152) | func (o *OptionalObservationBody) SetStartTime(startTime *time.Time) { method SetMetadata (line 7159) | func (o *OptionalObservationBody) SetMetadata(metadata interface{}) { method SetInput (line 7166) | func (o *OptionalObservationBody) SetInput(input interface{}) { method SetOutput (line 7173) | func (o *OptionalObservationBody) SetOutput(output interface{}) { method SetLevel (line 7180) | func (o *OptionalObservationBody) SetLevel(level *ObservationLevel) { method SetStatusMessage (line 7187) | func (o *OptionalObservationBody) SetStatusMessage(statusMessage *stri... method SetParentObservationID (line 7194) | func (o *OptionalObservationBody) SetParentObservationID(parentObserva... method SetVersion (line 7201) | func (o *OptionalObservationBody) SetVersion(version *string) { method SetEnvironment (line 7208) | func (o *OptionalObservationBody) SetEnvironment(environment *string) { method UnmarshalJSON (line 7213) | func (o *OptionalObservationBody) UnmarshalJSON(data []byte) error { method MarshalJSON (line 7235) | func (o *OptionalObservationBody) MarshalJSON() ([]byte, error) { method String (line 7248) | func (o *OptionalObservationBody) String() string { type ScoreBody (line 7276) | type ScoreBody struct method GetID (line 7303) | func (s *ScoreBody) GetID() *string { method GetTraceID (line 7310) | func (s *ScoreBody) GetTraceID() *string { method GetSessionID (line 7317) | func (s *ScoreBody) GetSessionID() *string { method GetObservationID (line 7324) | func (s *ScoreBody) GetObservationID() *string { method GetDatasetRunID (line 7331) | func (s *ScoreBody) GetDatasetRunID() *string { method GetName (line 7338) | func (s *ScoreBody) GetName() string { method GetEnvironment (line 7345) | func (s *ScoreBody) GetEnvironment() *string { method GetQueueID (line 7352) | func (s *ScoreBody) GetQueueID() *string { method GetValue (line 7359) | func (s *ScoreBody) GetValue() *CreateScoreValue { method GetComment (line 7366) | func (s *ScoreBody) GetComment() *string { method GetMetadata (line 7373) | func (s *ScoreBody) GetMetadata() interface{} { method GetDataType (line 7380) | func (s *ScoreBody) GetDataType() *ScoreDataType { method GetConfigID (line 7387) | func (s *ScoreBody) GetConfigID() *string { method GetExtraProperties (line 7394) | func (s *ScoreBody) GetExtraProperties() map[string]interface{} { method require (line 7398) | func (s *ScoreBody) require(field *big.Int) { method SetID (line 7407) | func (s *ScoreBody) SetID(id *string) { method SetTraceID (line 7414) | func (s *ScoreBody) SetTraceID(traceID *string) { method SetSessionID (line 7421) | func (s *ScoreBody) SetSessionID(sessionID *string) { method SetObservationID (line 7428) | func (s *ScoreBody) SetObservationID(observationID *string) { method SetDatasetRunID (line 7435) | func (s *ScoreBody) SetDatasetRunID(datasetRunID *string) { method SetName (line 7442) | func (s *ScoreBody) SetName(name string) { method SetEnvironment (line 7449) | func (s *ScoreBody) SetEnvironment(environment *string) { method SetQueueID (line 7456) | func (s *ScoreBody) SetQueueID(queueID *string) { method SetValue (line 7463) | func (s *ScoreBody) SetValue(value *CreateScoreValue) { method SetComment (line 7470) | func (s *ScoreBody) SetComment(comment *string) { method SetMetadata (line 7477) | func (s *ScoreBody) SetMetadata(metadata interface{}) { method SetDataType (line 7484) | func (s *ScoreBody) SetDataType(dataType *ScoreDataType) { method SetConfigID (line 7491) | func (s *ScoreBody) SetConfigID(configID *string) { method UnmarshalJSON (line 7496) | func (s *ScoreBody) UnmarshalJSON(data []byte) error { method MarshalJSON (line 7512) | func (s *ScoreBody) MarshalJSON() ([]byte, error) { method String (line 7523) | func (s *ScoreBody) String() string { type ScoreEvent (line 7542) | type ScoreEvent struct method GetID (line 7558) | func (s *ScoreEvent) GetID() string { method GetTimestamp (line 7565) | func (s *ScoreEvent) GetTimestamp() string { method GetMetadata (line 7572) | func (s *ScoreEvent) GetMetadata() interface{} { method GetBody (line 7579) | func (s *ScoreEvent) GetBody() *ScoreBody { method GetExtraProperties (line 7586) | func (s *ScoreEvent) GetExtraProperties() map[string]interface{} { method require (line 7590) | func (s *ScoreEvent) require(field *big.Int) { method SetID (line 7599) | func (s *ScoreEvent) SetID(id string) { method SetTimestamp (line 7606) | func (s *ScoreEvent) SetTimestamp(timestamp string) { method SetMetadata (line 7613) | func (s *ScoreEvent) SetMetadata(metadata interface{}) { method SetBody (line 7620) | func (s *ScoreEvent) SetBody(body *ScoreBody) { method UnmarshalJSON (line 7625) | func (s *ScoreEvent) UnmarshalJSON(data []byte) error { method MarshalJSON (line 7641) | func (s *ScoreEvent) MarshalJSON() ([]byte, error) { method String (line 7652) | func (s *ScoreEvent) String() string { type SdkLogBody (line 7668) | type SdkLogBody struct method GetLog (line 7678) | func (s *SdkLogBody) GetLog() interface{} { method GetExtraProperties (line 7685) | func (s *SdkLogBody) GetExtraProperties() map[string]interface{} { method require (line 7689) | func (s *SdkLogBody) require(field *big.Int) { method SetLog (line 7698) | func (s *SdkLogBody) SetLog(log interface{}) { method UnmarshalJSON (line 7703) | func (s *SdkLogBody) UnmarshalJSON(data []byte) error { method MarshalJSON (line 7719) | func (s *SdkLogBody) MarshalJSON() ([]byte, error) { method String (line 7730) | func (s *SdkLogBody) String() string { type SdkLogEvent (line 7749) | type SdkLogEvent struct method GetID (line 7765) | func (s *SdkLogEvent) GetID() string { method GetTimestamp (line 7772) | func (s *SdkLogEvent) GetTimestamp() string { method GetMetadata (line 7779) | func (s *SdkLogEvent) GetMetadata() interface{} { method GetBody (line 7786) | func (s *SdkLogEvent) GetBody() *SdkLogBody { method GetExtraProperties (line 7793) | func (s *SdkLogEvent) GetExtraProperties() map[string]interface{} { method require (line 7797) | func (s *SdkLogEvent) require(field *big.Int) { method SetID (line 7806) | func (s *SdkLogEvent) SetID(id string) { method SetTimestamp (line 7813) | func (s *SdkLogEvent) SetTimestamp(timestamp string) { method SetMetadata (line 7820) | func (s *SdkLogEvent) SetMetadata(metadata interface{}) { method SetBody (line 7827) | func (s *SdkLogEvent) SetBody(body *SdkLogBody) { method UnmarshalJSON (line 7832) | func (s *SdkLogEvent) UnmarshalJSON(data []byte) error { method MarshalJSON (line 7848) | func (s *SdkLogEvent) MarshalJSON() ([]byte, error) { method String (line 7859) | func (s *SdkLogEvent) String() string { type TraceBody (line 7887) | type TraceBody struct method GetID (line 7910) | func (t *TraceBody) GetID() *string { method GetTimestamp (line 7917) | func (t *TraceBody) GetTimestamp() *time.Time { method GetName (line 7924) | func (t *TraceBody) GetName() *string { method GetUserID (line 7931) | func (t *TraceBody) GetUserID() *string { method GetInput (line 7938) | func (t *TraceBody) GetInput() interface{} { method GetOutput (line 7945) | func (t *TraceBody) GetOutput() interface{} { method GetSessionID (line 7952) | func (t *TraceBody) GetSessionID() *string { method GetRelease (line 7959) | func (t *TraceBody) GetRelease() *string { method GetVersion (line 7966) | func (t *TraceBody) GetVersion() *string { method GetMetadata (line 7973) | func (t *TraceBody) GetMetadata() interface{} { method GetTags (line 7980) | func (t *TraceBody) GetTags() []string { method GetEnvironment (line 7987) | func (t *TraceBody) GetEnvironment() *string { method GetPublic (line 7994) | func (t *TraceBody) GetPublic() *bool { method GetExtraProperties (line 8001) | func (t *TraceBody) GetExtraProperties() map[string]interface{} { method require (line 8005) | func (t *TraceBody) require(field *big.Int) { method SetID (line 8014) | func (t *TraceBody) SetID(id *string) { method SetTimestamp (line 8021) | func (t *TraceBody) SetTimestamp(timestamp *time.Time) { method SetName (line 8028) | func (t *TraceBody) SetName(name *string) { method SetUserID (line 8035) | func (t *TraceBody) SetUserID(userID *string) { method SetInput (line 8042) | func (t *TraceBody) SetInput(input interface{}) { method SetOutput (line 8049) | func (t *TraceBody) SetOutput(output interface{}) { method SetSessionID (line 8056) | func (t *TraceBody) SetSessionID(sessionID *string) { method SetRelease (line 8063) | func (t *TraceBody) SetRelease(release *string) { method SetVersion (line 8070) | func (t *TraceBody) SetVersion(version *string) { method SetMetadata (line 8077) | func (t *TraceBody) SetMetadata(metadata interface{}) { method SetTags (line 8084) | func (t *TraceBody) SetTags(tags []string) { method SetEnvironment (line 8091) | func (t *TraceBody) SetEnvironment(environment *string) { method SetPublic (line 8098) | func (t *TraceBody) SetPublic(public *bool) { method UnmarshalJSON (line 8103) | func (t *TraceBody) UnmarshalJSON(data []byte) error { method MarshalJSON (line 8125) | func (t *TraceBody) MarshalJSON() ([]byte, error) { method String (line 8138) | func (t *TraceBody) String() string { type TraceEvent (line 8157) | type TraceEvent struct method GetID (line 8173) | func (t *TraceEvent) GetID() string { method GetTimestamp (line 8180) | func (t *TraceEvent) GetTimestamp() string { method GetMetadata (line 8187) | func (t *TraceEvent) GetMetadata() interface{} { method GetBody (line 8194) | func (t *TraceEvent) GetBody() *TraceBody { method GetExtraProperties (line 8201) | func (t *TraceEvent) GetExtraProperties() map[string]interface{} { method require (line 8205) | func (t *TraceEvent) require(field *big.Int) { method SetID (line 8214) | func (t *TraceEvent) SetID(id string) { method SetTimestamp (line 8221) | func (t *TraceEvent) SetTimestamp(timestamp string) { method SetMetadata (line 8228) | func (t *TraceEvent) SetMetadata(metadata interface{}) { method SetBody (line 8235) | func (t *TraceEvent) SetBody(body *TraceBody) { method UnmarshalJSON (line 8240) | func (t *TraceEvent) UnmarshalJSON(data []byte) error { method MarshalJSON (line 8256) | func (t *TraceEvent) MarshalJSON() ([]byte, error) { method String (line 8267) | func (t *TraceEvent) String() string { type UpdateEventBody (line 8294) | type UpdateEventBody struct method GetTraceID (line 8315) | func (u *UpdateEventBody) GetTraceID() *string { method GetName (line 8322) | func (u *UpdateEventBody) GetName() *string { method GetStartTime (line 8329) | func (u *UpdateEventBody) GetStartTime() *time.Time { method GetMetadata (line 8336) | func (u *UpdateEventBody) GetMetadata() interface{} { method GetInput (line 8343) | func (u *UpdateEventBody) GetInput() interface{} { method GetOutput (line 8350) | func (u *UpdateEventBody) GetOutput() interface{} { method GetLevel (line 8357) | func (u *UpdateEventBody) GetLevel() *ObservationLevel { method GetStatusMessage (line 8364) | func (u *UpdateEventBody) GetStatusMessage() *string { method GetParentObservationID (line 8371) | func (u *UpdateEventBody) GetParentObservationID() *string { method GetVersion (line 8378) | func (u *UpdateEventBody) GetVersion() *string { method GetEnvironment (line 8385) | func (u *UpdateEventBody) GetEnvironment() *string { method GetID (line 8392) | func (u *UpdateEventBody) GetID() string { method GetExtraProperties (line 8399) | func (u *UpdateEventBody) GetExtraProperties() map[string]interface{} { method require (line 8403) | func (u *UpdateEventBody) require(field *big.Int) { method SetTraceID (line 8412) | func (u *UpdateEventBody) SetTraceID(traceID *string) { method SetName (line 8419) | func (u *UpdateEventBody) SetName(name *string) { method SetStartTime (line 8426) | func (u *UpdateEventBody) SetStartTime(startTime *time.Time) { method SetMetadata (line 8433) | func (u *UpdateEventBody) SetMetadata(metadata interface{}) { method SetInput (line 8440) | func (u *UpdateEventBody) SetInput(input interface{}) { method SetOutput (line 8447) | func (u *UpdateEventBody) SetOutput(output interface{}) { method SetLevel (line 8454) | func (u *UpdateEventBody) SetLevel(level *ObservationLevel) { method SetStatusMessage (line 8461) | func (u *UpdateEventBody) SetStatusMessage(statusMessage *string) { method SetParentObservationID (line 8468) | func (u *UpdateEventBody) SetParentObservationID(parentObservationID *... method SetVersion (line 8475) | func (u *UpdateEventBody) SetVersion(version *string) { method SetEnvironment (line 8482) | func (u *UpdateEventBody) SetEnvironment(environment *string) { method SetID (line 8489) | func (u *UpdateEventBody) SetID(id string) { method UnmarshalJSON (line 8494) | func (u *UpdateEventBody) UnmarshalJSON(data []byte) error { method MarshalJSON (line 8516) | func (u *UpdateEventBody) MarshalJSON() ([]byte, error) { method String (line 8529) | func (u *UpdateEventBody) String() string { type UpdateGenerationBody (line 8565) | type UpdateGenerationBody struct method GetTraceID (line 8595) | func (u *UpdateGenerationBody) GetTraceID() *string { method GetName (line 8602) | func (u *UpdateGenerationBody) GetName() *string { method GetStartTime (line 8609) | func (u *UpdateGenerationBody) GetStartTime() *time.Time { method GetMetadata (line 8616) | func (u *UpdateGenerationBody) GetMetadata() interface{} { method GetInput (line 8623) | func (u *UpdateGenerationBody) GetInput() interface{} { method GetOutput (line 8630) | func (u *UpdateGenerationBody) GetOutput() interface{} { method GetLevel (line 8637) | func (u *UpdateGenerationBody) GetLevel() *ObservationLevel { method GetStatusMessage (line 8644) | func (u *UpdateGenerationBody) GetStatusMessage() *string { method GetParentObservationID (line 8651) | func (u *UpdateGenerationBody) GetParentObservationID() *string { method GetVersion (line 8658) | func (u *UpdateGenerationBody) GetVersion() *string { method GetEnvironment (line 8665) | func (u *UpdateGenerationBody) GetEnvironment() *string { method GetID (line 8672) | func (u *UpdateGenerationBody) GetID() string { method GetEndTime (line 8679) | func (u *UpdateGenerationBody) GetEndTime() *time.Time { method GetCompletionStartTime (line 8686) | func (u *UpdateGenerationBody) GetCompletionStartTime() *time.Time { method GetModel (line 8693) | func (u *UpdateGenerationBody) GetModel() *string { method GetModelParameters (line 8700) | func (u *UpdateGenerationBody) GetModelParameters() map[string]*MapVal... method GetUsage (line 8707) | func (u *UpdateGenerationBody) GetUsage() *IngestionUsage { method GetPromptName (line 8714) | func (u *UpdateGenerationBody) GetPromptName() *string { method GetUsageDetails (line 8721) | func (u *UpdateGenerationBody) GetUsageDetails() *UsageDetails { method GetCostDetails (line 8728) | func (u *UpdateGenerationBody) GetCostDetails() map[string]*float64 { method GetPromptVersion (line 8735) | func (u *UpdateGenerationBody) GetPromptVersion() *int { method GetExtraProperties (line 8742) | func (u *UpdateGenerationBody) GetExtraProperties() map[string]interfa... method require (line 8746) | func (u *UpdateGenerationBody) require(field *big.Int) { method SetTraceID (line 8755) | func (u *UpdateGenerationBody) SetTraceID(traceID *string) { method SetName (line 8762) | func (u *UpdateGenerationBody) SetName(name *string) { method SetStartTime (line 8769) | func (u *UpdateGenerationBody) SetStartTime(startTime *time.Time) { method SetMetadata (line 8776) | func (u *UpdateGenerationBody) SetMetadata(metadata interface{}) { method SetInput (line 8783) | func (u *UpdateGenerationBody) SetInput(input interface{}) { method SetOutput (line 8790) | func (u *UpdateGenerationBody) SetOutput(output interface{}) { method SetLevel (line 8797) | func (u *UpdateGenerationBody) SetLevel(level *ObservationLevel) { method SetStatusMessage (line 8804) | func (u *UpdateGenerationBody) SetStatusMessage(statusMessage *string) { method SetParentObservationID (line 8811) | func (u *UpdateGenerationBody) SetParentObservationID(parentObservatio... method SetVersion (line 8818) | func (u *UpdateGenerationBody) SetVersion(version *string) { method SetEnvironment (line 8825) | func (u *UpdateGenerationBody) SetEnvironment(environment *string) { method SetID (line 8832) | func (u *UpdateGenerationBody) SetID(id string) { method SetEndTime (line 8839) | func (u *UpdateGenerationBody) SetEndTime(endTime *time.Time) { method SetCompletionStartTime (line 8846) | func (u *UpdateGenerationBody) SetCompletionStartTime(completionStartT... method SetModel (line 8853) | func (u *UpdateGenerationBody) SetModel(model *string) { method SetModelParameters (line 8860) | func (u *UpdateGenerationBody) SetModelParameters(modelParameters map[... method SetUsage (line 8867) | func (u *UpdateGenerationBody) SetUsage(usage *IngestionUsage) { method SetPromptName (line 8874) | func (u *UpdateGenerationBody) SetPromptName(promptName *string) { method SetUsageDetails (line 8881) | func (u *UpdateGenerationBody) SetUsageDetails(usageDetails *UsageDeta... method SetCostDetails (line 8888) | func (u *UpdateGenerationBody) SetCostDetails(costDetails map[string]*... method SetPromptVersion (line 8895) | func (u *UpdateGenerationBody) SetPromptVersion(promptVersion *int) { method UnmarshalJSON (line 8900) | func (u *UpdateGenerationBody) UnmarshalJSON(data []byte) error { method MarshalJSON (line 8926) | func (u *UpdateGenerationBody) MarshalJSON() ([]byte, error) { method String (line 8943) | func (u *UpdateGenerationBody) String() string { type UpdateGenerationEvent (line 8962) | type UpdateGenerationEvent struct method GetID (line 8978) | func (u *UpdateGenerationEvent) GetID() string { method GetTimestamp (line 8985) | func (u *UpdateGenerationEvent) GetTimestamp() string { method GetMetadata (line 8992) | func (u *UpdateGenerationEvent) GetMetadata() interface{} { method GetBody (line 8999) | func (u *UpdateGenerationEvent) GetBody() *UpdateGenerationBody { method GetExtraProperties (line 9006) | func (u *UpdateGenerationEvent) GetExtraProperties() map[string]interf... method require (line 9010) | func (u *UpdateGenerationEvent) require(field *big.Int) { method SetID (line 9019) | func (u *UpdateGenerationEvent) SetID(id string) { method SetTimestamp (line 9026) | func (u *UpdateGenerationEvent) SetTimestamp(timestamp string) { method SetMetadata (line 9033) | func (u *UpdateGenerationEvent) SetMetadata(metadata interface{}) { method SetBody (line 9040) | func (u *UpdateGenerationEvent) SetBody(body *UpdateGenerationBody) { method UnmarshalJSON (line 9045) | func (u *UpdateGenerationEvent) UnmarshalJSON(data []byte) error { method MarshalJSON (line 9061) | func (u *UpdateGenerationEvent) MarshalJSON() ([]byte, error) { method String (line 9072) | func (u *UpdateGenerationEvent) String() string { type UpdateObservationEvent (line 9091) | type UpdateObservationEvent struct method GetID (line 9107) | func (u *UpdateObservationEvent) GetID() string { method GetTimestamp (line 9114) | func (u *UpdateObservationEvent) GetTimestamp() string { method GetMetadata (line 9121) | func (u *UpdateObservationEvent) GetMetadata() interface{} { method GetBody (line 9128) | func (u *UpdateObservationEvent) GetBody() *ObservationBody { method GetExtraProperties (line 9135) | func (u *UpdateObservationEvent) GetExtraProperties() map[string]inter... method require (line 9139) | func (u *UpdateObservationEvent) require(field *big.Int) { method SetID (line 9148) | func (u *UpdateObservationEvent) SetID(id string) { method SetTimestamp (line 9155) | func (u *UpdateObservationEvent) SetTimestamp(timestamp string) { method SetMetadata (line 9162) | func (u *UpdateObservationEvent) SetMetadata(metadata interface{}) { method SetBody (line 9169) | func (u *UpdateObservationEvent) SetBody(body *ObservationBody) { method UnmarshalJSON (line 9174) | func (u *UpdateObservationEvent) UnmarshalJSON(data []byte) error { method MarshalJSON (line 9190) | func (u *UpdateObservationEvent) MarshalJSON() ([]byte, error) { method String (line 9201) | func (u *UpdateObservationEvent) String() string { type UpdateSpanBody (line 9229) | type UpdateSpanBody struct method GetTraceID (line 9251) | func (u *UpdateSpanBody) GetTraceID() *string { method GetName (line 9258) | func (u *UpdateSpanBody) GetName() *string { method GetStartTime (line 9265) | func (u *UpdateSpanBody) GetStartTime() *time.Time { method GetMetadata (line 9272) | func (u *UpdateSpanBody) GetMetadata() interface{} { method GetInput (line 9279) | func (u *UpdateSpanBody) GetInput() interface{} { method GetOutput (line 9286) | func (u *UpdateSpanBody) GetOutput() interface{} { method GetLevel (line 9293) | func (u *UpdateSpanBody) GetLevel() *ObservationLevel { method GetStatusMessage (line 9300) | func (u *UpdateSpanBody) GetStatusMessage() *string { method GetParentObservationID (line 9307) | func (u *UpdateSpanBody) GetParentObservationID() *string { method GetVersion (line 9314) | func (u *UpdateSpanBody) GetVersion() *string { method GetEnvironment (line 9321) | func (u *UpdateSpanBody) GetEnvironment() *string { method GetID (line 9328) | func (u *UpdateSpanBody) GetID() string { method GetEndTime (line 9335) | func (u *UpdateSpanBody) GetEndTime() *time.Time { method GetExtraProperties (line 9342) | func (u *UpdateSpanBody) GetExtraProperties() map[string]interface{} { method require (line 9346) | func (u *UpdateSpanBody) require(field *big.Int) { method SetTraceID (line 9355) | func (u *UpdateSpanBody) SetTraceID(traceID *string) { method SetName (line 9362) | func (u *UpdateSpanBody) SetName(name *string) { method SetStartTime (line 9369) | func (u *UpdateSpanBody) SetStartTime(startTime *time.Time) { method SetMetadata (line 9376) | func (u *UpdateSpanBody) SetMetadata(metadata interface{}) { method SetInput (line 9383) | func (u *UpdateSpanBody) SetInput(input interface{}) { method SetOutput (line 9390) | func (u *UpdateSpanBody) SetOutput(output interface{}) { method SetLevel (line 9397) | func (u *UpdateSpanBody) SetLevel(level *ObservationLevel) { method SetStatusMessage (line 9404) | func (u *UpdateSpanBody) SetStatusMessage(statusMessage *string) { method SetParentObservationID (line 9411) | func (u *UpdateSpanBody) SetParentObservationID(parentObservationID *s... method SetVersion (line 9418) | func (u *UpdateSpanBody) SetVersion(version *string) { method SetEnvironment (line 9425) | func (u *UpdateSpanBody) SetEnvironment(environment *string) { method SetID (line 9432) | func (u *UpdateSpanBody) SetID(id string) { method SetEndTime (line 9439) | func (u *UpdateSpanBody) SetEndTime(endTime *time.Time) { method UnmarshalJSON (line 9444) | func (u *UpdateSpanBody) UnmarshalJSON(data []byte) error { method MarshalJSON (line 9468) | func (u *UpdateSpanBody) MarshalJSON() ([]byte, error) { method String (line 9483) | func (u *UpdateSpanBody) String() string { type UpdateSpanEvent (line 9502) | type UpdateSpanEvent struct method GetID (line 9518) | func (u *UpdateSpanEvent) GetID() string { method GetTimestamp (line 9525) | func (u *UpdateSpanEvent) GetTimestamp() string { method GetMetadata (line 9532) | func (u *UpdateSpanEvent) GetMetadata() interface{} { method GetBody (line 9539) | func (u *UpdateSpanEvent) GetBody() *UpdateSpanBody { method GetExtraProperties (line 9546) | func (u *UpdateSpanEvent) GetExtraProperties() map[string]interface{} { method require (line 9550) | func (u *UpdateSpanEvent) require(field *big.Int) { method SetID (line 9559) | func (u *UpdateSpanEvent) SetID(id string) { method SetTimestamp (line 9566) | func (u *UpdateSpanEvent) SetTimestamp(timestamp string) { method SetMetadata (line 9573) | func (u *UpdateSpanEvent) SetMetadata(metadata interface{}) { method SetBody (line 9580) | func (u *UpdateSpanEvent) SetBody(body *UpdateSpanBody) { method UnmarshalJSON (line 9585) | func (u *UpdateSpanEvent) UnmarshalJSON(data []byte) error { method MarshalJSON (line 9601) | func (u *UpdateSpanEvent) MarshalJSON() ([]byte, error) { method String (line 9612) | func (u *UpdateSpanEvent) String() string { type UsageDetails (line 9624) | type UsageDetails struct method GetStringIntegerMap (line 9632) | func (u *UsageDetails) GetStringIntegerMap() map[string]int { method GetOpenAiCompletionUsageSchema (line 9639) | func (u *UsageDetails) GetOpenAiCompletionUsageSchema() *OpenAiComplet... method GetOpenAiResponseUsageSchema (line 9646) | func (u *UsageDetails) GetOpenAiResponseUsageSchema() *OpenAiResponseU... method UnmarshalJSON (line 9653) | func (u *UsageDetails) UnmarshalJSON(data []byte) error { method MarshalJSON (line 9675) | func (u UsageDetails) MarshalJSON() ([]byte, error) { method Accept (line 9694) | func (u *UsageDetails) Accept(visitor UsageDetailsVisitor) error { type UsageDetailsVisitor (line 9688) | type UsageDetailsVisitor interface FILE: backend/pkg/observability/langfuse/api/ingestion/client.go type Client (line 14) | type Client struct method Batch (line 51) | func (c *Client) Batch( function NewClient (line 22) | func NewClient(options *core.RequestOptions) *Client { FILE: backend/pkg/observability/langfuse/api/ingestion/raw_client.go type RawClient (line 15) | type RawClient struct method Batch (line 34) | func (r *RawClient) Batch( function NewRawClient (line 21) | func NewRawClient(options *core.RequestOptions) *RawClient { FILE: backend/pkg/observability/langfuse/api/internal/caller.go constant contentType (line 20) | contentType = "application/json" constant contentTypeHeader (line 21) | contentTypeHeader = "Content-Type" constant contentTypeFormURLEncoded (line 22) | contentTypeFormURLEncoded = "application/x-www-form-urlencoded" type Caller (line 26) | type Caller struct method Call (line 75) | func (c *Caller) Call(ctx context.Context, params *CallParams) (*CallR... type CallerParams (line 32) | type CallerParams struct function NewCaller (line 38) | func NewCaller(params *CallerParams) *Caller { type CallParams (line 54) | type CallParams struct type CallResponse (line 69) | type CallResponse struct function buildURL (line 158) | func buildURL( function newRequest (line 176) | func newRequest( function newRequestBody (line 208) | func newRequestBody(request interface{}, bodyProperties map[string]inter... function newFormURLEncodedBody (line 238) | func newFormURLEncodedBody(bodyProperties map[string]interface{}) io.Rea... function newFormURLEncodedRequestBody (line 248) | func newFormURLEncodedRequestBody(request interface{}, bodyProperties ma... function isZeroValue (line 275) | func isZeroValue(v reflect.Value) bool { function decodeError (line 286) | func decodeError(response *http.Response, errorDecoder ErrorDecoder) err... function isNil (line 311) | func isNil(value interface{}) bool { FILE: backend/pkg/observability/langfuse/api/internal/caller_test.go type InternalTestCase (line 23) | type InternalTestCase struct type InternalTestRequest (line 43) | type InternalTestRequest struct type InternalTestResponse (line 48) | type InternalTestResponse struct type InternalTestNotFoundError (line 55) | type InternalTestNotFoundError struct function TestCall (line 61) | func TestCall(t *testing.T) { function TestMergeHeaders (line 243) | func TestMergeHeaders(t *testing.T) { function newTestServer (line 307) | func newTestServer(t *testing.T, tc *InternalTestCase) *httptest.Server { function TestIsNil (line 377) | func TestIsNil(t *testing.T) { function newTestErrorDecoder (line 452) | func newTestErrorDecoder(t *testing.T) func(int, http.Header, io.Reader)... type FormURLEncodedTestRequest (line 473) | type FormURLEncodedTestRequest struct function TestNewFormURLEncodedBody (line 481) | func TestNewFormURLEncodedBody(t *testing.T) { function TestNewFormURLEncodedRequestBody (line 536) | func TestNewFormURLEncodedRequestBody(t *testing.T) { function TestNewRequestBodyFormURLEncoded (line 637) | func TestNewRequestBodyFormURLEncoded(t *testing.T) { FILE: backend/pkg/observability/langfuse/api/internal/error_decoder.go type ErrorCodes (line 15) | type ErrorCodes type ErrorDecoder (line 19) | type ErrorDecoder function NewErrorDecoder (line 24) | func NewErrorDecoder(errorCodes ErrorCodes, errorCodesOverrides ...Error... FILE: backend/pkg/observability/langfuse/api/internal/error_decoder_test.go function TestErrorDecoder (line 13) | func TestErrorDecoder(t *testing.T) { FILE: backend/pkg/observability/langfuse/api/internal/explicit_fields.go function HandleExplicitFields (line 13) | func HandleExplicitFields(marshaler interface{}, explicitFields *big.Int... FILE: backend/pkg/observability/langfuse/api/internal/explicit_fields_test.go type testExplicitFieldsStruct (line 12) | type testExplicitFieldsStruct struct method require (line 31) | func (t *testExplicitFieldsStruct) require(field *big.Int) { method SetName (line 38) | func (t *testExplicitFieldsStruct) SetName(name *string) { method SetCode (line 43) | func (t *testExplicitFieldsStruct) SetCode(code *string) { method SetCount (line 48) | func (t *testExplicitFieldsStruct) SetCount(count *int) { method SetEnabled (line 53) | func (t *testExplicitFieldsStruct) SetEnabled(enabled *bool) { method SetTags (line 58) | func (t *testExplicitFieldsStruct) SetTags(tags []string) { method MarshalJSON (line 63) | func (t *testExplicitFieldsStruct) MarshalJSON() ([]byte, error) { type testStructWithoutExplicitFields (line 73) | type testStructWithoutExplicitFields struct function TestHandleExplicitFields (line 78) | func TestHandleExplicitFields(t *testing.T) { function TestHandleExplicitFieldsCustomMarshaler (line 223) | func TestHandleExplicitFieldsCustomMarshaler(t *testing.T) { function TestHandleExplicitFieldsPointerHandling (line 246) | func TestHandleExplicitFieldsPointerHandling(t *testing.T) { function TestHandleExplicitFieldsEmbeddedStruct (line 264) | func TestHandleExplicitFieldsEmbeddedStruct(t *testing.T) { function TestHandleExplicitFieldsTagHandling (line 324) | func TestHandleExplicitFieldsTagHandling(t *testing.T) { type testNestedStruct (line 347) | type testNestedStruct struct method require (line 369) | func (n *testNestedStruct) require(field *big.Int) { method SetNestedName (line 376) | func (n *testNestedStruct) SetNestedName(name *string) { method SetNestedCode (line 381) | func (n *testNestedStruct) SetNestedCode(code *string) { method MarshalJSON (line 386) | func (n *testNestedStruct) MarshalJSON() ([]byte, error) { type testParentStruct (line 353) | type testParentStruct struct method require (line 396) | func (p *testParentStruct) require(field *big.Int) { method SetParentName (line 403) | func (p *testParentStruct) SetParentName(name *string) { method SetNested (line 408) | func (p *testParentStruct) SetNested(nested *testNestedStruct) { method MarshalJSON (line 413) | func (p *testParentStruct) MarshalJSON() ([]byte, error) { function TestHandleExplicitFieldsNestedStruct (line 423) | func TestHandleExplicitFieldsNestedStruct(t *testing.T) { function stringPtr (line 487) | func stringPtr(s string) *string { function intPtr (line 491) | func intPtr(i int) *int { function boolPtr (line 495) | func boolPtr(b bool) *bool { FILE: backend/pkg/observability/langfuse/api/internal/extra_properties.go function MarshalJSONWithExtraProperty (line 12) | func MarshalJSONWithExtraProperty(marshaler interface{}, key string, val... function MarshalJSONWithExtraProperties (line 17) | func MarshalJSONWithExtraProperties(marshaler interface{}, extraProperti... function ExtractExtraProperties (line 52) | func ExtractExtraProperties(bytes []byte, value interface{}, exclude ...... function getKeys (line 85) | func getKeys(value interface{}) ([]string, error) { function getKeysForStructType (line 112) | func getKeysForStructType(structType reflect.Type) []string { function jsonKey (line 133) | func jsonKey(field reflect.StructField) string { function isEmptyJSON (line 139) | func isEmptyJSON(data []byte) bool { FILE: backend/pkg/observability/langfuse/api/internal/extra_properties_test.go type testMarshaler (line 12) | type testMarshaler struct method MarshalJSON (line 18) | func (t *testMarshaler) MarshalJSON() ([]byte, error) { function TestMarshalJSONWithExtraProperties (line 32) | func TestMarshalJSONWithExtraProperties(t *testing.T) { function TestExtractExtraProperties (line 161) | func TestExtractExtraProperties(t *testing.T) { FILE: backend/pkg/observability/langfuse/api/internal/http.go type HTTPClient (line 11) | type HTTPClient interface function ResolveBaseURL (line 17) | func ResolveBaseURL(values ...string) string { function EncodeURL (line 28) | func EncodeURL(urlFormat string, args ...interface{}) string { function dereferenceArg (line 40) | func dereferenceArg(arg interface{}) interface{} { function MergeHeaders (line 60) | func MergeHeaders(left, right http.Header) http.Header { FILE: backend/pkg/observability/langfuse/api/internal/query.go type QueryEncoder (line 23) | type QueryEncoder interface function prepareValue (line 28) | func prepareValue(v interface{}) (reflect.Value, url.Values, error) { function QueryValues (line 60) | func QueryValues(v interface{}) (url.Values, error) { function QueryValuesWithDefaults (line 68) | func QueryValuesWithDefaults(v interface{}, defaults map[string]interfac... function reflectValue (line 111) | func reflectValue(values url.Values, val reflect.Value, scope string) er... function reflectMap (line 205) | func reflectMap(values url.Values, val reflect.Value, scope string) error { function valueString (line 267) | func valueString(v reflect.Value, opts tagOptions, sf reflect.StructFiel... function isEmptyValue (line 298) | func isEmptyValue(v reflect.Value) bool { function isStructPointer (line 330) | func isStructPointer(v reflect.Value) bool { type tagOptions (line 336) | type tagOptions method Contains (line 346) | func (o tagOptions) Contains(option string) bool { function parseTag (line 340) | func parseTag(tag string) (string, tagOptions) { FILE: backend/pkg/observability/langfuse/api/internal/query_test.go function TestQueryValues (line 11) | func TestQueryValues(t *testing.T) { function TestQueryValuesWithDefaults (line 241) | func TestQueryValuesWithDefaults(t *testing.T) { FILE: backend/pkg/observability/langfuse/api/internal/retrier.go constant defaultRetryAttempts (line 12) | defaultRetryAttempts = 2 constant minRetryDelay (line 13) | minRetryDelay = 1000 * time.Millisecond constant maxRetryDelay (line 14) | maxRetryDelay = 60000 * time.Millisecond type RetryOption (line 18) | type RetryOption type RetryFunc (line 21) | type RetryFunc function WithMaxAttempts (line 25) | func WithMaxAttempts(attempts uint) RetryOption { type Retrier (line 33) | type Retrier struct method Run (line 56) | func (r *Retrier) Run( method run (line 84) | func (r *Retrier) run( method shouldRetry (line 140) | func (r *Retrier) shouldRetry(response *http.Response) bool { method retryDelay (line 148) | func (r *Retrier) retryDelay(response *http.Response, retryAttempt uin... method exponentialBackoff (line 195) | func (r *Retrier) exponentialBackoff(retryAttempt uint) (time.Duration... method addJitterWithRange (line 210) | func (r *Retrier) addJitterWithRange(delay time.Duration, minPercent, ... method addPositiveJitter (line 228) | func (r *Retrier) addPositiveJitter(delay time.Duration) (time.Duratio... method addSymmetricJitter (line 233) | func (r *Retrier) addSymmetricJitter(delay time.Duration) (time.Durati... function NewRetrier (line 38) | func NewRetrier(opts ...RetryOption) *Retrier { type retryOptions (line 237) | type retryOptions struct FILE: backend/pkg/observability/langfuse/api/internal/retrier_test.go type RetryTestCase (line 18) | type RetryTestCase struct function TestRetrier (line 29) | func TestRetrier(t *testing.T) { function newTestRetryServer (line 139) | func newTestRetryServer(t *testing.T, tc *RetryTestCase) *httptest.Server { function TestRetryWithRequestBody (line 213) | func TestRetryWithRequestBody(t *testing.T) { function TestRetryDelayTiming (line 265) | func TestRetryDelayTiming(t *testing.T) { FILE: backend/pkg/observability/langfuse/api/internal/stringer.go function StringifyJSON (line 7) | func StringifyJSON(value interface{}) (string, error) { FILE: backend/pkg/observability/langfuse/api/internal/time.go constant dateFormat (line 8) | dateFormat = "2006-01-02" type Date (line 14) | type Date struct method Time (line 35) | func (d *Date) Time() time.Time { method TimePtr (line 43) | func (d *Date) TimePtr() *time.Time { method MarshalJSON (line 53) | func (d *Date) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 60) | func (d *Date) UnmarshalJSON(data []byte) error { function NewDate (line 20) | func NewDate(t time.Time) *Date { function NewOptionalDate (line 26) | func NewOptionalDate(t *time.Time) *Date { type DateTime (line 79) | type DateTime struct method Time (line 99) | func (d *DateTime) Time() time.Time { method TimePtr (line 107) | func (d *DateTime) TimePtr() *time.Time { method MarshalJSON (line 117) | func (d *DateTime) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 124) | func (d *DateTime) UnmarshalJSON(data []byte) error { function NewDateTime (line 84) | func NewDateTime(t time.Time) *DateTime { function NewOptionalDateTime (line 90) | func NewOptionalDateTime(t *time.Time) *DateTime { FILE: backend/pkg/observability/langfuse/api/llmconnections.go type LlmConnectionsListRequest (line 18) | type LlmConnectionsListRequest struct method require (line 28) | func (l *LlmConnectionsListRequest) require(field *big.Int) { method SetPage (line 37) | func (l *LlmConnectionsListRequest) SetPage(page *int) { method SetLimit (line 44) | func (l *LlmConnectionsListRequest) SetLimit(limit *int) { type LlmAdapter (line 49) | type LlmAdapter method Ptr (line 79) | func (l LlmAdapter) Ptr() *LlmAdapter { constant LlmAdapterAnthropic (line 52) | LlmAdapterAnthropic LlmAdapter = "anthropic" constant LlmAdapterOpenai (line 53) | LlmAdapterOpenai LlmAdapter = "openai" constant LlmAdapterAzure (line 54) | LlmAdapterAzure LlmAdapter = "azure" constant LlmAdapterBedrock (line 55) | LlmAdapterBedrock LlmAdapter = "bedrock" constant LlmAdapterGoogleVertexAi (line 56) | LlmAdapterGoogleVertexAi LlmAdapter = "google-vertex-ai" constant LlmAdapterGoogleAiStudio (line 57) | LlmAdapterGoogleAiStudio LlmAdapter = "google-ai-studio" function NewLlmAdapterFromString (line 60) | func NewLlmAdapterFromString(s string) (LlmAdapter, error) { type LlmConnection (line 98) | type LlmConnection struct method GetID (line 126) | func (l *LlmConnection) GetID() string { method GetProvider (line 133) | func (l *LlmConnection) GetProvider() string { method GetAdapter (line 140) | func (l *LlmConnection) GetAdapter() string { method GetDisplaySecretKey (line 147) | func (l *LlmConnection) GetDisplaySecretKey() string { method GetBaseURL (line 154) | func (l *LlmConnection) GetBaseURL() *string { method GetCustomModels (line 161) | func (l *LlmConnection) GetCustomModels() []string { method GetWithDefaultModels (line 168) | func (l *LlmConnection) GetWithDefaultModels() bool { method GetExtraHeaderKeys (line 175) | func (l *LlmConnection) GetExtraHeaderKeys() []string { method GetConfig (line 182) | func (l *LlmConnection) GetConfig() map[string]interface{} { method GetCreatedAt (line 189) | func (l *LlmConnection) GetCreatedAt() time.Time { method GetUpdatedAt (line 196) | func (l *LlmConnection) GetUpdatedAt() time.Time { method GetExtraProperties (line 203) | func (l *LlmConnection) GetExtraProperties() map[string]interface{} { method require (line 207) | func (l *LlmConnection) require(field *big.Int) { method SetID (line 216) | func (l *LlmConnection) SetID(id string) { method SetProvider (line 223) | func (l *LlmConnection) SetProvider(provider string) { method SetAdapter (line 230) | func (l *LlmConnection) SetAdapter(adapter string) { method SetDisplaySecretKey (line 237) | func (l *LlmConnection) SetDisplaySecretKey(displaySecretKey string) { method SetBaseURL (line 244) | func (l *LlmConnection) SetBaseURL(baseURL *string) { method SetCustomModels (line 251) | func (l *LlmConnection) SetCustomModels(customModels []string) { method SetWithDefaultModels (line 258) | func (l *LlmConnection) SetWithDefaultModels(withDefaultModels bool) { method SetExtraHeaderKeys (line 265) | func (l *LlmConnection) SetExtraHeaderKeys(extraHeaderKeys []string) { method SetConfig (line 272) | func (l *LlmConnection) SetConfig(config map[string]interface{}) { method SetCreatedAt (line 279) | func (l *LlmConnection) SetCreatedAt(createdAt time.Time) { method SetUpdatedAt (line 286) | func (l *LlmConnection) SetUpdatedAt(updatedAt time.Time) { method UnmarshalJSON (line 291) | func (l *LlmConnection) UnmarshalJSON(data []byte) error { method MarshalJSON (line 315) | func (l *LlmConnection) MarshalJSON() ([]byte, error) { method String (line 330) | func (l *LlmConnection) String() string { type PaginatedLlmConnections (line 347) | type PaginatedLlmConnections struct method GetData (line 358) | func (p *PaginatedLlmConnections) GetData() []*LlmConnection { method GetMeta (line 365) | func (p *PaginatedLlmConnections) GetMeta() *UtilsMetaResponse { method GetExtraProperties (line 372) | func (p *PaginatedLlmConnections) GetExtraProperties() map[string]inte... method require (line 376) | func (p *PaginatedLlmConnections) require(field *big.Int) { method SetData (line 385) | func (p *PaginatedLlmConnections) SetData(data []*LlmConnection) { method SetMeta (line 392) | func (p *PaginatedLlmConnections) SetMeta(meta *UtilsMetaResponse) { method UnmarshalJSON (line 397) | func (p *PaginatedLlmConnections) UnmarshalJSON(data []byte) error { method MarshalJSON (line 413) | func (p *PaginatedLlmConnections) MarshalJSON() ([]byte, error) { method String (line 424) | func (p *PaginatedLlmConnections) String() string { type UpsertLlmConnectionRequest (line 447) | type UpsertLlmConnectionRequest struct method require (line 469) | func (u *UpsertLlmConnectionRequest) require(field *big.Int) { method SetProvider (line 478) | func (u *UpsertLlmConnectionRequest) SetProvider(provider string) { method SetAdapter (line 485) | func (u *UpsertLlmConnectionRequest) SetAdapter(adapter LlmAdapter) { method SetSecretKey (line 492) | func (u *UpsertLlmConnectionRequest) SetSecretKey(secretKey string) { method SetBaseURL (line 499) | func (u *UpsertLlmConnectionRequest) SetBaseURL(baseURL *string) { method SetCustomModels (line 506) | func (u *UpsertLlmConnectionRequest) SetCustomModels(customModels []st... method SetWithDefaultModels (line 513) | func (u *UpsertLlmConnectionRequest) SetWithDefaultModels(withDefaultM... method SetExtraHeaders (line 520) | func (u *UpsertLlmConnectionRequest) SetExtraHeaders(extraHeaders map[... method SetConfig (line 527) | func (u *UpsertLlmConnectionRequest) SetConfig(config map[string]inter... method UnmarshalJSON (line 532) | func (u *UpsertLlmConnectionRequest) UnmarshalJSON(data []byte) error { method MarshalJSON (line 542) | func (u *UpsertLlmConnectionRequest) MarshalJSON() ([]byte, error) { FILE: backend/pkg/observability/langfuse/api/llmconnections/client.go type Client (line 14) | type Client struct method List (line 37) | func (c *Client) List( method Upsert (line 54) | func (c *Client) Upsert( function NewClient (line 22) | func NewClient(options *core.RequestOptions) *Client { FILE: backend/pkg/observability/langfuse/api/llmconnections/raw_client.go type RawClient (line 15) | type RawClient struct method List (line 34) | func (r *RawClient) List( method Upsert (line 82) | func (r *RawClient) Upsert( function NewRawClient (line 21) | func NewRawClient(options *core.RequestOptions) *RawClient { FILE: backend/pkg/observability/langfuse/api/media.go type MediaGetRequest (line 17) | type MediaGetRequest struct method require (line 25) | func (m *MediaGetRequest) require(field *big.Int) { method SetMediaID (line 34) | func (m *MediaGetRequest) SetMediaID(mediaID string) { type GetMediaUploadURLRequest (line 48) | type GetMediaUploadURLRequest struct method require (line 65) | func (g *GetMediaUploadURLRequest) require(field *big.Int) { method SetTraceID (line 74) | func (g *GetMediaUploadURLRequest) SetTraceID(traceID string) { method SetObservationID (line 81) | func (g *GetMediaUploadURLRequest) SetObservationID(observationID *str... method SetContentType (line 88) | func (g *GetMediaUploadURLRequest) SetContentType(contentType MediaCon... method SetContentLength (line 95) | func (g *GetMediaUploadURLRequest) SetContentLength(contentLength int) { method SetSha256Hash (line 102) | func (g *GetMediaUploadURLRequest) SetSha256Hash(sha256Hash string) { method SetField (line 109) | func (g *GetMediaUploadURLRequest) SetField(field string) { method UnmarshalJSON (line 114) | func (g *GetMediaUploadURLRequest) UnmarshalJSON(data []byte) error { method MarshalJSON (line 124) | func (g *GetMediaUploadURLRequest) MarshalJSON() ([]byte, error) { type PatchMediaBody (line 143) | type PatchMediaBody struct method require (line 159) | func (p *PatchMediaBody) require(field *big.Int) { method SetMediaID (line 168) | func (p *PatchMediaBody) SetMediaID(mediaID string) { method SetUploadedAt (line 175) | func (p *PatchMediaBody) SetUploadedAt(uploadedAt time.Time) { method SetUploadHTTPStatus (line 182) | func (p *PatchMediaBody) SetUploadHTTPStatus(uploadHTTPStatus int) { method SetUploadHTTPError (line 189) | func (p *PatchMediaBody) SetUploadHTTPError(uploadHTTPError *string) { method SetUploadTimeMs (line 196) | func (p *PatchMediaBody) SetUploadTimeMs(uploadTimeMs *int) { method UnmarshalJSON (line 201) | func (p *PatchMediaBody) UnmarshalJSON(data []byte) error { method MarshalJSON (line 211) | func (p *PatchMediaBody) MarshalJSON() ([]byte, error) { type GetMediaResponse (line 233) | type GetMediaResponse struct method GetMediaID (line 254) | func (g *GetMediaResponse) GetMediaID() string { method GetContentType (line 261) | func (g *GetMediaResponse) GetContentType() string { method GetContentLength (line 268) | func (g *GetMediaResponse) GetContentLength() int { method GetUploadedAt (line 275) | func (g *GetMediaResponse) GetUploadedAt() time.Time { method GetURL (line 282) | func (g *GetMediaResponse) GetURL() string { method GetURLExpiry (line 289) | func (g *GetMediaResponse) GetURLExpiry() string { method GetExtraProperties (line 296) | func (g *GetMediaResponse) GetExtraProperties() map[string]interface{} { method require (line 300) | func (g *GetMediaResponse) require(field *big.Int) { method SetMediaID (line 309) | func (g *GetMediaResponse) SetMediaID(mediaID string) { method SetContentType (line 316) | func (g *GetMediaResponse) SetContentType(contentType string) { method SetContentLength (line 323) | func (g *GetMediaResponse) SetContentLength(contentLength int) { method SetUploadedAt (line 330) | func (g *GetMediaResponse) SetUploadedAt(uploadedAt time.Time) { method SetURL (line 337) | func (g *GetMediaResponse) SetURL(url string) { method SetURLExpiry (line 344) | func (g *GetMediaResponse) SetURLExpiry(urlExpiry string) { method UnmarshalJSON (line 349) | func (g *GetMediaResponse) UnmarshalJSON(data []byte) error { method MarshalJSON (line 371) | func (g *GetMediaResponse) MarshalJSON() ([]byte, error) { method String (line 384) | func (g *GetMediaResponse) String() string { type GetMediaUploadURLResponse (line 401) | type GetMediaUploadURLResponse struct method GetUploadURL (line 414) | func (g *GetMediaUploadURLResponse) GetUploadURL() *string { method GetMediaID (line 421) | func (g *GetMediaUploadURLResponse) GetMediaID() string { method GetExtraProperties (line 428) | func (g *GetMediaUploadURLResponse) GetExtraProperties() map[string]in... method require (line 432) | func (g *GetMediaUploadURLResponse) require(field *big.Int) { method SetUploadURL (line 441) | func (g *GetMediaUploadURLResponse) SetUploadURL(uploadURL *string) { method SetMediaID (line 448) | func (g *GetMediaUploadURLResponse) SetMediaID(mediaID string) { method UnmarshalJSON (line 453) | func (g *GetMediaUploadURLResponse) UnmarshalJSON(data []byte) error { method MarshalJSON (line 469) | func (g *GetMediaUploadURLResponse) MarshalJSON() ([]byte, error) { method String (line 480) | func (g *GetMediaUploadURLResponse) String() string { type MediaContentType (line 493) | type MediaContentType method Ptr (line 661) | func (m MediaContentType) Ptr() *MediaContentType { constant MediaContentTypeImagePng (line 496) | MediaContentTypeImagePng ... constant MediaContentTypeImageJpeg (line 497) | MediaContentTypeImageJpeg ... constant MediaContentTypeImageJpg (line 498) | MediaContentTypeImageJpg ... constant MediaContentTypeImageWebp (line 499) | MediaContentTypeImageWebp ... constant MediaContentTypeImageGif (line 500) | MediaContentTypeImageGif ... constant MediaContentTypeImageSvgXML (line 501) | MediaContentTypeImageSvgXML ... constant MediaContentTypeImageTiff (line 502) | MediaContentTypeImageTiff ... constant MediaContentTypeImageBmp (line 503) | MediaContentTypeImageBmp ... constant MediaContentTypeImageAvif (line 504) | MediaContentTypeImageAvif ... constant MediaContentTypeImageHeic (line 505) | MediaContentTypeImageHeic ... constant MediaContentTypeAudioMpeg (line 506) | MediaContentTypeAudioMpeg ... constant MediaContentTypeAudioMp3 (line 507) | MediaContentTypeAudioMp3 ... constant MediaContentTypeAudioWav (line 508) | MediaContentTypeAudioWav ... constant MediaContentTypeAudioOgg (line 509) | MediaContentTypeAudioOgg ... constant MediaContentTypeAudioOga (line 510) | MediaContentTypeAudioOga ... constant MediaContentTypeAudioAac (line 511) | MediaContentTypeAudioAac ... constant MediaContentTypeAudioMp4 (line 512) | MediaContentTypeAudioMp4 ... constant MediaContentTypeAudioFlac (line 513) | MediaContentTypeAudioFlac ... constant MediaContentTypeAudioOpus (line 514) | MediaContentTypeAudioOpus ... constant MediaContentTypeAudioWebm (line 515) | MediaContentTypeAudioWebm ... constant MediaContentTypeVideoMp4 (line 516) | MediaContentTypeVideoMp4 ... constant MediaContentTypeVideoWebm (line 517) | MediaContentTypeVideoWebm ... constant MediaContentTypeVideoOgg (line 518) | MediaContentTypeVideoOgg ... constant MediaContentTypeVideoMpeg (line 519) | MediaContentTypeVideoMpeg ... constant MediaContentTypeVideoQuicktime (line 520) | MediaContentTypeVideoQuicktime ... constant MediaContentTypeVideoXMsvideo (line 521) | MediaContentTypeVideoXMsvideo ... constant MediaContentTypeVideoXMatroska (line 522) | MediaContentTypeVideoXMatroska ... constant MediaContentTypeTextPlain (line 523) | MediaContentTypeTextPlain ... constant MediaContentTypeTextHTML (line 524) | MediaContentTypeTextHTML ... constant MediaContentTypeTextCSS (line 525) | MediaContentTypeTextCSS ... constant MediaContentTypeTextCsv (line 526) | MediaContentTypeTextCsv ... constant MediaContentTypeTextMarkdown (line 527) | MediaContentTypeTextMarkdown ... constant MediaContentTypeTextXPython (line 528) | MediaContentTypeTextXPython ... constant MediaContentTypeApplicationJavascript (line 529) | MediaContentTypeApplicationJavascript ... constant MediaContentTypeTextXTypescript (line 530) | MediaContentTypeTextXTypescript ... constant MediaContentTypeApplicationXYaml (line 531) | MediaContentTypeApplicationXYaml ... constant MediaContentTypeApplicationPdf (line 532) | MediaContentTypeApplicationPdf ... constant MediaContentTypeApplicationMsword (line 533) | MediaContentTypeApplicationMsword ... constant MediaContentTypeApplicationVndMsExcel (line 534) | MediaContentTypeApplicationVndMsExcel ... constant MediaContentTypeApplicationVndOpenxmlformatsOfficedocumentSpreadsheetmlSheet (line 535) | MediaContentTypeApplicationVndOpenxmlformatsOfficedocumentSpreadsheetmlS... constant MediaContentTypeApplicationZip (line 536) | MediaContentTypeApplicationZip ... constant MediaContentTypeApplicationJSON (line 537) | MediaContentTypeApplicationJSON ... constant MediaContentTypeApplicationXML (line 538) | MediaContentTypeApplicationXML ... constant MediaContentTypeApplicationOctetStream (line 539) | MediaContentTypeApplicationOctetStream ... constant MediaContentTypeApplicationVndOpenxmlformatsOfficedocumentWordprocessingmlDocument (line 540) | MediaContentTypeApplicationVndOpenxmlformatsOfficedocumentWordprocessing... constant MediaContentTypeApplicationVndOpenxmlformatsOfficedocumentPresentationmlPresentation (line 541) | MediaContentTypeApplicationVndOpenxmlformatsOfficedocumentPresentationml... constant MediaContentTypeApplicationRtf (line 542) | MediaContentTypeApplicationRtf ... constant MediaContentTypeApplicationXNdjson (line 543) | MediaContentTypeApplicationXNdjson ... constant MediaContentTypeApplicationVndApacheParquet (line 544) | MediaContentTypeApplicationVndApacheParquet ... constant MediaContentTypeApplicationGzip (line 545) | MediaContentTypeApplicationGzip ... constant MediaContentTypeApplicationXTar (line 546) | MediaContentTypeApplicationXTar ... constant MediaContentTypeApplicationX7ZCompressed (line 547) | MediaContentTypeApplicationX7ZCompressed ... function NewMediaContentTypeFromString (line 550) | func NewMediaContentTypeFromString(s string) (MediaContentType, error) { FILE: backend/pkg/observability/langfuse/api/media/client.go type Client (line 14) | type Client struct method Get (line 37) | func (c *Client) Get( method Patch (line 54) | func (c *Client) Patch( method Getuploadurl (line 71) | func (c *Client) Getuploadurl( function NewClient (line 22) | func NewClient(options *core.RequestOptions) *Client { FILE: backend/pkg/observability/langfuse/api/media/raw_client.go type RawClient (line 15) | type RawClient struct method Get (line 34) | func (r *RawClient) Get( method Patch (line 78) | func (r *RawClient) Patch( method Getuploadurl (line 122) | func (r *RawClient) Getuploadurl( function NewRawClient (line 21) | func NewRawClient(options *core.RequestOptions) *RawClient { FILE: backend/pkg/observability/langfuse/api/metrics.go type MetricsMetricsRequest (line 16) | type MetricsMetricsRequest struct method require (line 66) | func (m *MetricsMetricsRequest) require(field *big.Int) { method SetQuery (line 75) | func (m *MetricsMetricsRequest) SetQuery(query string) { type MetricsResponse (line 84) | type MetricsResponse struct method GetData (line 97) | func (m *MetricsResponse) GetData() []map[string]interface{} { method GetExtraProperties (line 104) | func (m *MetricsResponse) GetExtraProperties() map[string]interface{} { method require (line 108) | func (m *MetricsResponse) require(field *big.Int) { method SetData (line 117) | func (m *MetricsResponse) SetData(data []map[string]interface{}) { method UnmarshalJSON (line 122) | func (m *MetricsResponse) UnmarshalJSON(data []byte) error { method MarshalJSON (line 138) | func (m *MetricsResponse) MarshalJSON() ([]byte, error) { method String (line 149) | func (m *MetricsResponse) String() string { FILE: backend/pkg/observability/langfuse/api/metrics/client.go type Client (line 14) | type Client struct method Metrics (line 41) | func (c *Client) Metrics( function NewClient (line 22) | func NewClient(options *core.RequestOptions) *Client { FILE: backend/pkg/observability/langfuse/api/metrics/raw_client.go type RawClient (line 15) | type RawClient struct method Metrics (line 34) | func (r *RawClient) Metrics( function NewRawClient (line 21) | func NewRawClient(options *core.RequestOptions) *RawClient { FILE: backend/pkg/observability/langfuse/api/metricsv2.go type MetricsV2MetricsRequest (line 16) | type MetricsV2MetricsRequest struct method require (line 74) | func (m *MetricsV2MetricsRequest) require(field *big.Int) { method SetQuery (line 83) | func (m *MetricsV2MetricsRequest) SetQuery(query string) { type MetricsV2Response (line 92) | type MetricsV2Response struct method GetData (line 105) | func (m *MetricsV2Response) GetData() []map[string]interface{} { method GetExtraProperties (line 112) | func (m *MetricsV2Response) GetExtraProperties() map[string]interface{} { method require (line 116) | func (m *MetricsV2Response) require(field *big.Int) { method SetData (line 125) | func (m *MetricsV2Response) SetData(data []map[string]interface{}) { method UnmarshalJSON (line 130) | func (m *MetricsV2Response) UnmarshalJSON(data []byte) error { method MarshalJSON (line 146) | func (m *MetricsV2Response) MarshalJSON() ([]byte, error) { method String (line 157) | func (m *MetricsV2Response) String() string { FILE: backend/pkg/observability/langfuse/api/metricsv2/client.go type Client (line 14) | type Client struct method Metrics (line 137) | func (c *Client) Metrics( function NewClient (line 22) | func NewClient(options *core.RequestOptions) *Client { FILE: backend/pkg/observability/langfuse/api/metricsv2/raw_client.go type RawClient (line 15) | type RawClient struct method Metrics (line 34) | func (r *RawClient) Metrics( function NewRawClient (line 21) | func NewRawClient(options *core.RequestOptions) *RawClient { FILE: backend/pkg/observability/langfuse/api/models.go type CreateModelRequest (line 26) | type CreateModelRequest struct method require (line 69) | func (c *CreateModelRequest) require(field *big.Int) { method SetModelName (line 78) | func (c *CreateModelRequest) SetModelName(modelName string) { method SetMatchPattern (line 85) | func (c *CreateModelRequest) SetMatchPattern(matchPattern string) { method SetStartDate (line 92) | func (c *CreateModelRequest) SetStartDate(startDate *time.Time) { method SetUnit (line 99) | func (c *CreateModelRequest) SetUnit(unit *ModelUsageUnit) { method SetInputPrice (line 106) | func (c *CreateModelRequest) SetInputPrice(inputPrice *float64) { method SetOutputPrice (line 113) | func (c *CreateModelRequest) SetOutputPrice(outputPrice *float64) { method SetTotalPrice (line 120) | func (c *CreateModelRequest) SetTotalPrice(totalPrice *float64) { method SetPricingTiers (line 127) | func (c *CreateModelRequest) SetPricingTiers(pricingTiers []*PricingTi... method SetTokenizerID (line 134) | func (c *CreateModelRequest) SetTokenizerID(tokenizerID *string) { method SetTokenizerConfig (line 141) | func (c *CreateModelRequest) SetTokenizerConfig(tokenizerConfig interf... method UnmarshalJSON (line 146) | func (c *CreateModelRequest) UnmarshalJSON(data []byte) error { method MarshalJSON (line 156) | func (c *CreateModelRequest) MarshalJSON() ([]byte, error) { type ModelsDeleteRequest (line 173) | type ModelsDeleteRequest struct method require (line 180) | func (m *ModelsDeleteRequest) require(field *big.Int) { method SetID (line 189) | func (m *ModelsDeleteRequest) SetID(id string) { type ModelsGetRequest (line 198) | type ModelsGetRequest struct method require (line 205) | func (m *ModelsGetRequest) require(field *big.Int) { method SetID (line 214) | func (m *ModelsGetRequest) SetID(id string) { type ModelsListRequest (line 224) | type ModelsListRequest struct method require (line 234) | func (m *ModelsListRequest) require(field *big.Int) { method SetPage (line 243) | func (m *ModelsListRequest) SetPage(page *int) { method SetLimit (line 250) | func (m *ModelsListRequest) SetLimit(limit *int) { type Model (line 281) | type Model struct method GetID (line 326) | func (m *Model) GetID() string { method GetModelName (line 333) | func (m *Model) GetModelName() string { method GetMatchPattern (line 340) | func (m *Model) GetMatchPattern() string { method GetStartDate (line 347) | func (m *Model) GetStartDate() *time.Time { method GetUnit (line 354) | func (m *Model) GetUnit() *ModelUsageUnit { method GetInputPrice (line 361) | func (m *Model) GetInputPrice() *float64 { method GetOutputPrice (line 368) | func (m *Model) GetOutputPrice() *float64 { method GetTotalPrice (line 375) | func (m *Model) GetTotalPrice() *float64 { method GetTokenizerID (line 382) | func (m *Model) GetTokenizerID() *string { method GetTokenizerConfig (line 389) | func (m *Model) GetTokenizerConfig() interface{} { method GetIsLangfuseManaged (line 396) | func (m *Model) GetIsLangfuseManaged() bool { method GetCreatedAt (line 403) | func (m *Model) GetCreatedAt() time.Time { method GetPrices (line 410) | func (m *Model) GetPrices() map[string]*ModelPrice { method GetPricingTiers (line 417) | func (m *Model) GetPricingTiers() []*PricingTier { method GetExtraProperties (line 424) | func (m *Model) GetExtraProperties() map[string]interface{} { method require (line 428) | func (m *Model) require(field *big.Int) { method SetID (line 437) | func (m *Model) SetID(id string) { method SetModelName (line 444) | func (m *Model) SetModelName(modelName string) { method SetMatchPattern (line 451) | func (m *Model) SetMatchPattern(matchPattern string) { method SetStartDate (line 458) | func (m *Model) SetStartDate(startDate *time.Time) { method SetUnit (line 465) | func (m *Model) SetUnit(unit *ModelUsageUnit) { method SetInputPrice (line 472) | func (m *Model) SetInputPrice(inputPrice *float64) { method SetOutputPrice (line 479) | func (m *Model) SetOutputPrice(outputPrice *float64) { method SetTotalPrice (line 486) | func (m *Model) SetTotalPrice(totalPrice *float64) { method SetTokenizerID (line 493) | func (m *Model) SetTokenizerID(tokenizerID *string) { method SetTokenizerConfig (line 500) | func (m *Model) SetTokenizerConfig(tokenizerConfig interface{}) { method SetIsLangfuseManaged (line 507) | func (m *Model) SetIsLangfuseManaged(isLangfuseManaged bool) { method SetCreatedAt (line 514) | func (m *Model) SetCreatedAt(createdAt time.Time) { method SetPrices (line 521) | func (m *Model) SetPrices(prices map[string]*ModelPrice) { method SetPricingTiers (line 528) | func (m *Model) SetPricingTiers(pricingTiers []*PricingTier) { method UnmarshalJSON (line 533) | func (m *Model) UnmarshalJSON(data []byte) error { method MarshalJSON (line 557) | func (m *Model) MarshalJSON() ([]byte, error) { method String (line 572) | func (m *Model) String() string { type ModelPrice (line 588) | type ModelPrice struct method GetPrice (line 598) | func (m *ModelPrice) GetPrice() float64 { method GetExtraProperties (line 605) | func (m *ModelPrice) GetExtraProperties() map[string]interface{} { method require (line 609) | func (m *ModelPrice) require(field *big.Int) { method SetPrice (line 618) | func (m *ModelPrice) SetPrice(price float64) { method UnmarshalJSON (line 623) | func (m *ModelPrice) UnmarshalJSON(data []byte) error { method MarshalJSON (line 639) | func (m *ModelPrice) MarshalJSON() ([]byte, error) { method String (line 650) | func (m *ModelPrice) String() string { type ModelUsageUnit (line 663) | type ModelUsageUnit method Ptr (line 693) | func (m ModelUsageUnit) Ptr() *ModelUsageUnit { constant ModelUsageUnitCharacters (line 666) | ModelUsageUnitCharacters ModelUsageUnit = "CHARACTERS" constant ModelUsageUnitTokens (line 667) | ModelUsageUnitTokens ModelUsageUnit = "TOKENS" constant ModelUsageUnitMilliseconds (line 668) | ModelUsageUnitMilliseconds ModelUsageUnit = "MILLISECONDS" constant ModelUsageUnitSeconds (line 669) | ModelUsageUnitSeconds ModelUsageUnit = "SECONDS" constant ModelUsageUnitImages (line 670) | ModelUsageUnitImages ModelUsageUnit = "IMAGES" constant ModelUsageUnitRequests (line 671) | ModelUsageUnitRequests ModelUsageUnit = "REQUESTS" function NewModelUsageUnitFromString (line 674) | func NewModelUsageUnitFromString(s string) (ModelUsageUnit, error) { type PaginatedModels (line 702) | type PaginatedModels struct method GetData (line 713) | func (p *PaginatedModels) GetData() []*Model { method GetMeta (line 720) | func (p *PaginatedModels) GetMeta() *UtilsMetaResponse { method GetExtraProperties (line 727) | func (p *PaginatedModels) GetExtraProperties() map[string]interface{} { method require (line 731) | func (p *PaginatedModels) require(field *big.Int) { method SetData (line 740) | func (p *PaginatedModels) SetData(data []*Model) { method SetMeta (line 747) | func (p *PaginatedModels) SetMeta(meta *UtilsMetaResponse) { method UnmarshalJSON (line 752) | func (p *PaginatedModels) UnmarshalJSON(data []byte) error { method MarshalJSON (line 768) | func (p *PaginatedModels) MarshalJSON() ([]byte, error) { method String (line 779) | func (p *PaginatedModels) String() string { type PricingTier (line 817) | type PricingTier struct method GetID (line 862) | func (p *PricingTier) GetID() string { method GetName (line 869) | func (p *PricingTier) GetName() string { method GetIsDefault (line 876) | func (p *PricingTier) GetIsDefault() bool { method GetPriority (line 883) | func (p *PricingTier) GetPriority() int { method GetConditions (line 890) | func (p *PricingTier) GetConditions() []*PricingTierCondition { method GetPrices (line 897) | func (p *PricingTier) GetPrices() map[string]float64 { method GetExtraProperties (line 904) | func (p *PricingTier) GetExtraProperties() map[string]interface{} { method require (line 908) | func (p *PricingTier) require(field *big.Int) { method SetID (line 917) | func (p *PricingTier) SetID(id string) { method SetName (line 924) | func (p *PricingTier) SetName(name string) { method SetIsDefault (line 931) | func (p *PricingTier) SetIsDefault(isDefault bool) { method SetPriority (line 938) | func (p *PricingTier) SetPriority(priority int) { method SetConditions (line 945) | func (p *PricingTier) SetConditions(conditions []*PricingTierCondition) { method SetPrices (line 952) | func (p *PricingTier) SetPrices(prices map[string]float64) { method UnmarshalJSON (line 957) | func (p *PricingTier) UnmarshalJSON(data []byte) error { method MarshalJSON (line 973) | func (p *PricingTier) MarshalJSON() ([]byte, error) { method String (line 984) | func (p *PricingTier) String() string { type PricingTierCondition (line 1015) | type PricingTierCondition struct method GetUsageDetailPattern (line 1046) | func (p *PricingTierCondition) GetUsageDetailPattern() string { method GetOperator (line 1053) | func (p *PricingTierCondition) GetOperator() PricingTierOperator { method GetValue (line 1060) | func (p *PricingTierCondition) GetValue() float64 { method GetCaseSensitive (line 1067) | func (p *PricingTierCondition) GetCaseSensitive() bool { method GetExtraProperties (line 1074) | func (p *PricingTierCondition) GetExtraProperties() map[string]interfa... method require (line 1078) | func (p *PricingTierCondition) require(field *big.Int) { method SetUsageDetailPattern (line 1087) | func (p *PricingTierCondition) SetUsageDetailPattern(usageDetailPatter... method SetOperator (line 1094) | func (p *PricingTierCondition) SetOperator(operator PricingTierOperato... method SetValue (line 1101) | func (p *PricingTierCondition) SetValue(value float64) { method SetCaseSensitive (line 1108) | func (p *PricingTierCondition) SetCaseSensitive(caseSensitive bool) { method UnmarshalJSON (line 1113) | func (p *PricingTierCondition) UnmarshalJSON(data []byte) error { method MarshalJSON (line 1129) | func (p *PricingTierCondition) MarshalJSON() ([]byte, error) { method String (line 1140) | func (p *PricingTierCondition) String() string { type PricingTierInput (line 1169) | type PricingTierInput struct method GetName (line 1210) | func (p *PricingTierInput) GetName() string { method GetIsDefault (line 1217) | func (p *PricingTierInput) GetIsDefault() bool { method GetPriority (line 1224) | func (p *PricingTierInput) GetPriority() int { method GetConditions (line 1231) | func (p *PricingTierInput) GetConditions() []*PricingTierCondition { method GetPrices (line 1238) | func (p *PricingTierInput) GetPrices() map[string]float64 { method GetExtraProperties (line 1245) | func (p *PricingTierInput) GetExtraProperties() map[string]interface{} { method require (line 1249) | func (p *PricingTierInput) require(field *big.Int) { method SetName (line 1258) | func (p *PricingTierInput) SetName(name string) { method SetIsDefault (line 1265) | func (p *PricingTierInput) SetIsDefault(isDefault bool) { method SetPriority (line 1272) | func (p *PricingTierInput) SetPriority(priority int) { method SetConditions (line 1279) | func (p *PricingTierInput) SetConditions(conditions []*PricingTierCond... method SetPrices (line 1286) | func (p *PricingTierInput) SetPrices(prices map[string]float64) { method UnmarshalJSON (line 1291) | func (p *PricingTierInput) UnmarshalJSON(data []byte) error { method MarshalJSON (line 1307) | func (p *PricingTierInput) MarshalJSON() ([]byte, error) { method String (line 1318) | func (p *PricingTierInput) String() string { type PricingTierOperator (line 1331) | type PricingTierOperator method Ptr (line 1361) | func (p PricingTierOperator) Ptr() *PricingTierOperator { constant PricingTierOperatorGt (line 1334) | PricingTierOperatorGt PricingTierOperator = "gt" constant PricingTierOperatorGte (line 1335) | PricingTierOperatorGte PricingTierOperator = "gte" constant PricingTierOperatorLt (line 1336) | PricingTierOperatorLt PricingTierOperator = "lt" constant PricingTierOperatorLte (line 1337) | PricingTierOperatorLte PricingTierOperator = "lte" constant PricingTierOperatorEq (line 1338) | PricingTierOperatorEq PricingTierOperator = "eq" constant PricingTierOperatorNeq (line 1339) | PricingTierOperatorNeq PricingTierOperator = "neq" function NewPricingTierOperatorFromString (line 1342) | func NewPricingTierOperatorFromString(s string) (PricingTierOperator, er... FILE: backend/pkg/observability/langfuse/api/models/client.go type Client (line 14) | type Client struct method List (line 37) | func (c *Client) List( method Create (line 54) | func (c *Client) Create( method Get (line 71) | func (c *Client) Get( method Delete (line 88) | func (c *Client) Delete( function NewClient (line 22) | func NewClient(options *core.RequestOptions) *Client { FILE: backend/pkg/observability/langfuse/api/models/raw_client.go type RawClient (line 15) | type RawClient struct method List (line 34) | func (r *RawClient) List( method Create (line 82) | func (r *RawClient) Create( method Get (line 125) | func (r *RawClient) Get( method Delete (line 169) | func (r *RawClient) Delete( function NewRawClient (line 21) | func NewRawClient(options *core.RequestOptions) *RawClient { FILE: backend/pkg/observability/langfuse/api/observations.go type ObservationsGetRequest (line 17) | type ObservationsGetRequest struct method require (line 25) | func (o *ObservationsGetRequest) require(field *big.Int) { method SetObservationID (line 34) | func (o *ObservationsGetRequest) SetObservationID(observationID string) { type ObservationsGetManyRequest (line 55) | type ObservationsGetManyRequest struct method require (line 178) | func (o *ObservationsGetManyRequest) require(field *big.Int) { method SetPage (line 187) | func (o *ObservationsGetManyRequest) SetPage(page *int) { method SetLimit (line 194) | func (o *ObservationsGetManyRequest) SetLimit(limit *int) { method SetName (line 201) | func (o *ObservationsGetManyRequest) SetName(name *string) { method SetUserID (line 208) | func (o *ObservationsGetManyRequest) SetUserID(userID *string) { method SetType (line 215) | func (o *ObservationsGetManyRequest) SetType(type_ *string) { method SetTraceID (line 222) | func (o *ObservationsGetManyRequest) SetTraceID(traceID *string) { method SetLevel (line 229) | func (o *ObservationsGetManyRequest) SetLevel(level *ObservationLevel) { method SetParentObservationID (line 236) | func (o *ObservationsGetManyRequest) SetParentObservationID(parentObse... method SetEnvironment (line 243) | func (o *ObservationsGetManyRequest) SetEnvironment(environment []*str... method SetFromStartTime (line 250) | func (o *ObservationsGetManyRequest) SetFromStartTime(fromStartTime *t... method SetToStartTime (line 257) | func (o *ObservationsGetManyRequest) SetToStartTime(toStartTime *time.... method SetVersion (line 264) | func (o *ObservationsGetManyRequest) SetVersion(version *string) { method SetFilter (line 271) | func (o *ObservationsGetManyRequest) SetFilter(filter *string) { type ObservationsViews (line 281) | type ObservationsViews struct method GetData (line 292) | func (o *ObservationsViews) GetData() []*ObservationsView { method GetMeta (line 299) | func (o *ObservationsViews) GetMeta() *UtilsMetaResponse { method GetExtraProperties (line 306) | func (o *ObservationsViews) GetExtraProperties() map[string]interface{} { method require (line 310) | func (o *ObservationsViews) require(field *big.Int) { method SetData (line 319) | func (o *ObservationsViews) SetData(data []*ObservationsView) { method SetMeta (line 326) | func (o *ObservationsViews) SetMeta(meta *UtilsMetaResponse) { method UnmarshalJSON (line 331) | func (o *ObservationsViews) UnmarshalJSON(data []byte) error { method MarshalJSON (line 347) | func (o *ObservationsViews) MarshalJSON() ([]byte, error) { method String (line 358) | func (o *ObservationsViews) String() string { FILE: backend/pkg/observability/langfuse/api/observations/client.go type Client (line 14) | type Client struct method Get (line 37) | func (c *Client) Get( method Getmany (line 56) | func (c *Client) Getmany( function NewClient (line 22) | func NewClient(options *core.RequestOptions) *Client { FILE: backend/pkg/observability/langfuse/api/observations/raw_client.go type RawClient (line 15) | type RawClient struct method Get (line 34) | func (r *RawClient) Get( method Getmany (line 78) | func (r *RawClient) Getmany( function NewRawClient (line 21) | func NewRawClient(options *core.RequestOptions) *RawClient { FILE: backend/pkg/observability/langfuse/api/observationsv2.go type ObservationsV2GetManyRequest (line 32) | type ObservationsV2GetManyRequest struct method require (line 170) | func (o *ObservationsV2GetManyRequest) require(field *big.Int) { method SetFields (line 179) | func (o *ObservationsV2GetManyRequest) SetFields(fields *string) { method SetExpandMetadata (line 186) | func (o *ObservationsV2GetManyRequest) SetExpandMetadata(expandMetadat... method SetLimit (line 193) | func (o *ObservationsV2GetManyRequest) SetLimit(limit *int) { method SetCursor (line 200) | func (o *ObservationsV2GetManyRequest) SetCursor(cursor *string) { method SetParseIoAsJSON (line 207) | func (o *ObservationsV2GetManyRequest) SetParseIoAsJSON(parseIoAsJSON ... method SetName (line 214) | func (o *ObservationsV2GetManyRequest) SetName(name *string) { method SetUserID (line 221) | func (o *ObservationsV2GetManyRequest) SetUserID(userID *string) { method SetType (line 228) | func (o *ObservationsV2GetManyRequest) SetType(type_ *string) { method SetTraceID (line 235) | func (o *ObservationsV2GetManyRequest) SetTraceID(traceID *string) { method SetLevel (line 242) | func (o *ObservationsV2GetManyRequest) SetLevel(level *ObservationLeve... method SetParentObservationID (line 249) | func (o *ObservationsV2GetManyRequest) SetParentObservationID(parentOb... method SetEnvironment (line 256) | func (o *ObservationsV2GetManyRequest) SetEnvironment(environment []*s... method SetFromStartTime (line 263) | func (o *ObservationsV2GetManyRequest) SetFromStartTime(fromStartTime ... method SetToStartTime (line 270) | func (o *ObservationsV2GetManyRequest) SetToStartTime(toStartTime *tim... method SetVersion (line 277) | func (o *ObservationsV2GetManyRequest) SetVersion(version *string) { method SetFilter (line 284) | func (o *ObservationsV2GetManyRequest) SetFilter(filter *string) { type ObservationsV2Meta (line 294) | type ObservationsV2Meta struct method GetCursor (line 305) | func (o *ObservationsV2Meta) GetCursor() *string { method GetExtraProperties (line 312) | func (o *ObservationsV2Meta) GetExtraProperties() map[string]interface... method require (line 316) | func (o *ObservationsV2Meta) require(field *big.Int) { method SetCursor (line 325) | func (o *ObservationsV2Meta) SetCursor(cursor *string) { method UnmarshalJSON (line 330) | func (o *ObservationsV2Meta) UnmarshalJSON(data []byte) error { method MarshalJSON (line 346) | func (o *ObservationsV2Meta) MarshalJSON() ([]byte, error) { method String (line 357) | func (o *ObservationsV2Meta) String() string { type ObservationsV2Response (line 378) | type ObservationsV2Response struct method GetData (line 390) | func (o *ObservationsV2Response) GetData() []map[string]interface{} { method GetMeta (line 397) | func (o *ObservationsV2Response) GetMeta() *ObservationsV2Meta { method GetExtraProperties (line 404) | func (o *ObservationsV2Response) GetExtraProperties() map[string]inter... method require (line 408) | func (o *ObservationsV2Response) require(field *big.Int) { method SetData (line 417) | func (o *ObservationsV2Response) SetData(data []map[string]interface{}) { method SetMeta (line 424) | func (o *ObservationsV2Response) SetMeta(meta *ObservationsV2Meta) { method UnmarshalJSON (line 429) | func (o *ObservationsV2Response) UnmarshalJSON(data []byte) error { method MarshalJSON (line 445) | func (o *ObservationsV2Response) MarshalJSON() ([]byte, error) { method String (line 456) | func (o *ObservationsV2Response) String() string { FILE: backend/pkg/observability/langfuse/api/observationsv2/client.go type Client (line 14) | type Client struct method Getmany (line 60) | func (c *Client) Getmany( function NewClient (line 22) | func NewClient(options *core.RequestOptions) *Client { FILE: backend/pkg/observability/langfuse/api/observationsv2/raw_client.go type RawClient (line 15) | type RawClient struct method Getmany (line 34) | func (r *RawClient) Getmany( function NewRawClient (line 21) | func NewRawClient(options *core.RequestOptions) *RawClient { FILE: backend/pkg/observability/langfuse/api/opentelemetry.go type OpentelemetryExportTracesRequest (line 16) | type OpentelemetryExportTracesRequest struct method require (line 24) | func (o *OpentelemetryExportTracesRequest) require(field *big.Int) { method SetResourceSpans (line 33) | func (o *OpentelemetryExportTracesRequest) SetResourceSpans(resourceSp... method UnmarshalJSON (line 38) | func (o *OpentelemetryExportTracesRequest) UnmarshalJSON(data []byte) ... method MarshalJSON (line 48) | func (o *OpentelemetryExportTracesRequest) MarshalJSON() ([]byte, erro... type OtelAttribute (line 65) | type OtelAttribute struct method GetKey (line 78) | func (o *OtelAttribute) GetKey() *string { method GetValue (line 85) | func (o *OtelAttribute) GetValue() *OtelAttributeValue { method GetExtraProperties (line 92) | func (o *OtelAttribute) GetExtraProperties() map[string]interface{} { method require (line 96) | func (o *OtelAttribute) require(field *big.Int) { method SetKey (line 105) | func (o *OtelAttribute) SetKey(key *string) { method SetValue (line 112) | func (o *OtelAttribute) SetValue(value *OtelAttributeValue) { method UnmarshalJSON (line 117) | func (o *OtelAttribute) UnmarshalJSON(data []byte) error { method MarshalJSON (line 133) | func (o *OtelAttribute) MarshalJSON() ([]byte, error) { method String (line 144) | func (o *OtelAttribute) String() string { type OtelAttributeValue (line 164) | type OtelAttributeValue struct method GetStringValue (line 181) | func (o *OtelAttributeValue) GetStringValue() *string { method GetIntValue (line 188) | func (o *OtelAttributeValue) GetIntValue() *int { method GetDoubleValue (line 195) | func (o *OtelAttributeValue) GetDoubleValue() *float64 { method GetBoolValue (line 202) | func (o *OtelAttributeValue) GetBoolValue() *bool { method GetExtraProperties (line 209) | func (o *OtelAttributeValue) GetExtraProperties() map[string]interface... method require (line 213) | func (o *OtelAttributeValue) require(field *big.Int) { method SetStringValue (line 222) | func (o *OtelAttributeValue) SetStringValue(stringValue *string) { method SetIntValue (line 229) | func (o *OtelAttributeValue) SetIntValue(intValue *int) { method SetDoubleValue (line 236) | func (o *OtelAttributeValue) SetDoubleValue(doubleValue *float64) { method SetBoolValue (line 243) | func (o *OtelAttributeValue) SetBoolValue(boolValue *bool) { method UnmarshalJSON (line 248) | func (o *OtelAttributeValue) UnmarshalJSON(data []byte) error { method MarshalJSON (line 264) | func (o *OtelAttributeValue) MarshalJSON() ([]byte, error) { method String (line 275) | func (o *OtelAttributeValue) String() string { type OtelResource (line 292) | type OtelResource struct method GetAttributes (line 303) | func (o *OtelResource) GetAttributes() []*OtelAttribute { method GetExtraProperties (line 310) | func (o *OtelResource) GetExtraProperties() map[string]interface{} { method require (line 314) | func (o *OtelResource) require(field *big.Int) { method SetAttributes (line 323) | func (o *OtelResource) SetAttributes(attributes []*OtelAttribute) { method UnmarshalJSON (line 328) | func (o *OtelResource) UnmarshalJSON(data []byte) error { method MarshalJSON (line 344) | func (o *OtelResource) MarshalJSON() ([]byte, error) { method String (line 355) | func (o *OtelResource) String() string { type OtelResourceSpan (line 373) | type OtelResourceSpan struct method GetResource (line 386) | func (o *OtelResourceSpan) GetResource() *OtelResource { method GetScopeSpans (line 393) | func (o *OtelResourceSpan) GetScopeSpans() []*OtelScopeSpan { method GetExtraProperties (line 400) | func (o *OtelResourceSpan) GetExtraProperties() map[string]interface{} { method require (line 404) | func (o *OtelResourceSpan) require(field *big.Int) { method SetResource (line 413) | func (o *OtelResourceSpan) SetResource(resource *OtelResource) { method SetScopeSpans (line 420) | func (o *OtelResourceSpan) SetScopeSpans(scopeSpans []*OtelScopeSpan) { method UnmarshalJSON (line 425) | func (o *OtelResourceSpan) UnmarshalJSON(data []byte) error { method MarshalJSON (line 441) | func (o *OtelResourceSpan) MarshalJSON() ([]byte, error) { method String (line 452) | func (o *OtelResourceSpan) String() string { type OtelScope (line 471) | type OtelScope struct method GetName (line 486) | func (o *OtelScope) GetName() *string { method GetVersion (line 493) | func (o *OtelScope) GetVersion() *string { method GetAttributes (line 500) | func (o *OtelScope) GetAttributes() []*OtelAttribute { method GetExtraProperties (line 507) | func (o *OtelScope) GetExtraProperties() map[string]interface{} { method require (line 511) | func (o *OtelScope) require(field *big.Int) { method SetName (line 520) | func (o *OtelScope) SetName(name *string) { method SetVersion (line 527) | func (o *OtelScope) SetVersion(version *string) { method SetAttributes (line 534) | func (o *OtelScope) SetAttributes(attributes []*OtelAttribute) { method UnmarshalJSON (line 539) | func (o *OtelScope) UnmarshalJSON(data []byte) error { method MarshalJSON (line 555) | func (o *OtelScope) MarshalJSON() ([]byte, error) { method String (line 566) | func (o *OtelScope) String() string { type OtelScopeSpan (line 584) | type OtelScopeSpan struct method GetScope (line 597) | func (o *OtelScopeSpan) GetScope() *OtelScope { method GetSpans (line 604) | func (o *OtelScopeSpan) GetSpans() []*OtelSpan { method GetExtraProperties (line 611) | func (o *OtelScopeSpan) GetExtraProperties() map[string]interface{} { method require (line 615) | func (o *OtelScopeSpan) require(field *big.Int) { method SetScope (line 624) | func (o *OtelScopeSpan) SetScope(scope *OtelScope) { method SetSpans (line 631) | func (o *OtelScopeSpan) SetSpans(spans []*OtelSpan) { method UnmarshalJSON (line 636) | func (o *OtelScopeSpan) UnmarshalJSON(data []byte) error { method MarshalJSON (line 652) | func (o *OtelScopeSpan) MarshalJSON() ([]byte, error) { method String (line 663) | func (o *OtelScopeSpan) String() string { type OtelSpan (line 688) | type OtelSpan struct method GetTraceID (line 715) | func (o *OtelSpan) GetTraceID() interface{} { method GetSpanID (line 722) | func (o *OtelSpan) GetSpanID() interface{} { method GetParentSpanID (line 729) | func (o *OtelSpan) GetParentSpanID() interface{} { method GetName (line 736) | func (o *OtelSpan) GetName() *string { method GetKind (line 743) | func (o *OtelSpan) GetKind() *int { method GetStartTimeUnixNano (line 750) | func (o *OtelSpan) GetStartTimeUnixNano() interface{} { method GetEndTimeUnixNano (line 757) | func (o *OtelSpan) GetEndTimeUnixNano() interface{} { method GetAttributes (line 764) | func (o *OtelSpan) GetAttributes() []*OtelAttribute { method GetStatus (line 771) | func (o *OtelSpan) GetStatus() interface{} { method GetExtraProperties (line 778) | func (o *OtelSpan) GetExtraProperties() map[string]interface{} { method require (line 782) | func (o *OtelSpan) require(field *big.Int) { method SetTraceID (line 791) | func (o *OtelSpan) SetTraceID(traceID interface{}) { method SetSpanID (line 798) | func (o *OtelSpan) SetSpanID(spanID interface{}) { method SetParentSpanID (line 805) | func (o *OtelSpan) SetParentSpanID(parentSpanID interface{}) { method SetName (line 812) | func (o *OtelSpan) SetName(name *string) { method SetKind (line 819) | func (o *OtelSpan) SetKind(kind *int) { method SetStartTimeUnixNano (line 826) | func (o *OtelSpan) SetStartTimeUnixNano(startTimeUnixNano interface{}) { method SetEndTimeUnixNano (line 833) | func (o *OtelSpan) SetEndTimeUnixNano(endTimeUnixNano interface{}) { method SetAttributes (line 840) | func (o *OtelSpan) SetAttributes(attributes []*OtelAttribute) { method SetStatus (line 847) | func (o *OtelSpan) SetStatus(status interface{}) { method UnmarshalJSON (line 852) | func (o *OtelSpan) UnmarshalJSON(data []byte) error { method MarshalJSON (line 868) | func (o *OtelSpan) MarshalJSON() ([]byte, error) { method String (line 879) | func (o *OtelSpan) String() string { type OtelTraceResponse (line 892) | type OtelTraceResponse struct method GetExtraProperties (line 901) | func (o *OtelTraceResponse) GetExtraProperties() map[string]interface{} { method require (line 905) | func (o *OtelTraceResponse) require(field *big.Int) { method UnmarshalJSON (line 912) | func (o *OtelTraceResponse) UnmarshalJSON(data []byte) error { method MarshalJSON (line 928) | func (o *OtelTraceResponse) MarshalJSON() ([]byte, error) { method String (line 939) | func (o *OtelTraceResponse) String() string { FILE: backend/pkg/observability/langfuse/api/opentelemetry/client.go type Client (line 14) | type Client struct method Exporttraces (line 52) | func (c *Client) Exporttraces( function NewClient (line 22) | func NewClient(options *core.RequestOptions) *Client { FILE: backend/pkg/observability/langfuse/api/opentelemetry/raw_client.go type RawClient (line 15) | type RawClient struct method Exporttraces (line 34) | func (r *RawClient) Exporttraces( function NewRawClient (line 21) | func NewRawClient(options *core.RequestOptions) *RawClient { FILE: backend/pkg/observability/langfuse/api/option/request_option.go function WithBaseURL (line 16) | func WithBaseURL(baseURL string) *core.BaseURLOption { function WithHTTPClient (line 23) | func WithHTTPClient(httpClient core.HTTPClient) *core.HTTPClientOption { function WithHTTPHeader (line 30) | func WithHTTPHeader(httpHeader http.Header) *core.HTTPHeaderOption { function WithBodyProperties (line 38) | func WithBodyProperties(bodyProperties map[string]interface{}) *core.Bod... function WithQueryParameters (line 49) | func WithQueryParameters(queryParameters url.Values) *core.QueryParamete... function WithMaxAttempts (line 60) | func WithMaxAttempts(attempts uint) *core.MaxAttemptsOption { function WithBasicAuth (line 67) | func WithBasicAuth(username, password string) *core.BasicAuthOption { FILE: backend/pkg/observability/langfuse/api/organizations.go type OrganizationsDeleteProjectMembershipRequest (line 17) | type OrganizationsDeleteProjectMembershipRequest struct method require (line 25) | func (o *OrganizationsDeleteProjectMembershipRequest) require(field *b... method SetProjectID (line 34) | func (o *OrganizationsDeleteProjectMembershipRequest) SetProjectID(pro... method UnmarshalJSON (line 39) | func (o *OrganizationsDeleteProjectMembershipRequest) UnmarshalJSON(da... method MarshalJSON (line 48) | func (o *OrganizationsDeleteProjectMembershipRequest) MarshalJSON() ([... type OrganizationsGetProjectMembershipsRequest (line 56) | type OrganizationsGetProjectMembershipsRequest struct method require (line 63) | func (o *OrganizationsGetProjectMembershipsRequest) require(field *big... method SetProjectID (line 72) | func (o *OrganizationsGetProjectMembershipsRequest) SetProjectID(proje... type DeleteMembershipRequest (line 81) | type DeleteMembershipRequest struct method GetUserID (line 91) | func (d *DeleteMembershipRequest) GetUserID() string { method GetExtraProperties (line 98) | func (d *DeleteMembershipRequest) GetExtraProperties() map[string]inte... method require (line 102) | func (d *DeleteMembershipRequest) require(field *big.Int) { method SetUserID (line 111) | func (d *DeleteMembershipRequest) SetUserID(userID string) { method UnmarshalJSON (line 116) | func (d *DeleteMembershipRequest) UnmarshalJSON(data []byte) error { method MarshalJSON (line 132) | func (d *DeleteMembershipRequest) MarshalJSON() ([]byte, error) { method String (line 143) | func (d *DeleteMembershipRequest) String() string { type MembershipDeletionResponse (line 160) | type MembershipDeletionResponse struct method GetMessage (line 171) | func (m *MembershipDeletionResponse) GetMessage() string { method GetUserID (line 178) | func (m *MembershipDeletionResponse) GetUserID() string { method GetExtraProperties (line 185) | func (m *MembershipDeletionResponse) GetExtraProperties() map[string]i... method require (line 189) | func (m *MembershipDeletionResponse) require(field *big.Int) { method SetMessage (line 198) | func (m *MembershipDeletionResponse) SetMessage(message string) { method SetUserID (line 205) | func (m *MembershipDeletionResponse) SetUserID(userID string) { method UnmarshalJSON (line 210) | func (m *MembershipDeletionResponse) UnmarshalJSON(data []byte) error { method MarshalJSON (line 226) | func (m *MembershipDeletionResponse) MarshalJSON() ([]byte, error) { method String (line 237) | func (m *MembershipDeletionResponse) String() string { type MembershipRequest (line 254) | type MembershipRequest struct method GetUserID (line 265) | func (m *MembershipRequest) GetUserID() string { method GetRole (line 272) | func (m *MembershipRequest) GetRole() MembershipRole { method GetExtraProperties (line 279) | func (m *MembershipRequest) GetExtraProperties() map[string]interface{} { method require (line 283) | func (m *MembershipRequest) require(field *big.Int) { method SetUserID (line 292) | func (m *MembershipRequest) SetUserID(userID string) { method SetRole (line 299) | func (m *MembershipRequest) SetRole(role MembershipRole) { method UnmarshalJSON (line 304) | func (m *MembershipRequest) UnmarshalJSON(data []byte) error { method MarshalJSON (line 320) | func (m *MembershipRequest) MarshalJSON() ([]byte, error) { method String (line 331) | func (m *MembershipRequest) String() string { type MembershipResponse (line 350) | type MembershipResponse struct method GetUserID (line 363) | func (m *MembershipResponse) GetUserID() string { method GetRole (line 370) | func (m *MembershipResponse) GetRole() MembershipRole { method GetEmail (line 377) | func (m *MembershipResponse) GetEmail() string { method GetName (line 384) | func (m *MembershipResponse) GetName() string { method GetExtraProperties (line 391) | func (m *MembershipResponse) GetExtraProperties() map[string]interface... method require (line 395) | func (m *MembershipResponse) require(field *big.Int) { method SetUserID (line 404) | func (m *MembershipResponse) SetUserID(userID string) { method SetRole (line 411) | func (m *MembershipResponse) SetRole(role MembershipRole) { method SetEmail (line 418) | func (m *MembershipResponse) SetEmail(email string) { method SetName (line 425) | func (m *MembershipResponse) SetName(name string) { method UnmarshalJSON (line 430) | func (m *MembershipResponse) UnmarshalJSON(data []byte) error { method MarshalJSON (line 446) | func (m *MembershipResponse) MarshalJSON() ([]byte, error) { method String (line 457) | func (m *MembershipResponse) String() string { type MembershipRole (line 469) | type MembershipRole method Ptr (line 493) | func (m MembershipRole) Ptr() *MembershipRole { constant MembershipRoleOwner (line 472) | MembershipRoleOwner MembershipRole = "OWNER" constant MembershipRoleAdmin (line 473) | MembershipRoleAdmin MembershipRole = "ADMIN" constant MembershipRoleMember (line 474) | MembershipRoleMember MembershipRole = "MEMBER" constant MembershipRoleViewer (line 475) | MembershipRoleViewer MembershipRole = "VIEWER" function NewMembershipRoleFromString (line 478) | func NewMembershipRoleFromString(s string) (MembershipRole, error) { type MembershipsResponse (line 501) | type MembershipsResponse struct method GetMemberships (line 511) | func (m *MembershipsResponse) GetMemberships() []*MembershipResponse { method GetExtraProperties (line 518) | func (m *MembershipsResponse) GetExtraProperties() map[string]interfac... method require (line 522) | func (m *MembershipsResponse) require(field *big.Int) { method SetMemberships (line 531) | func (m *MembershipsResponse) SetMemberships(memberships []*Membership... method UnmarshalJSON (line 536) | func (m *MembershipsResponse) UnmarshalJSON(data []byte) error { method MarshalJSON (line 552) | func (m *MembershipsResponse) MarshalJSON() ([]byte, error) { method String (line 563) | func (m *MembershipsResponse) String() string { type OrganizationAPIKey (line 585) | type OrganizationAPIKey struct method GetID (line 601) | func (o *OrganizationAPIKey) GetID() string { method GetCreatedAt (line 608) | func (o *OrganizationAPIKey) GetCreatedAt() time.Time { method GetExpiresAt (line 615) | func (o *OrganizationAPIKey) GetExpiresAt() *time.Time { method GetLastUsedAt (line 622) | func (o *OrganizationAPIKey) GetLastUsedAt() *time.Time { method GetNote (line 629) | func (o *OrganizationAPIKey) GetNote() *string { method GetPublicKey (line 636) | func (o *OrganizationAPIKey) GetPublicKey() string { method GetDisplaySecretKey (line 643) | func (o *OrganizationAPIKey) GetDisplaySecretKey() string { method GetExtraProperties (line 650) | func (o *OrganizationAPIKey) GetExtraProperties() map[string]interface... method require (line 654) | func (o *OrganizationAPIKey) require(field *big.Int) { method SetID (line 663) | func (o *OrganizationAPIKey) SetID(id string) { method SetCreatedAt (line 670) | func (o *OrganizationAPIKey) SetCreatedAt(createdAt time.Time) { method SetExpiresAt (line 677) | func (o *OrganizationAPIKey) SetExpiresAt(expiresAt *time.Time) { method SetLastUsedAt (line 684) | func (o *OrganizationAPIKey) SetLastUsedAt(lastUsedAt *time.Time) { method SetNote (line 691) | func (o *OrganizationAPIKey) SetNote(note *string) { method SetPublicKey (line 698) | func (o *OrganizationAPIKey) SetPublicKey(publicKey string) { method SetDisplaySecretKey (line 705) | func (o *OrganizationAPIKey) SetDisplaySecretKey(displaySecretKey stri... method UnmarshalJSON (line 710) | func (o *OrganizationAPIKey) UnmarshalJSON(data []byte) error { method MarshalJSON (line 736) | func (o *OrganizationAPIKey) MarshalJSON() ([]byte, error) { method String (line 753) | func (o *OrganizationAPIKey) String() string { type OrganizationAPIKeysResponse (line 769) | type OrganizationAPIKeysResponse struct method GetAPIKeys (line 779) | func (o *OrganizationAPIKeysResponse) GetAPIKeys() []*OrganizationAPIK... method GetExtraProperties (line 786) | func (o *OrganizationAPIKeysResponse) GetExtraProperties() map[string]... method require (line 790) | func (o *OrganizationAPIKeysResponse) require(field *big.Int) { method SetAPIKeys (line 799) | func (o *OrganizationAPIKeysResponse) SetAPIKeys(apiKeys []*Organizati... method UnmarshalJSON (line 804) | func (o *OrganizationAPIKeysResponse) UnmarshalJSON(data []byte) error { method MarshalJSON (line 820) | func (o *OrganizationAPIKeysResponse) MarshalJSON() ([]byte, error) { method String (line 831) | func (o *OrganizationAPIKeysResponse) String() string { type OrganizationProject (line 851) | type OrganizationProject struct method GetID (line 865) | func (o *OrganizationProject) GetID() string { method GetName (line 872) | func (o *OrganizationProject) GetName() string { method GetMetadata (line 879) | func (o *OrganizationProject) GetMetadata() map[string]interface{} { method GetCreatedAt (line 886) | func (o *OrganizationProject) GetCreatedAt() time.Time { method GetUpdatedAt (line 893) | func (o *OrganizationProject) GetUpdatedAt() time.Time { method GetExtraProperties (line 900) | func (o *OrganizationProject) GetExtraProperties() map[string]interfac... method require (line 904) | func (o *OrganizationProject) require(field *big.Int) { method SetID (line 913) | func (o *OrganizationProject) SetID(id string) { method SetName (line 920) | func (o *OrganizationProject) SetName(name string) { method SetMetadata (line 927) | func (o *OrganizationProject) SetMetadata(metadata map[string]interfac... method SetCreatedAt (line 934) | func (o *OrganizationProject) SetCreatedAt(createdAt time.Time) { method SetUpdatedAt (line 941) | func (o *OrganizationProject) SetUpdatedAt(updatedAt time.Time) { method UnmarshalJSON (line 946) | func (o *OrganizationProject) UnmarshalJSON(data []byte) error { method MarshalJSON (line 970) | func (o *OrganizationProject) MarshalJSON() ([]byte, error) { method String (line 985) | func (o *OrganizationProject) String() string { type OrganizationProjectsResponse (line 1001) | type OrganizationProjectsResponse struct method GetProjects (line 1011) | func (o *OrganizationProjectsResponse) GetProjects() []*OrganizationPr... method GetExtraProperties (line 1018) | func (o *OrganizationProjectsResponse) GetExtraProperties() map[string... method require (line 1022) | func (o *OrganizationProjectsResponse) require(field *big.Int) { method SetProjects (line 1031) | func (o *OrganizationProjectsResponse) SetProjects(projects []*Organiz... method UnmarshalJSON (line 1036) | func (o *OrganizationProjectsResponse) UnmarshalJSON(data []byte) error { method MarshalJSON (line 1052) | func (o *OrganizationProjectsResponse) MarshalJSON() ([]byte, error) { method String (line 1063) | func (o *OrganizationProjectsResponse) String() string { type OrganizationsUpdateProjectMembershipRequest (line 1079) | type OrganizationsUpdateProjectMembershipRequest struct method require (line 1087) | func (o *OrganizationsUpdateProjectMembershipRequest) require(field *b... method SetProjectID (line 1096) | func (o *OrganizationsUpdateProjectMembershipRequest) SetProjectID(pro... method UnmarshalJSON (line 1101) | func (o *OrganizationsUpdateProjectMembershipRequest) UnmarshalJSON(da... method MarshalJSON (line 1110) | func (o *OrganizationsUpdateProjectMembershipRequest) MarshalJSON() ([... FILE: backend/pkg/observability/langfuse/api/organizations/client.go type Client (line 14) | type Client struct method Getorganizationmemberships (line 37) | func (c *Client) Getorganizationmemberships( method Updateorganizationmembership (line 52) | func (c *Client) Updateorganizationmembership( method Deleteorganizationmembership (line 69) | func (c *Client) Deleteorganizationmembership( method Getprojectmemberships (line 86) | func (c *Client) Getprojectmemberships( method Updateprojectmembership (line 103) | func (c *Client) Updateprojectmembership( method Deleteprojectmembership (line 120) | func (c *Client) Deleteprojectmembership( method Getorganizationprojects (line 137) | func (c *Client) Getorganizationprojects( method Getorganizationapikeys (line 152) | func (c *Client) Getorganizationapikeys( function NewClient (line 22) | func NewClient(options *core.RequestOptions) *Client { FILE: backend/pkg/observability/langfuse/api/organizations/raw_client.go type RawClient (line 15) | type RawClient struct method Getorganizationmemberships (line 34) | func (r *RawClient) Getorganizationmemberships( method Updateorganizationmembership (line 74) | func (r *RawClient) Updateorganizationmembership( method Deleteorganizationmembership (line 116) | func (r *RawClient) Deleteorganizationmembership( method Getprojectmemberships (line 158) | func (r *RawClient) Getprojectmemberships( method Updateprojectmembership (line 202) | func (r *RawClient) Updateprojectmembership( method Deleteprojectmembership (line 248) | func (r *RawClient) Deleteprojectmembership( method Getorganizationprojects (line 294) | func (r *RawClient) Getorganizationprojects( method Getorganizationapikeys (line 334) | func (r *RawClient) Getorganizationapikeys( function NewRawClient (line 21) | func NewRawClient(options *core.RequestOptions) *RawClient { FILE: backend/pkg/observability/langfuse/api/pointer.go function Bool (line 10) | func Bool(b bool) *bool { function Byte (line 15) | func Byte(b byte) *byte { function Bytes (line 20) | func Bytes(b []byte) *[]byte { function Complex64 (line 25) | func Complex64(c complex64) *complex64 { function Complex128 (line 30) | func Complex128(c complex128) *complex128 { function Float32 (line 35) | func Float32(f float32) *float32 { function Float64 (line 40) | func Float64(f float64) *float64 { function Int (line 45) | func Int(i int) *int { function Int8 (line 50) | func Int8(i int8) *int8 { function Int16 (line 55) | func Int16(i int16) *int16 { function Int32 (line 60) | func Int32(i int32) *int32 { function Int64 (line 65) | func Int64(i int64) *int64 { function Rune (line 70) | func Rune(r rune) *rune { function String (line 75) | func String(s string) *string { function Uint (line 80) | func Uint(u uint) *uint { function Uint8 (line 85) | func Uint8(u uint8) *uint8 { function Uint16 (line 90) | func Uint16(u uint16) *uint16 { function Uint32 (line 95) | func Uint32(u uint32) *uint32 { function Uint64 (line 100) | func Uint64(u uint64) *uint64 { function Uintptr (line 105) | func Uintptr(u uintptr) *uintptr { function UUID (line 110) | func UUID(u uuid.UUID) *uuid.UUID { function Time (line 115) | func Time(t time.Time) *time.Time { function MustParseDate (line 121) | func MustParseDate(date string) time.Time { function MustParseDateTime (line 131) | func MustParseDateTime(datetime string) time.Time { FILE: backend/pkg/observability/langfuse/api/projects.go type ProjectsCreateRequest (line 19) | type ProjectsCreateRequest struct method require (line 30) | func (p *ProjectsCreateRequest) require(field *big.Int) { method SetName (line 39) | func (p *ProjectsCreateRequest) SetName(name string) { method SetMetadata (line 46) | func (p *ProjectsCreateRequest) SetMetadata(metadata map[string]interf... method SetRetention (line 53) | func (p *ProjectsCreateRequest) SetRetention(retention int) { method UnmarshalJSON (line 58) | func (p *ProjectsCreateRequest) UnmarshalJSON(data []byte) error { method MarshalJSON (line 68) | func (p *ProjectsCreateRequest) MarshalJSON() ([]byte, error) { type ProjectsCreateAPIKeyRequest (line 86) | type ProjectsCreateAPIKeyRequest struct method require (line 99) | func (p *ProjectsCreateAPIKeyRequest) require(field *big.Int) { method SetProjectID (line 108) | func (p *ProjectsCreateAPIKeyRequest) SetProjectID(projectID string) { method SetNote (line 115) | func (p *ProjectsCreateAPIKeyRequest) SetNote(note *string) { method SetPublicKey (line 122) | func (p *ProjectsCreateAPIKeyRequest) SetPublicKey(publicKey *string) { method SetSecretKey (line 129) | func (p *ProjectsCreateAPIKeyRequest) SetSecretKey(secretKey *string) { method UnmarshalJSON (line 134) | func (p *ProjectsCreateAPIKeyRequest) UnmarshalJSON(data []byte) error { method MarshalJSON (line 144) | func (p *ProjectsCreateAPIKeyRequest) MarshalJSON() ([]byte, error) { type ProjectsDeleteRequest (line 159) | type ProjectsDeleteRequest struct method require (line 166) | func (p *ProjectsDeleteRequest) require(field *big.Int) { method SetProjectID (line 175) | func (p *ProjectsDeleteRequest) SetProjectID(projectID string) { type ProjectsDeleteAPIKeyRequest (line 185) | type ProjectsDeleteAPIKeyRequest struct method require (line 193) | func (p *ProjectsDeleteAPIKeyRequest) require(field *big.Int) { method SetProjectID (line 202) | func (p *ProjectsDeleteAPIKeyRequest) SetProjectID(projectID string) { method SetAPIKeyID (line 209) | func (p *ProjectsDeleteAPIKeyRequest) SetAPIKeyID(apiKeyID string) { type ProjectsGetAPIKeysRequest (line 218) | type ProjectsGetAPIKeysRequest struct method require (line 225) | func (p *ProjectsGetAPIKeysRequest) require(field *big.Int) { method SetProjectID (line 234) | func (p *ProjectsGetAPIKeysRequest) SetProjectID(projectID string) { type APIKeyDeletionResponse (line 244) | type APIKeyDeletionResponse struct method GetSuccess (line 254) | func (a *APIKeyDeletionResponse) GetSuccess() bool { method GetExtraProperties (line 261) | func (a *APIKeyDeletionResponse) GetExtraProperties() map[string]inter... method require (line 265) | func (a *APIKeyDeletionResponse) require(field *big.Int) { method SetSuccess (line 274) | func (a *APIKeyDeletionResponse) SetSuccess(success bool) { method UnmarshalJSON (line 279) | func (a *APIKeyDeletionResponse) UnmarshalJSON(data []byte) error { method MarshalJSON (line 295) | func (a *APIKeyDeletionResponse) MarshalJSON() ([]byte, error) { method String (line 306) | func (a *APIKeyDeletionResponse) String() string { type APIKeyList (line 323) | type APIKeyList struct method GetAPIKeys (line 333) | func (a *APIKeyList) GetAPIKeys() []*APIKeySummary { method GetExtraProperties (line 340) | func (a *APIKeyList) GetExtraProperties() map[string]interface{} { method require (line 344) | func (a *APIKeyList) require(field *big.Int) { method SetAPIKeys (line 353) | func (a *APIKeyList) SetAPIKeys(apiKeys []*APIKeySummary) { method UnmarshalJSON (line 358) | func (a *APIKeyList) UnmarshalJSON(data []byte) error { method MarshalJSON (line 374) | func (a *APIKeyList) MarshalJSON() ([]byte, error) { method String (line 385) | func (a *APIKeyList) String() string { type APIKeyResponse (line 407) | type APIKeyResponse struct method GetID (line 422) | func (a *APIKeyResponse) GetID() string { method GetCreatedAt (line 429) | func (a *APIKeyResponse) GetCreatedAt() time.Time { method GetPublicKey (line 436) | func (a *APIKeyResponse) GetPublicKey() string { method GetSecretKey (line 443) | func (a *APIKeyResponse) GetSecretKey() string { method GetDisplaySecretKey (line 450) | func (a *APIKeyResponse) GetDisplaySecretKey() string { method GetNote (line 457) | func (a *APIKeyResponse) GetNote() *string { method GetExtraProperties (line 464) | func (a *APIKeyResponse) GetExtraProperties() map[string]interface{} { method require (line 468) | func (a *APIKeyResponse) require(field *big.Int) { method SetID (line 477) | func (a *APIKeyResponse) SetID(id string) { method SetCreatedAt (line 484) | func (a *APIKeyResponse) SetCreatedAt(createdAt time.Time) { method SetPublicKey (line 491) | func (a *APIKeyResponse) SetPublicKey(publicKey string) { method SetSecretKey (line 498) | func (a *APIKeyResponse) SetSecretKey(secretKey string) { method SetDisplaySecretKey (line 505) | func (a *APIKeyResponse) SetDisplaySecretKey(displaySecretKey string) { method SetNote (line 512) | func (a *APIKeyResponse) SetNote(note *string) { method UnmarshalJSON (line 517) | func (a *APIKeyResponse) UnmarshalJSON(data []byte) error { method MarshalJSON (line 539) | func (a *APIKeyResponse) MarshalJSON() ([]byte, error) { method String (line 552) | func (a *APIKeyResponse) String() string { type APIKeySummary (line 575) | type APIKeySummary struct method GetID (line 591) | func (a *APIKeySummary) GetID() string { method GetCreatedAt (line 598) | func (a *APIKeySummary) GetCreatedAt() time.Time { method GetExpiresAt (line 605) | func (a *APIKeySummary) GetExpiresAt() *time.Time { method GetLastUsedAt (line 612) | func (a *APIKeySummary) GetLastUsedAt() *time.Time { method GetNote (line 619) | func (a *APIKeySummary) GetNote() *string { method GetPublicKey (line 626) | func (a *APIKeySummary) GetPublicKey() string { method GetDisplaySecretKey (line 633) | func (a *APIKeySummary) GetDisplaySecretKey() string { method GetExtraProperties (line 640) | func (a *APIKeySummary) GetExtraProperties() map[string]interface{} { method require (line 644) | func (a *APIKeySummary) require(field *big.Int) { method SetID (line 653) | func (a *APIKeySummary) SetID(id string) { method SetCreatedAt (line 660) | func (a *APIKeySummary) SetCreatedAt(createdAt time.Time) { method SetExpiresAt (line 667) | func (a *APIKeySummary) SetExpiresAt(expiresAt *time.Time) { method SetLastUsedAt (line 674) | func (a *APIKeySummary) SetLastUsedAt(lastUsedAt *time.Time) { method SetNote (line 681) | func (a *APIKeySummary) SetNote(note *string) { method SetPublicKey (line 688) | func (a *APIKeySummary) SetPublicKey(publicKey string) { method SetDisplaySecretKey (line 695) | func (a *APIKeySummary) SetDisplaySecretKey(displaySecretKey string) { method UnmarshalJSON (line 700) | func (a *APIKeySummary) UnmarshalJSON(data []byte) error { method MarshalJSON (line 726) | func (a *APIKeySummary) MarshalJSON() ([]byte, error) { method String (line 743) | func (a *APIKeySummary) String() string { type Organization (line 760) | type Organization struct method GetID (line 773) | func (o *Organization) GetID() string { method GetName (line 780) | func (o *Organization) GetName() string { method GetExtraProperties (line 787) | func (o *Organization) GetExtraProperties() map[string]interface{} { method require (line 791) | func (o *Organization) require(field *big.Int) { method SetID (line 800) | func (o *Organization) SetID(id string) { method SetName (line 807) | func (o *Organization) SetName(name string) { method UnmarshalJSON (line 812) | func (o *Organization) UnmarshalJSON(data []byte) error { method MarshalJSON (line 828) | func (o *Organization) MarshalJSON() ([]byte, error) { method String (line 839) | func (o *Organization) String() string { type Project (line 859) | type Project struct method GetID (line 876) | func (p *Project) GetID() string { method GetName (line 883) | func (p *Project) GetName() string { method GetOrganization (line 890) | func (p *Project) GetOrganization() *Organization { method GetMetadata (line 897) | func (p *Project) GetMetadata() map[string]interface{} { method GetRetentionDays (line 904) | func (p *Project) GetRetentionDays() *int { method GetExtraProperties (line 911) | func (p *Project) GetExtraProperties() map[string]interface{} { method require (line 915) | func (p *Project) require(field *big.Int) { method SetID (line 924) | func (p *Project) SetID(id string) { method SetName (line 931) | func (p *Project) SetName(name string) { method SetOrganization (line 938) | func (p *Project) SetOrganization(organization *Organization) { method SetMetadata (line 945) | func (p *Project) SetMetadata(metadata map[string]interface{}) { method SetRetentionDays (line 952) | func (p *Project) SetRetentionDays(retentionDays *int) { method UnmarshalJSON (line 957) | func (p *Project) UnmarshalJSON(data []byte) error { method MarshalJSON (line 973) | func (p *Project) MarshalJSON() ([]byte, error) { method String (line 984) | func (p *Project) String() string { type ProjectDeletionResponse (line 1001) | type ProjectDeletionResponse struct method GetSuccess (line 1012) | func (p *ProjectDeletionResponse) GetSuccess() bool { method GetMessage (line 1019) | func (p *ProjectDeletionResponse) GetMessage() string { method GetExtraProperties (line 1026) | func (p *ProjectDeletionResponse) GetExtraProperties() map[string]inte... method require (line 1030) | func (p *ProjectDeletionResponse) require(field *big.Int) { method SetSuccess (line 1039) | func (p *ProjectDeletionResponse) SetSuccess(success bool) { method SetMessage (line 1046) | func (p *ProjectDeletionResponse) SetMessage(message string) { method UnmarshalJSON (line 1051) | func (p *ProjectDeletionResponse) UnmarshalJSON(data []byte) error { method MarshalJSON (line 1067) | func (p *ProjectDeletionResponse) MarshalJSON() ([]byte, error) { method String (line 1078) | func (p *ProjectDeletionResponse) String() string { type Projects (line 1094) | type Projects struct method GetData (line 1104) | func (p *Projects) GetData() []*Project { method GetExtraProperties (line 1111) | func (p *Projects) GetExtraProperties() map[string]interface{} { method require (line 1115) | func (p *Projects) require(field *big.Int) { method SetData (line 1124) | func (p *Projects) SetData(data []*Project) { method UnmarshalJSON (line 1129) | func (p *Projects) UnmarshalJSON(data []byte) error { method MarshalJSON (line 1145) | func (p *Projects) MarshalJSON() ([]byte, error) { method String (line 1156) | func (p *Projects) String() string { type ProjectsUpdateRequest (line 1175) | type ProjectsUpdateRequest struct method require (line 1190) | func (p *ProjectsUpdateRequest) require(field *big.Int) { method SetProjectID (line 1199) | func (p *ProjectsUpdateRequest) SetProjectID(projectID string) { method SetName (line 1206) | func (p *ProjectsUpdateRequest) SetName(name string) { method SetMetadata (line 1213) | func (p *ProjectsUpdateRequest) SetMetadata(metadata map[string]interf... method SetRetention (line 1220) | func (p *ProjectsUpdateRequest) SetRetention(retention *int) { method UnmarshalJSON (line 1225) | func (p *ProjectsUpdateRequest) UnmarshalJSON(data []byte) error { method MarshalJSON (line 1235) | func (p *ProjectsUpdateRequest) MarshalJSON() ([]byte, error) { FILE: backend/pkg/observability/langfuse/api/projects/client.go type Client (line 14) | type Client struct method Get (line 37) | func (c *Client) Get( method Create (line 52) | func (c *Client) Create( method Update (line 69) | func (c *Client) Update( method Delete (line 86) | func (c *Client) Delete( method Getapikeys (line 103) | func (c *Client) Getapikeys( method Createapikey (line 120) | func (c *Client) Createapikey( method Deleteapikey (line 137) | func (c *Client) Deleteapikey( function NewClient (line 22) | func NewClient(options *core.RequestOptions) *Client { FILE: backend/pkg/observability/langfuse/api/projects/raw_client.go type RawClient (line 15) | type RawClient struct method Get (line 34) | func (r *RawClient) Get( method Create (line 74) | func (r *RawClient) Create( method Update (line 117) | func (r *RawClient) Update( method Delete (line 163) | func (r *RawClient) Delete( method Getapikeys (line 207) | func (r *RawClient) Getapikeys( method Createapikey (line 251) | func (r *RawClient) Createapikey( method Deleteapikey (line 297) | func (r *RawClient) Deleteapikey( function NewRawClient (line 21) | func NewRawClient(options *core.RequestOptions) *RawClient { FILE: backend/pkg/observability/langfuse/api/prompts.go type PromptsDeleteRequest (line 19) | type PromptsDeleteRequest struct method require (line 31) | func (p *PromptsDeleteRequest) require(field *big.Int) { method SetPromptName (line 40) | func (p *PromptsDeleteRequest) SetPromptName(promptName string) { method SetLabel (line 47) | func (p *PromptsDeleteRequest) SetLabel(label *string) { method SetVersion (line 54) | func (p *PromptsDeleteRequest) SetVersion(version *int) { type PromptsGetRequest (line 65) | type PromptsGetRequest struct method require (line 78) | func (p *PromptsGetRequest) require(field *big.Int) { method SetPromptName (line 87) | func (p *PromptsGetRequest) SetPromptName(promptName string) { method SetVersion (line 94) | func (p *PromptsGetRequest) SetVersion(version *int) { method SetLabel (line 101) | func (p *PromptsGetRequest) SetLabel(label *string) { type PromptsListRequest (line 116) | type PromptsListRequest struct method require (line 133) | func (p *PromptsListRequest) require(field *big.Int) { method SetName (line 142) | func (p *PromptsListRequest) SetName(name *string) { method SetLabel (line 149) | func (p *PromptsListRequest) SetLabel(label *string) { method SetTag (line 156) | func (p *PromptsListRequest) SetTag(tag *string) { method SetPage (line 163) | func (p *PromptsListRequest) SetPage(page *int) { method SetLimit (line 170) | func (p *PromptsListRequest) SetLimit(limit *int) { method SetFromUpdatedAt (line 177) | func (p *PromptsListRequest) SetFromUpdatedAt(fromUpdatedAt *time.Time) { method SetToUpdatedAt (line 184) | func (p *PromptsListRequest) SetToUpdatedAt(toUpdatedAt *time.Time) { type CreateChatPromptRequest (line 198) | type CreateChatPromptRequest struct method GetName (line 216) | func (c *CreateChatPromptRequest) GetName() string { method GetPrompt (line 223) | func (c *CreateChatPromptRequest) GetPrompt() []*ChatMessageWithPlaceh... method GetConfig (line 230) | func (c *CreateChatPromptRequest) GetConfig() interface{} { method GetLabels (line 237) | func (c *CreateChatPromptRequest) GetLabels() []string { method GetTags (line 244) | func (c *CreateChatPromptRequest) GetTags() []string { method GetCommitMessage (line 251) | func (c *CreateChatPromptRequest) GetCommitMessage() *string { method GetExtraProperties (line 258) | func (c *CreateChatPromptRequest) GetExtraProperties() map[string]inte... method require (line 262) | func (c *CreateChatPromptRequest) require(field *big.Int) { method SetName (line 271) | func (c *CreateChatPromptRequest) SetName(name string) { method SetPrompt (line 278) | func (c *CreateChatPromptRequest) SetPrompt(prompt []*ChatMessageWithP... method SetConfig (line 285) | func (c *CreateChatPromptRequest) SetConfig(config interface{}) { method SetLabels (line 292) | func (c *CreateChatPromptRequest) SetLabels(labels []string) { method SetTags (line 299) | func (c *CreateChatPromptRequest) SetTags(tags []string) { method SetCommitMessage (line 306) | func (c *CreateChatPromptRequest) SetCommitMessage(commitMessage *stri... method UnmarshalJSON (line 311) | func (c *CreateChatPromptRequest) UnmarshalJSON(data []byte) error { method MarshalJSON (line 327) | func (c *CreateChatPromptRequest) MarshalJSON() ([]byte, error) { method String (line 338) | func (c *CreateChatPromptRequest) String() string { type CreatePromptRequest (line 350) | type CreatePromptRequest struct method GetCreatePromptRequestZero (line 357) | func (c *CreatePromptRequest) GetCreatePromptRequestZero() *CreateProm... method GetCreatePromptRequestOne (line 364) | func (c *CreatePromptRequest) GetCreatePromptRequestOne() *CreatePromp... method UnmarshalJSON (line 371) | func (c *CreatePromptRequest) UnmarshalJSON(data []byte) error { method MarshalJSON (line 387) | func (c CreatePromptRequest) MarshalJSON() ([]byte, error) { method Accept (line 402) | func (c *CreatePromptRequest) Accept(visitor CreatePromptRequestVisito... type CreatePromptRequestVisitor (line 397) | type CreatePromptRequestVisitor interface type CreatePromptRequestOne (line 422) | type CreatePromptRequestOne struct method GetName (line 441) | func (c *CreatePromptRequestOne) GetName() string { method GetPrompt (line 448) | func (c *CreatePromptRequestOne) GetPrompt() string { method GetConfig (line 455) | func (c *CreatePromptRequestOne) GetConfig() interface{} { method GetLabels (line 462) | func (c *CreatePromptRequestOne) GetLabels() []string { method GetTags (line 469) | func (c *CreatePromptRequestOne) GetTags() []string { method GetCommitMessage (line 476) | func (c *CreatePromptRequestOne) GetCommitMessage() *string { method GetType (line 483) | func (c *CreatePromptRequestOne) GetType() *CreatePromptRequestOneType { method GetExtraProperties (line 490) | func (c *CreatePromptRequestOne) GetExtraProperties() map[string]inter... method require (line 494) | func (c *CreatePromptRequestOne) require(field *big.Int) { method SetName (line 503) | func (c *CreatePromptRequestOne) SetName(name string) { method SetPrompt (line 510) | func (c *CreatePromptRequestOne) SetPrompt(prompt string) { method SetConfig (line 517) | func (c *CreatePromptRequestOne) SetConfig(config interface{}) { method SetLabels (line 524) | func (c *CreatePromptRequestOne) SetLabels(labels []string) { method SetTags (line 531) | func (c *CreatePromptRequestOne) SetTags(tags []string) { method SetCommitMessage (line 538) | func (c *CreatePromptRequestOne) SetCommitMessage(commitMessage *strin... method SetType (line 545) | func (c *CreatePromptRequestOne) SetType(type_ *CreatePromptRequestOne... method UnmarshalJSON (line 550) | func (c *CreatePromptRequestOne) UnmarshalJSON(data []byte) error { method MarshalJSON (line 566) | func (c *CreatePromptRequestOne) MarshalJSON() ([]byte, error) { method String (line 577) | func (c *CreatePromptRequestOne) String() string { type CreatePromptRequestOneType (line 589) | type CreatePromptRequestOneType method Ptr (line 604) | func (c CreatePromptRequestOneType) Ptr() *CreatePromptRequestOneType { constant CreatePromptRequestOneTypeText (line 592) | CreatePromptRequestOneTypeText CreatePromptRequestOneType = "text" function NewCreatePromptRequestOneTypeFromString (line 595) | func NewCreatePromptRequestOneTypeFromString(s string) (CreatePromptRequ... type CreatePromptRequestZero (line 618) | type CreatePromptRequestZero struct method GetName (line 637) | func (c *CreatePromptRequestZero) GetName() string { method GetPrompt (line 644) | func (c *CreatePromptRequestZero) GetPrompt() []*ChatMessageWithPlaceh... method GetConfig (line 651) | func (c *CreatePromptRequestZero) GetConfig() interface{} { method GetLabels (line 658) | func (c *CreatePromptRequestZero) GetLabels() []string { method GetTags (line 665) | func (c *CreatePromptRequestZero) GetTags() []string { method GetCommitMessage (line 672) | func (c *CreatePromptRequestZero) GetCommitMessage() *string { method GetType (line 679) | func (c *CreatePromptRequestZero) GetType() *CreatePromptRequestZeroTy... method GetExtraProperties (line 686) | func (c *CreatePromptRequestZero) GetExtraProperties() map[string]inte... method require (line 690) | func (c *CreatePromptRequestZero) require(field *big.Int) { method SetName (line 699) | func (c *CreatePromptRequestZero) SetName(name string) { method SetPrompt (line 706) | func (c *CreatePromptRequestZero) SetPrompt(prompt []*ChatMessageWithP... method SetConfig (line 713) | func (c *CreatePromptRequestZero) SetConfig(config interface{}) { method SetLabels (line 720) | func (c *CreatePromptRequestZero) SetLabels(labels []string) { method SetTags (line 727) | func (c *CreatePromptRequestZero) SetTags(tags []string) { method SetCommitMessage (line 734) | func (c *CreatePromptRequestZero) SetCommitMessage(commitMessage *stri... method SetType (line 741) | func (c *CreatePromptRequestZero) SetType(type_ *CreatePromptRequestZe... method UnmarshalJSON (line 746) | func (c *CreatePromptRequestZero) UnmarshalJSON(data []byte) error { method MarshalJSON (line 762) | func (c *CreatePromptRequestZero) MarshalJSON() ([]byte, error) { method String (line 773) | func (c *CreatePromptRequestZero) String() string { type CreatePromptRequestZeroType (line 785) | type CreatePromptRequestZeroType method Ptr (line 800) | func (c CreatePromptRequestZeroType) Ptr() *CreatePromptRequestZeroType { constant CreatePromptRequestZeroTypeChat (line 788) | CreatePromptRequestZeroTypeChat CreatePromptRequestZeroType = "chat" function NewCreatePromptRequestZeroTypeFromString (line 791) | func NewCreatePromptRequestZeroTypeFromString(s string) (CreatePromptReq... type CreateTextPromptRequest (line 813) | type CreateTextPromptRequest struct method GetName (line 831) | func (c *CreateTextPromptRequest) GetName() string { method GetPrompt (line 838) | func (c *CreateTextPromptRequest) GetPrompt() string { method GetConfig (line 845) | func (c *CreateTextPromptRequest) GetConfig() interface{} { method GetLabels (line 852) | func (c *CreateTextPromptRequest) GetLabels() []string { method GetTags (line 859) | func (c *CreateTextPromptRequest) GetTags() []string { method GetCommitMessage (line 866) | func (c *CreateTextPromptRequest) GetCommitMessage() *string { method GetExtraProperties (line 873) | func (c *CreateTextPromptRequest) GetExtraProperties() map[string]inte... method require (line 877) | func (c *CreateTextPromptRequest) require(field *big.Int) { method SetName (line 886) | func (c *CreateTextPromptRequest) SetName(name string) { method SetPrompt (line 893) | func (c *CreateTextPromptRequest) SetPrompt(prompt string) { method SetConfig (line 900) | func (c *CreateTextPromptRequest) SetConfig(config interface{}) { method SetLabels (line 907) | func (c *CreateTextPromptRequest) SetLabels(labels []string) { method SetTags (line 914) | func (c *CreateTextPromptRequest) SetTags(tags []string) { method SetCommitMessage (line 921) | func (c *CreateTextPromptRequest) SetCommitMessage(commitMessage *stri... method UnmarshalJSON (line 926) | func (c *CreateTextPromptRequest) UnmarshalJSON(data []byte) error { method MarshalJSON (line 942) | func (c *CreateTextPromptRequest) MarshalJSON() ([]byte, error) { method String (line 953) | func (c *CreateTextPromptRequest) String() string { type PromptMeta (line 975) | type PromptMeta struct method GetName (line 992) | func (p *PromptMeta) GetName() string { method GetType (line 999) | func (p *PromptMeta) GetType() PromptType { method GetVersions (line 1006) | func (p *PromptMeta) GetVersions() []int { method GetLabels (line 1013) | func (p *PromptMeta) GetLabels() []string { method GetTags (line 1020) | func (p *PromptMeta) GetTags() []string { method GetLastUpdatedAt (line 1027) | func (p *PromptMeta) GetLastUpdatedAt() time.Time { method GetLastConfig (line 1034) | func (p *PromptMeta) GetLastConfig() interface{} { method GetExtraProperties (line 1041) | func (p *PromptMeta) GetExtraProperties() map[string]interface{} { method require (line 1045) | func (p *PromptMeta) require(field *big.Int) { method SetName (line 1054) | func (p *PromptMeta) SetName(name string) { method SetType (line 1061) | func (p *PromptMeta) SetType(type_ PromptType) { method SetVersions (line 1068) | func (p *PromptMeta) SetVersions(versions []int) { method SetLabels (line 1075) | func (p *PromptMeta) SetLabels(labels []string) { method SetTags (line 1082) | func (p *PromptMeta) SetTags(tags []string) { method SetLastUpdatedAt (line 1089) | func (p *PromptMeta) SetLastUpdatedAt(lastUpdatedAt time.Time) { method SetLastConfig (line 1096) | func (p *PromptMeta) SetLastConfig(lastConfig interface{}) { method UnmarshalJSON (line 1101) | func (p *PromptMeta) UnmarshalJSON(data []byte) error { method MarshalJSON (line 1123) | func (p *PromptMeta) MarshalJSON() ([]byte, error) { method String (line 1136) | func (p *PromptMeta) String() string { type PromptMetaListResponse (line 1153) | type PromptMetaListResponse struct method GetData (line 1164) | func (p *PromptMetaListResponse) GetData() []*PromptMeta { method GetMeta (line 1171) | func (p *PromptMetaListResponse) GetMeta() *UtilsMetaResponse { method GetExtraProperties (line 1178) | func (p *PromptMetaListResponse) GetExtraProperties() map[string]inter... method require (line 1182) | func (p *PromptMetaListResponse) require(field *big.Int) { method SetData (line 1191) | func (p *PromptMetaListResponse) SetData(data []*PromptMeta) { method SetMeta (line 1198) | func (p *PromptMetaListResponse) SetMeta(meta *UtilsMetaResponse) { method UnmarshalJSON (line 1203) | func (p *PromptMetaListResponse) UnmarshalJSON(data []byte) error { method MarshalJSON (line 1219) | func (p *PromptMetaListResponse) MarshalJSON() ([]byte, error) { method String (line 1230) | func (p *PromptMetaListResponse) String() string { type PromptType (line 1242) | type PromptType method Ptr (line 1260) | func (p PromptType) Ptr() *PromptType { constant PromptTypeChat (line 1245) | PromptTypeChat PromptType = "chat" constant PromptTypeText (line 1246) | PromptTypeText PromptType = "text" function NewPromptTypeFromString (line 1249) | func NewPromptTypeFromString(s string) (PromptType, error) { FILE: backend/pkg/observability/langfuse/api/prompts/client.go type Client (line 14) | type Client struct method Get (line 37) | func (c *Client) Get( method Delete (line 54) | func (c *Client) Delete( method List (line 71) | func (c *Client) List( method Create (line 88) | func (c *Client) Create( function NewClient (line 22) | func NewClient(options *core.RequestOptions) *Client { FILE: backend/pkg/observability/langfuse/api/prompts/raw_client.go type RawClient (line 15) | type RawClient struct method Get (line 34) | func (r *RawClient) Get( method Delete (line 85) | func (r *RawClient) Delete( method List (line 134) | func (r *RawClient) List( method Create (line 182) | func (r *RawClient) Create( function NewRawClient (line 21) | func NewRawClient(options *core.RequestOptions) *RawClient { FILE: backend/pkg/observability/langfuse/api/promptversion.go type PromptVersionUpdateRequest (line 17) | type PromptVersionUpdateRequest struct method require (line 30) | func (p *PromptVersionUpdateRequest) require(field *big.Int) { method SetName (line 39) | func (p *PromptVersionUpdateRequest) SetName(name string) { method SetVersion (line 46) | func (p *PromptVersionUpdateRequest) SetVersion(version int) { method SetNewLabels (line 53) | func (p *PromptVersionUpdateRequest) SetNewLabels(newLabels []string) { method UnmarshalJSON (line 58) | func (p *PromptVersionUpdateRequest) UnmarshalJSON(data []byte) error { method MarshalJSON (line 68) | func (p *PromptVersionUpdateRequest) MarshalJSON() ([]byte, error) { FILE: backend/pkg/observability/langfuse/api/promptversion/client.go type Client (line 14) | type Client struct method Update (line 37) | func (c *Client) Update( function NewClient (line 22) | func NewClient(options *core.RequestOptions) *Client { FILE: backend/pkg/observability/langfuse/api/promptversion/raw_client.go type RawClient (line 15) | type RawClient struct method Update (line 34) | func (r *RawClient) Update( function NewRawClient (line 21) | func NewRawClient(options *core.RequestOptions) *RawClient { FILE: backend/pkg/observability/langfuse/api/scim.go type SCIMCreateUserRequest (line 20) | type SCIMCreateUserRequest struct method require (line 36) | func (s *SCIMCreateUserRequest) require(field *big.Int) { method SetUserName (line 45) | func (s *SCIMCreateUserRequest) SetUserName(userName string) { method SetName (line 52) | func (s *SCIMCreateUserRequest) SetName(name *SCIMName) { method SetEmails (line 59) | func (s *SCIMCreateUserRequest) SetEmails(emails []*SCIMEmail) { method SetActive (line 66) | func (s *SCIMCreateUserRequest) SetActive(active *bool) { method SetPassword (line 73) | func (s *SCIMCreateUserRequest) SetPassword(password *string) { method UnmarshalJSON (line 78) | func (s *SCIMCreateUserRequest) UnmarshalJSON(data []byte) error { method MarshalJSON (line 88) | func (s *SCIMCreateUserRequest) MarshalJSON() ([]byte, error) { type SCIMDeleteUserRequest (line 103) | type SCIMDeleteUserRequest struct method require (line 110) | func (s *SCIMDeleteUserRequest) require(field *big.Int) { method SetUserID (line 119) | func (s *SCIMDeleteUserRequest) SetUserID(userID string) { type SCIMGetUserRequest (line 128) | type SCIMGetUserRequest struct method require (line 135) | func (s *SCIMGetUserRequest) require(field *big.Int) { method SetUserID (line 144) | func (s *SCIMGetUserRequest) SetUserID(userID string) { type SCIMListUsersRequest (line 155) | type SCIMListUsersRequest struct method require (line 167) | func (s *SCIMListUsersRequest) require(field *big.Int) { method SetFilter (line 176) | func (s *SCIMListUsersRequest) SetFilter(filter *string) { method SetStartIndex (line 183) | func (s *SCIMListUsersRequest) SetStartIndex(startIndex *int) { method SetCount (line 190) | func (s *SCIMListUsersRequest) SetCount(count *int) { type AuthenticationScheme (line 203) | type AuthenticationScheme struct method GetName (line 217) | func (a *AuthenticationScheme) GetName() string { method GetDescription (line 224) | func (a *AuthenticationScheme) GetDescription() string { method GetSpecURI (line 231) | func (a *AuthenticationScheme) GetSpecURI() string { method GetType (line 238) | func (a *AuthenticationScheme) GetType() string { method GetPrimary (line 245) | func (a *AuthenticationScheme) GetPrimary() bool { method GetExtraProperties (line 252) | func (a *AuthenticationScheme) GetExtraProperties() map[string]interfa... method require (line 256) | func (a *AuthenticationScheme) require(field *big.Int) { method SetName (line 265) | func (a *AuthenticationScheme) SetName(name string) { method SetDescription (line 272) | func (a *AuthenticationScheme) SetDescription(description string) { method SetSpecURI (line 279) | func (a *AuthenticationScheme) SetSpecURI(specURI string) { method SetType (line 286) | func (a *AuthenticationScheme) SetType(type_ string) { method SetPrimary (line 293) | func (a *AuthenticationScheme) SetPrimary(primary bool) { method UnmarshalJSON (line 298) | func (a *AuthenticationScheme) UnmarshalJSON(data []byte) error { method MarshalJSON (line 314) | func (a *AuthenticationScheme) MarshalJSON() ([]byte, error) { method String (line 325) | func (a *AuthenticationScheme) String() string { type BulkConfig (line 343) | type BulkConfig struct method GetSupported (line 355) | func (b *BulkConfig) GetSupported() bool { method GetMaxOperations (line 362) | func (b *BulkConfig) GetMaxOperations() int { method GetMaxPayloadSize (line 369) | func (b *BulkConfig) GetMaxPayloadSize() int { method GetExtraProperties (line 376) | func (b *BulkConfig) GetExtraProperties() map[string]interface{} { method require (line 380) | func (b *BulkConfig) require(field *big.Int) { method SetSupported (line 389) | func (b *BulkConfig) SetSupported(supported bool) { method SetMaxOperations (line 396) | func (b *BulkConfig) SetMaxOperations(maxOperations int) { method SetMaxPayloadSize (line 403) | func (b *BulkConfig) SetMaxPayloadSize(maxPayloadSize int) { method UnmarshalJSON (line 408) | func (b *BulkConfig) UnmarshalJSON(data []byte) error { method MarshalJSON (line 424) | func (b *BulkConfig) MarshalJSON() ([]byte, error) { method String (line 435) | func (b *BulkConfig) String() string { type EmptyResponse (line 448) | type EmptyResponse struct method GetExtraProperties (line 457) | func (e *EmptyResponse) GetExtraProperties() map[string]interface{} { method require (line 461) | func (e *EmptyResponse) require(field *big.Int) { method UnmarshalJSON (line 468) | func (e *EmptyResponse) UnmarshalJSON(data []byte) error { method MarshalJSON (line 484) | func (e *EmptyResponse) MarshalJSON() ([]byte, error) { method String (line 495) | func (e *EmptyResponse) String() string { type FilterConfig (line 512) | type FilterConfig struct method GetSupported (line 523) | func (f *FilterConfig) GetSupported() bool { method GetMaxResults (line 530) | func (f *FilterConfig) GetMaxResults() int { method GetExtraProperties (line 537) | func (f *FilterConfig) GetExtraProperties() map[string]interface{} { method require (line 541) | func (f *FilterConfig) require(field *big.Int) { method SetSupported (line 550) | func (f *FilterConfig) SetSupported(supported bool) { method SetMaxResults (line 557) | func (f *FilterConfig) SetMaxResults(maxResults int) { method UnmarshalJSON (line 562) | func (f *FilterConfig) UnmarshalJSON(data []byte) error { method MarshalJSON (line 578) | func (f *FilterConfig) MarshalJSON() ([]byte, error) { method String (line 589) | func (f *FilterConfig) String() string { type ResourceMeta (line 606) | type ResourceMeta struct method GetResourceType (line 617) | func (r *ResourceMeta) GetResourceType() string { method GetLocation (line 624) | func (r *ResourceMeta) GetLocation() string { method GetExtraProperties (line 631) | func (r *ResourceMeta) GetExtraProperties() map[string]interface{} { method require (line 635) | func (r *ResourceMeta) require(field *big.Int) { method SetResourceType (line 644) | func (r *ResourceMeta) SetResourceType(resourceType string) { method SetLocation (line 651) | func (r *ResourceMeta) SetLocation(location string) { method UnmarshalJSON (line 656) | func (r *ResourceMeta) UnmarshalJSON(data []byte) error { method MarshalJSON (line 672) | func (r *ResourceMeta) MarshalJSON() ([]byte, error) { method String (line 683) | func (r *ResourceMeta) String() string { type ResourceType (line 706) | type ResourceType struct method GetSchemas (line 723) | func (r *ResourceType) GetSchemas() []string { method GetID (line 730) | func (r *ResourceType) GetID() string { method GetName (line 737) | func (r *ResourceType) GetName() string { method GetEndpoint (line 744) | func (r *ResourceType) GetEndpoint() string { method GetDescription (line 751) | func (r *ResourceType) GetDescription() string { method GetSchema (line 758) | func (r *ResourceType) GetSchema() string { method GetSchemaExtensions (line 765) | func (r *ResourceType) GetSchemaExtensions() []*SchemaExtension { method GetMeta (line 772) | func (r *ResourceType) GetMeta() *ResourceMeta { method GetExtraProperties (line 779) | func (r *ResourceType) GetExtraProperties() map[string]interface{} { method require (line 783) | func (r *ResourceType) require(field *big.Int) { method SetSchemas (line 792) | func (r *ResourceType) SetSchemas(schemas []string) { method SetID (line 799) | func (r *ResourceType) SetID(id string) { method SetName (line 806) | func (r *ResourceType) SetName(name string) { method SetEndpoint (line 813) | func (r *ResourceType) SetEndpoint(endpoint string) { method SetDescription (line 820) | func (r *ResourceType) SetDescription(description string) { method SetSchema (line 827) | func (r *ResourceType) SetSchema(schema string) { method SetSchemaExtensions (line 834) | func (r *ResourceType) SetSchemaExtensions(schemaExtensions []*SchemaE... method SetMeta (line 841) | func (r *ResourceType) SetMeta(meta *ResourceMeta) { method UnmarshalJSON (line 846) | func (r *ResourceType) UnmarshalJSON(data []byte) error { method MarshalJSON (line 862) | func (r *ResourceType) MarshalJSON() ([]byte, error) { method String (line 873) | func (r *ResourceType) String() string { type ResourceTypesResponse (line 891) | type ResourceTypesResponse struct method GetSchemas (line 903) | func (r *ResourceTypesResponse) GetSchemas() []string { method GetTotalResults (line 910) | func (r *ResourceTypesResponse) GetTotalResults() int { method GetResources (line 917) | func (r *ResourceTypesResponse) GetResources() []*ResourceType { method GetExtraProperties (line 924) | func (r *ResourceTypesResponse) GetExtraProperties() map[string]interf... method require (line 928) | func (r *ResourceTypesResponse) require(field *big.Int) { method SetSchemas (line 937) | func (r *ResourceTypesResponse) SetSchemas(schemas []string) { method SetTotalResults (line 944) | func (r *ResourceTypesResponse) SetTotalResults(totalResults int) { method SetResources (line 951) | func (r *ResourceTypesResponse) SetResources(resources []*ResourceType) { method UnmarshalJSON (line 956) | func (r *ResourceTypesResponse) UnmarshalJSON(data []byte) error { method MarshalJSON (line 972) | func (r *ResourceTypesResponse) MarshalJSON() ([]byte, error) { method String (line 983) | func (r *ResourceTypesResponse) String() string { type SchemaExtension (line 1000) | type SchemaExtension struct method GetSchema (line 1011) | func (s *SchemaExtension) GetSchema() string { method GetRequired (line 1018) | func (s *SchemaExtension) GetRequired() bool { method GetExtraProperties (line 1025) | func (s *SchemaExtension) GetExtraProperties() map[string]interface{} { method require (line 1029) | func (s *SchemaExtension) require(field *big.Int) { method SetSchema (line 1038) | func (s *SchemaExtension) SetSchema(schema string) { method SetRequired (line 1045) | func (s *SchemaExtension) SetRequired(required bool) { method UnmarshalJSON (line 1050) | func (s *SchemaExtension) UnmarshalJSON(data []byte) error { method MarshalJSON (line 1066) | func (s *SchemaExtension) MarshalJSON() ([]byte, error) { method String (line 1077) | func (s *SchemaExtension) String() string { type SchemaResource (line 1097) | type SchemaResource struct method GetID (line 1111) | func (s *SchemaResource) GetID() string { method GetName (line 1118) | func (s *SchemaResource) GetName() string { method GetDescription (line 1125) | func (s *SchemaResource) GetDescription() string { method GetAttributes (line 1132) | func (s *SchemaResource) GetAttributes() []interface{} { method GetMeta (line 1139) | func (s *SchemaResource) GetMeta() *ResourceMeta { method GetExtraProperties (line 1146) | func (s *SchemaResource) GetExtraProperties() map[string]interface{} { method require (line 1150) | func (s *SchemaResource) require(field *big.Int) { method SetID (line 1159) | func (s *SchemaResource) SetID(id string) { method SetName (line 1166) | func (s *SchemaResource) SetName(name string) { method SetDescription (line 1173) | func (s *SchemaResource) SetDescription(description string) { method SetAttributes (line 1180) | func (s *SchemaResource) SetAttributes(attributes []interface{}) { method SetMeta (line 1187) | func (s *SchemaResource) SetMeta(meta *ResourceMeta) { method UnmarshalJSON (line 1192) | func (s *SchemaResource) UnmarshalJSON(data []byte) error { method MarshalJSON (line 1208) | func (s *SchemaResource) MarshalJSON() ([]byte, error) { method String (line 1219) | func (s *SchemaResource) String() string { type SchemasResponse (line 1237) | type SchemasResponse struct method GetSchemas (line 1249) | func (s *SchemasResponse) GetSchemas() []string { method GetTotalResults (line 1256) | func (s *SchemasResponse) GetTotalResults() int { method GetResources (line 1263) | func (s *SchemasResponse) GetResources() []*SchemaResource { method GetExtraProperties (line 1270) | func (s *SchemasResponse) GetExtraProperties() map[string]interface{} { method require (line 1274) | func (s *SchemasResponse) require(field *big.Int) { method SetSchemas (line 1283) | func (s *SchemasResponse) SetSchemas(schemas []string) { method SetTotalResults (line 1290) | func (s *SchemasResponse) SetTotalResults(totalResults int) { method SetResources (line 1297) | func (s *SchemasResponse) SetResources(resources []*SchemaResource) { method UnmarshalJSON (line 1302) | func (s *SchemasResponse) UnmarshalJSON(data []byte) error { method MarshalJSON (line 1318) | func (s *SchemasResponse) MarshalJSON() ([]byte, error) { method String (line 1329) | func (s *SchemasResponse) String() string { type SCIMEmail (line 1347) | type SCIMEmail struct method GetPrimary (line 1359) | func (s *SCIMEmail) GetPrimary() bool { method GetValue (line 1366) | func (s *SCIMEmail) GetValue() string { method GetType (line 1373) | func (s *SCIMEmail) GetType() string { method GetExtraProperties (line 1380) | func (s *SCIMEmail) GetExtraProperties() map[string]interface{} { method require (line 1384) | func (s *SCIMEmail) require(field *big.Int) { method SetPrimary (line 1393) | func (s *SCIMEmail) SetPrimary(primary bool) { method SetValue (line 1400) | func (s *SCIMEmail) SetValue(value string) { method SetType (line 1407) | func (s *SCIMEmail) SetType(type_ string) { method UnmarshalJSON (line 1412) | func (s *SCIMEmail) UnmarshalJSON(data []byte) error { method MarshalJSON (line 1428) | func (s *SCIMEmail) MarshalJSON() ([]byte, error) { method String (line 1439) | func (s *SCIMEmail) String() string { type SCIMFeatureSupport (line 1455) | type SCIMFeatureSupport struct method GetSupported (line 1465) | func (s *SCIMFeatureSupport) GetSupported() bool { method GetExtraProperties (line 1472) | func (s *SCIMFeatureSupport) GetExtraProperties() map[string]interface... method require (line 1476) | func (s *SCIMFeatureSupport) require(field *big.Int) { method SetSupported (line 1485) | func (s *SCIMFeatureSupport) SetSupported(supported bool) { method UnmarshalJSON (line 1490) | func (s *SCIMFeatureSupport) UnmarshalJSON(data []byte) error { method MarshalJSON (line 1506) | func (s *SCIMFeatureSupport) MarshalJSON() ([]byte, error) { method String (line 1517) | func (s *SCIMFeatureSupport) String() string { type SCIMName (line 1533) | type SCIMName struct method GetFormatted (line 1543) | func (s *SCIMName) GetFormatted() *string { method GetExtraProperties (line 1550) | func (s *SCIMName) GetExtraProperties() map[string]interface{} { method require (line 1554) | func (s *SCIMName) require(field *big.Int) { method SetFormatted (line 1563) | func (s *SCIMName) SetFormatted(formatted *string) { method UnmarshalJSON (line 1568) | func (s *SCIMName) UnmarshalJSON(data []byte) error { method MarshalJSON (line 1584) | func (s *SCIMName) MarshalJSON() ([]byte, error) { method String (line 1595) | func (s *SCIMName) String() string { type SCIMUser (line 1616) | type SCIMUser struct method GetSchemas (line 1631) | func (s *SCIMUser) GetSchemas() []string { method GetID (line 1638) | func (s *SCIMUser) GetID() string { method GetUserName (line 1645) | func (s *SCIMUser) GetUserName() string { method GetName (line 1652) | func (s *SCIMUser) GetName() *SCIMName { method GetEmails (line 1659) | func (s *SCIMUser) GetEmails() []*SCIMEmail { method GetMeta (line 1666) | func (s *SCIMUser) GetMeta() *UserMeta { method GetExtraProperties (line 1673) | func (s *SCIMUser) GetExtraProperties() map[string]interface{} { method require (line 1677) | func (s *SCIMUser) require(field *big.Int) { method SetSchemas (line 1686) | func (s *SCIMUser) SetSchemas(schemas []string) { method SetID (line 1693) | func (s *SCIMUser) SetID(id string) { method SetUserName (line 1700) | func (s *SCIMUser) SetUserName(userName string) { method SetName (line 1707) | func (s *SCIMUser) SetName(name *SCIMName) { method SetEmails (line 1714) | func (s *SCIMUser) SetEmails(emails []*SCIMEmail) { method SetMeta (line 1721) | func (s *SCIMUser) SetMeta(meta *UserMeta) { method UnmarshalJSON (line 1726) | func (s *SCIMUser) UnmarshalJSON(data []byte) error { method MarshalJSON (line 1742) | func (s *SCIMUser) MarshalJSON() ([]byte, error) { method String (line 1753) | func (s *SCIMUser) String() string { type SCIMUsersListResponse (line 1773) | type SCIMUsersListResponse struct method GetSchemas (line 1787) | func (s *SCIMUsersListResponse) GetSchemas() []string { method GetTotalResults (line 1794) | func (s *SCIMUsersListResponse) GetTotalResults() int { method GetStartIndex (line 1801) | func (s *SCIMUsersListResponse) GetStartIndex() int { method GetItemsPerPage (line 1808) | func (s *SCIMUsersListResponse) GetItemsPerPage() int { method GetResources (line 1815) | func (s *SCIMUsersListResponse) GetResources() []*SCIMUser { method GetExtraProperties (line 1822) | func (s *SCIMUsersListResponse) GetExtraProperties() map[string]interf... method require (line 1826) | func (s *SCIMUsersListResponse) require(field *big.Int) { method SetSchemas (line 1835) | func (s *SCIMUsersListResponse) SetSchemas(schemas []string) { method SetTotalResults (line 1842) | func (s *SCIMUsersListResponse) SetTotalResults(totalResults int) { method SetStartIndex (line 1849) | func (s *SCIMUsersListResponse) SetStartIndex(startIndex int) { method SetItemsPerPage (line 1856) | func (s *SCIMUsersListResponse) SetItemsPerPage(itemsPerPage int) { method SetResources (line 1863) | func (s *SCIMUsersListResponse) SetResources(resources []*SCIMUser) { method UnmarshalJSON (line 1868) | func (s *SCIMUsersListResponse) UnmarshalJSON(data []byte) error { method MarshalJSON (line 1884) | func (s *SCIMUsersListResponse) MarshalJSON() ([]byte, error) { method String (line 1895) | func (s *SCIMUsersListResponse) String() string { type ServiceProviderConfig (line 1920) | type ServiceProviderConfig struct method GetSchemas (line 1939) | func (s *ServiceProviderConfig) GetSchemas() []string { method GetDocumentationURI (line 1946) | func (s *ServiceProviderConfig) GetDocumentationURI() string { method GetPatch (line 1953) | func (s *ServiceProviderConfig) GetPatch() *SCIMFeatureSupport { method GetBulk (line 1960) | func (s *ServiceProviderConfig) GetBulk() *BulkConfig { method GetFilter (line 1967) | func (s *ServiceProviderConfig) GetFilter() *FilterConfig { method GetChangePassword (line 1974) | func (s *ServiceProviderConfig) GetChangePassword() *SCIMFeatureSupport { method GetSort (line 1981) | func (s *ServiceProviderConfig) GetSort() *SCIMFeatureSupport { method GetEtag (line 1988) | func (s *ServiceProviderConfig) GetEtag() *SCIMFeatureSupport { method GetAuthenticationSchemes (line 1995) | func (s *ServiceProviderConfig) GetAuthenticationSchemes() []*Authenti... method GetMeta (line 2002) | func (s *ServiceProviderConfig) GetMeta() *ResourceMeta { method GetExtraProperties (line 2009) | func (s *ServiceProviderConfig) GetExtraProperties() map[string]interf... method require (line 2013) | func (s *ServiceProviderConfig) require(field *big.Int) { method SetSchemas (line 2022) | func (s *ServiceProviderConfig) SetSchemas(schemas []string) { method SetDocumentationURI (line 2029) | func (s *ServiceProviderConfig) SetDocumentationURI(documentationURI s... method SetPatch (line 2036) | func (s *ServiceProviderConfig) SetPatch(patch *SCIMFeatureSupport) { method SetBulk (line 2043) | func (s *ServiceProviderConfig) SetBulk(bulk *BulkConfig) { method SetFilter (line 2050) | func (s *ServiceProviderConfig) SetFilter(filter *FilterConfig) { method SetChangePassword (line 2057) | func (s *ServiceProviderConfig) SetChangePassword(changePassword *SCIM... method SetSort (line 2064) | func (s *ServiceProviderConfig) SetSort(sort *SCIMFeatureSupport) { method SetEtag (line 2071) | func (s *ServiceProviderConfig) SetEtag(etag *SCIMFeatureSupport) { method SetAuthenticationSchemes (line 2078) | func (s *ServiceProviderConfig) SetAuthenticationSchemes(authenticatio... method SetMeta (line 2085) | func (s *ServiceProviderConfig) SetMeta(meta *ResourceMeta) { method UnmarshalJSON (line 2090) | func (s *ServiceProviderConfig) UnmarshalJSON(data []byte) error { method MarshalJSON (line 2106) | func (s *ServiceProviderConfig) MarshalJSON() ([]byte, error) { method String (line 2117) | func (s *ServiceProviderConfig) String() string { type UserMeta (line 2135) | type UserMeta struct method GetResourceType (line 2147) | func (u *UserMeta) GetResourceType() string { method GetCreated (line 2154) | func (u *UserMeta) GetCreated() *string { method GetLastModified (line 2161) | func (u *UserMeta) GetLastModified() *string { method GetExtraProperties (line 2168) | func (u *UserMeta) GetExtraProperties() map[string]interface{} { method require (line 2172) | func (u *UserMeta) require(field *big.Int) { method SetResourceType (line 2181) | func (u *UserMeta) SetResourceType(resourceType string) { method SetCreated (line 2188) | func (u *UserMeta) SetCreated(created *string) { method SetLastModified (line 2195) | func (u *UserMeta) SetLastModified(lastModified *string) { method UnmarshalJSON (line 2200) | func (u *UserMeta) UnmarshalJSON(data []byte) error { method MarshalJSON (line 2216) | func (u *UserMeta) MarshalJSON() ([]byte, error) { method String (line 2227) | func (u *UserMeta) String() string { FILE: backend/pkg/observability/langfuse/api/scim/client.go type Client (line 14) | type Client struct method Getserviceproviderconfig (line 37) | func (c *Client) Getserviceproviderconfig( method Getresourcetypes (line 52) | func (c *Client) Getresourcetypes( method Getschemas (line 67) | func (c *Client) Getschemas( method Listusers (line 82) | func (c *Client) Listusers( method Createuser (line 99) | func (c *Client) Createuser( method Getuser (line 116) | func (c *Client) Getuser( method Deleteuser (line 133) | func (c *Client) Deleteuser( function NewClient (line 22) | func NewClient(options *core.RequestOptions) *Client { FILE: backend/pkg/observability/langfuse/api/scim/raw_client.go type RawClient (line 15) | type RawClient struct method Getserviceproviderconfig (line 34) | func (r *RawClient) Getserviceproviderconfig( method Getresourcetypes (line 74) | func (r *RawClient) Getresourcetypes( method Getschemas (line 114) | func (r *RawClient) Getschemas( method Listusers (line 154) | func (r *RawClient) Listusers( method Createuser (line 202) | func (r *RawClient) Createuser( method Getuser (line 245) | func (r *RawClient) Getuser( method Deleteuser (line 289) | func (r *RawClient) Deleteuser( function NewRawClient (line 21) | func NewRawClient(options *core.RequestOptions) *RawClient { FILE: backend/pkg/observability/langfuse/api/score.go type CreateScoreRequest (line 28) | type CreateScoreRequest struct method require (line 52) | func (c *CreateScoreRequest) require(field *big.Int) { method SetID (line 61) | func (c *CreateScoreRequest) SetID(id *string) { method SetTraceID (line 68) | func (c *CreateScoreRequest) SetTraceID(traceID *string) { method SetSessionID (line 75) | func (c *CreateScoreRequest) SetSessionID(sessionID *string) { method SetObservationID (line 82) | func (c *CreateScoreRequest) SetObservationID(observationID *string) { method SetDatasetRunID (line 89) | func (c *CreateScoreRequest) SetDatasetRunID(datasetRunID *string) { method SetName (line 96) | func (c *CreateScoreRequest) SetName(name string) { method SetValue (line 103) | func (c *CreateScoreRequest) SetValue(value *CreateScoreValue) { method SetComment (line 110) | func (c *CreateScoreRequest) SetComment(comment *string) { method SetMetadata (line 117) | func (c *CreateScoreRequest) SetMetadata(metadata map[string]interface... method SetEnvironment (line 124) | func (c *CreateScoreRequest) SetEnvironment(environment *string) { method SetQueueID (line 131) | func (c *CreateScoreRequest) SetQueueID(queueID *string) { method SetDataType (line 138) | func (c *CreateScoreRequest) SetDataType(dataType *ScoreDataType) { method SetConfigID (line 145) | func (c *CreateScoreRequest) SetConfigID(configID *string) { method UnmarshalJSON (line 150) | func (c *CreateScoreRequest) UnmarshalJSON(data []byte) error { method MarshalJSON (line 160) | func (c *CreateScoreRequest) MarshalJSON() ([]byte, error) { type ScoreDeleteRequest (line 175) | type ScoreDeleteRequest struct method require (line 183) | func (s *ScoreDeleteRequest) require(field *big.Int) { method SetScoreID (line 192) | func (s *ScoreDeleteRequest) SetScoreID(scoreID string) { type CreateScoreResponse (line 201) | type CreateScoreResponse struct method GetID (line 212) | func (c *CreateScoreResponse) GetID() string { method GetExtraProperties (line 219) | func (c *CreateScoreResponse) GetExtraProperties() map[string]interfac... method require (line 223) | func (c *CreateScoreResponse) require(field *big.Int) { method SetID (line 232) | func (c *CreateScoreResponse) SetID(id string) { method UnmarshalJSON (line 237) | func (c *CreateScoreResponse) UnmarshalJSON(data []byte) error { method MarshalJSON (line 253) | func (c *CreateScoreResponse) MarshalJSON() ([]byte, error) { method String (line 264) | func (c *CreateScoreResponse) String() string { FILE: backend/pkg/observability/langfuse/api/score/client.go type Client (line 14) | type Client struct method Create (line 37) | func (c *Client) Create( method Delete (line 54) | func (c *Client) Delete( function NewClient (line 22) | func NewClient(options *core.RequestOptions) *Client { FILE: backend/pkg/observability/langfuse/api/score/raw_client.go type RawClient (line 15) | type RawClient struct method Create (line 34) | func (r *RawClient) Create( method Delete (line 77) | func (r *RawClient) Delete( function NewRawClient (line 21) | func NewRawClient(options *core.RequestOptions) *RawClient { FILE: backend/pkg/observability/langfuse/api/scoreconfigs.go type CreateScoreConfigRequest (line 22) | type CreateScoreConfigRequest struct method require (line 38) | func (c *CreateScoreConfigRequest) require(field *big.Int) { method SetName (line 47) | func (c *CreateScoreConfigRequest) SetName(name string) { method SetDataType (line 54) | func (c *CreateScoreConfigRequest) SetDataType(dataType ScoreConfigDat... method SetCategories (line 61) | func (c *CreateScoreConfigRequest) SetCategories(categories []*ConfigC... method SetMinValue (line 68) | func (c *CreateScoreConfigRequest) SetMinValue(minValue *float64) { method SetMaxValue (line 75) | func (c *CreateScoreConfigRequest) SetMaxValue(maxValue *float64) { method SetDescription (line 82) | func (c *CreateScoreConfigRequest) SetDescription(description *string) { method UnmarshalJSON (line 87) | func (c *CreateScoreConfigRequest) UnmarshalJSON(data []byte) error { method MarshalJSON (line 97) | func (c *CreateScoreConfigRequest) MarshalJSON() ([]byte, error) { type ScoreConfigsGetRequest (line 113) | type ScoreConfigsGetRequest struct method require (line 123) | func (s *ScoreConfigsGetRequest) require(field *big.Int) { method SetPage (line 132) | func (s *ScoreConfigsGetRequest) SetPage(page *int) { method SetLimit (line 139) | func (s *ScoreConfigsGetRequest) SetLimit(limit *int) { type ScoreConfigsGetByIDRequest (line 148) | type ScoreConfigsGetByIDRequest struct method require (line 156) | func (s *ScoreConfigsGetByIDRequest) require(field *big.Int) { method SetConfigID (line 165) | func (s *ScoreConfigsGetByIDRequest) SetConfigID(configID string) { type ConfigCategory (line 175) | type ConfigCategory struct method GetValue (line 186) | func (c *ConfigCategory) GetValue() float64 { method GetLabel (line 193) | func (c *ConfigCategory) GetLabel() string { method GetExtraProperties (line 200) | func (c *ConfigCategory) GetExtraProperties() map[string]interface{} { method require (line 204) | func (c *ConfigCategory) require(field *big.Int) { method SetValue (line 213) | func (c *ConfigCategory) SetValue(value float64) { method SetLabel (line 220) | func (c *ConfigCategory) SetLabel(label string) { method UnmarshalJSON (line 225) | func (c *ConfigCategory) UnmarshalJSON(data []byte) error { method MarshalJSON (line 241) | func (c *ConfigCategory) MarshalJSON() ([]byte, error) { method String (line 252) | func (c *ConfigCategory) String() string { type ScoreConfig (line 279) | type ScoreConfig struct method GetID (line 304) | func (s *ScoreConfig) GetID() string { method GetName (line 311) | func (s *ScoreConfig) GetName() string { method GetCreatedAt (line 318) | func (s *ScoreConfig) GetCreatedAt() time.Time { method GetUpdatedAt (line 325) | func (s *ScoreConfig) GetUpdatedAt() time.Time { method GetProjectID (line 332) | func (s *ScoreConfig) GetProjectID() string { method GetDataType (line 339) | func (s *ScoreConfig) GetDataType() ScoreConfigDataType { method GetIsArchived (line 346) | func (s *ScoreConfig) GetIsArchived() bool { method GetMinValue (line 353) | func (s *ScoreConfig) GetMinValue() *float64 { method GetMaxValue (line 360) | func (s *ScoreConfig) GetMaxValue() *float64 { method GetCategories (line 367) | func (s *ScoreConfig) GetCategories() []*ConfigCategory { method GetDescription (line 374) | func (s *ScoreConfig) GetDescription() *string { method GetExtraProperties (line 381) | func (s *ScoreConfig) GetExtraProperties() map[string]interface{} { method require (line 385) | func (s *ScoreConfig) require(field *big.Int) { method SetID (line 394) | func (s *ScoreConfig) SetID(id string) { method SetName (line 401) | func (s *ScoreConfig) SetName(name string) { method SetCreatedAt (line 408) | func (s *ScoreConfig) SetCreatedAt(createdAt time.Time) { method SetUpdatedAt (line 415) | func (s *ScoreConfig) SetUpdatedAt(updatedAt time.Time) { method SetProjectID (line 422) | func (s *ScoreConfig) SetProjectID(projectID string) { method SetDataType (line 429) | func (s *ScoreConfig) SetDataType(dataType ScoreConfigDataType) { method SetIsArchived (line 436) | func (s *ScoreConfig) SetIsArchived(isArchived bool) { method SetMinValue (line 443) | func (s *ScoreConfig) SetMinValue(minValue *float64) { method SetMaxValue (line 450) | func (s *ScoreConfig) SetMaxValue(maxValue *float64) { method SetCategories (line 457) | func (s *ScoreConfig) SetCategories(categories []*ConfigCategory) { method SetDescription (line 464) | func (s *ScoreConfig) SetDescription(description *string) { method UnmarshalJSON (line 469) | func (s *ScoreConfig) UnmarshalJSON(data []byte) error { method MarshalJSON (line 493) | func (s *ScoreConfig) MarshalJSON() ([]byte, error) { method String (line 508) | func (s *ScoreConfig) String() string { type ScoreConfigDataType (line 520) | type ScoreConfigDataType method Ptr (line 541) | func (s ScoreConfigDataType) Ptr() *ScoreConfigDataType { constant ScoreConfigDataTypeNumeric (line 523) | ScoreConfigDataTypeNumeric ScoreConfigDataType = "NUMERIC" constant ScoreConfigDataTypeBoolean (line 524) | ScoreConfigDataTypeBoolean ScoreConfigDataType = "BOOLEAN" constant ScoreConfigDataTypeCategorical (line 525) | ScoreConfigDataTypeCategorical ScoreConfigDataType = "CATEGORICAL" function NewScoreConfigDataTypeFromString (line 528) | func NewScoreConfigDataTypeFromString(s string) (ScoreConfigDataType, er... type ScoreConfigs (line 550) | type ScoreConfigs struct method GetData (line 561) | func (s *ScoreConfigs) GetData() []*ScoreConfig { method GetMeta (line 568) | func (s *ScoreConfigs) GetMeta() *UtilsMetaResponse { method GetExtraProperties (line 575) | func (s *ScoreConfigs) GetExtraProperties() map[string]interface{} { method require (line 579) | func (s *ScoreConfigs) require(field *big.Int) { method SetData (line 588) | func (s *ScoreConfigs) SetData(data []*ScoreConfig) { method SetMeta (line 595) | func (s *ScoreConfigs) SetMeta(meta *UtilsMetaResponse) { method UnmarshalJSON (line 600) | func (s *ScoreConfigs) UnmarshalJSON(data []byte) error { method MarshalJSON (line 616) | func (s *ScoreConfigs) MarshalJSON() ([]byte, error) { method String (line 627) | func (s *ScoreConfigs) String() string { type UpdateScoreConfigRequest (line 649) | type UpdateScoreConfigRequest struct method require (line 669) | func (u *UpdateScoreConfigRequest) require(field *big.Int) { method SetConfigID (line 678) | func (u *UpdateScoreConfigRequest) SetConfigID(configID string) { method SetIsArchived (line 685) | func (u *UpdateScoreConfigRequest) SetIsArchived(isArchived *bool) { method SetName (line 692) | func (u *UpdateScoreConfigRequest) SetName(name *string) { method SetCategories (line 699) | func (u *UpdateScoreConfigRequest) SetCategories(categories []*ConfigC... method SetMinValue (line 706) | func (u *UpdateScoreConfigRequest) SetMinValue(minValue *float64) { method SetMaxValue (line 713) | func (u *UpdateScoreConfigRequest) SetMaxValue(maxValue *float64) { method SetDescription (line 720) | func (u *UpdateScoreConfigRequest) SetDescription(description *string) { method UnmarshalJSON (line 725) | func (u *UpdateScoreConfigRequest) UnmarshalJSON(data []byte) error { method MarshalJSON (line 735) | func (u *UpdateScoreConfigRequest) MarshalJSON() ([]byte, error) { FILE: backend/pkg/observability/langfuse/api/scoreconfigs/client.go type Client (line 14) | type Client struct method Get (line 37) | func (c *Client) Get( method Create (line 54) | func (c *Client) Create( method GetByID (line 71) | func (c *Client) GetByID( method Update (line 88) | func (c *Client) Update( function NewClient (line 22) | func NewClient(options *core.RequestOptions) *Client { FILE: backend/pkg/observability/langfuse/api/scoreconfigs/raw_client.go type RawClient (line 15) | type RawClient struct method Get (line 34) | func (r *RawClient) Get( method Create (line 82) | func (r *RawClient) Create( method GetByID (line 125) | func (r *RawClient) GetByID( method Update (line 169) | func (r *RawClient) Update( function NewRawClient (line 21) | func NewRawClient(options *core.RequestOptions) *RawClient { FILE: backend/pkg/observability/langfuse/api/scorev2.go type ScoreV2GetRequest (line 35) | type ScoreV2GetRequest struct method require (line 79) | func (s *ScoreV2GetRequest) require(field *big.Int) { method SetPage (line 88) | func (s *ScoreV2GetRequest) SetPage(page *int) { method SetLimit (line 95) | func (s *ScoreV2GetRequest) SetLimit(limit *int) { method SetUserID (line 102) | func (s *ScoreV2GetRequest) SetUserID(userID *string) { method SetName (line 109) | func (s *ScoreV2GetRequest) SetName(name *string) { method SetFromTimestamp (line 116) | func (s *ScoreV2GetRequest) SetFromTimestamp(fromTimestamp *time.Time) { method SetToTimestamp (line 123) | func (s *ScoreV2GetRequest) SetToTimestamp(toTimestamp *time.Time) { method SetEnvironment (line 130) | func (s *ScoreV2GetRequest) SetEnvironment(environment []*string) { method SetSource (line 137) | func (s *ScoreV2GetRequest) SetSource(source *ScoreSource) { method SetOperator (line 144) | func (s *ScoreV2GetRequest) SetOperator(operator *string) { method SetValue (line 151) | func (s *ScoreV2GetRequest) SetValue(value *float64) { method SetScoreIDs (line 158) | func (s *ScoreV2GetRequest) SetScoreIDs(scoreIDs *string) { method SetConfigID (line 165) | func (s *ScoreV2GetRequest) SetConfigID(configID *string) { method SetSessionID (line 172) | func (s *ScoreV2GetRequest) SetSessionID(sessionID *string) { method SetDatasetRunID (line 179) | func (s *ScoreV2GetRequest) SetDatasetRunID(datasetRunID *string) { method SetTraceID (line 186) | func (s *ScoreV2GetRequest) SetTraceID(traceID *string) { method SetQueueID (line 193) | func (s *ScoreV2GetRequest) SetQueueID(queueID *string) { method SetDataType (line 200) | func (s *ScoreV2GetRequest) SetDataType(dataType *ScoreDataType) { method SetTraceTags (line 207) | func (s *ScoreV2GetRequest) SetTraceTags(traceTags []*string) { method SetFields (line 214) | func (s *ScoreV2GetRequest) SetFields(fields *string) { type ScoreV2GetByIDRequest (line 223) | type ScoreV2GetByIDRequest struct method require (line 231) | func (s *ScoreV2GetByIDRequest) require(field *big.Int) { method SetScoreID (line 240) | func (s *ScoreV2GetByIDRequest) SetScoreID(scoreID string) { type BaseScore (line 264) | type BaseScore struct method GetID (line 298) | func (b *BaseScore) GetID() string { method GetTraceID (line 305) | func (b *BaseScore) GetTraceID() *string { method GetSessionID (line 312) | func (b *BaseScore) GetSessionID() *string { method GetObservationID (line 319) | func (b *BaseScore) GetObservationID() *string { method GetDatasetRunID (line 326) | func (b *BaseScore) GetDatasetRunID() *string { method GetName (line 333) | func (b *BaseScore) GetName() string { method GetSource (line 340) | func (b *BaseScore) GetSource() ScoreSource { method GetTimestamp (line 347) | func (b *BaseScore) GetTimestamp() time.Time { method GetCreatedAt (line 354) | func (b *BaseScore) GetCreatedAt() time.Time { method GetUpdatedAt (line 361) | func (b *BaseScore) GetUpdatedAt() time.Time { method GetAuthorUserID (line 368) | func (b *BaseScore) GetAuthorUserID() *string { method GetComment (line 375) | func (b *BaseScore) GetComment() *string { method GetMetadata (line 382) | func (b *BaseScore) GetMetadata() interface{} { method GetConfigID (line 389) | func (b *BaseScore) GetConfigID() *string { method GetQueueID (line 396) | func (b *BaseScore) GetQueueID() *string { method GetEnvironment (line 403) | func (b *BaseScore) GetEnvironment() string { method GetExtraProperties (line 410) | func (b *BaseScore) GetExtraProperties() map[string]interface{} { method require (line 414) | func (b *BaseScore) require(field *big.Int) { method SetID (line 423) | func (b *BaseScore) SetID(id string) { method SetTraceID (line 430) | func (b *BaseScore) SetTraceID(traceID *string) { method SetSessionID (line 437) | func (b *BaseScore) SetSessionID(sessionID *string) { method SetObservationID (line 444) | func (b *BaseScore) SetObservationID(observationID *string) { method SetDatasetRunID (line 451) | func (b *BaseScore) SetDatasetRunID(datasetRunID *string) { method SetName (line 458) | func (b *BaseScore) SetName(name string) { method SetSource (line 465) | func (b *BaseScore) SetSource(source ScoreSource) { method SetTimestamp (line 472) | func (b *BaseScore) SetTimestamp(timestamp time.Time) { method SetCreatedAt (line 479) | func (b *BaseScore) SetCreatedAt(createdAt time.Time) { method SetUpdatedAt (line 486) | func (b *BaseScore) SetUpdatedAt(updatedAt time.Time) { method SetAuthorUserID (line 493) | func (b *BaseScore) SetAuthorUserID(authorUserID *string) { method SetComment (line 500) | func (b *BaseScore) SetComment(comment *string) { method SetMetadata (line 507) | func (b *BaseScore) SetMetadata(metadata interface{}) { method SetConfigID (line 514) | func (b *BaseScore) SetConfigID(configID *string) { method SetQueueID (line 521) | func (b *BaseScore) SetQueueID(queueID *string) { method SetEnvironment (line 528) | func (b *BaseScore) SetEnvironment(environment string) { method UnmarshalJSON (line 533) | func (b *BaseScore) UnmarshalJSON(data []byte) error { method MarshalJSON (line 559) | func (b *BaseScore) MarshalJSON() ([]byte, error) { method String (line 576) | func (b *BaseScore) String() string { type BooleanScore (line 609) | type BooleanScore struct method GetID (line 647) | func (b *BooleanScore) GetID() string { method GetTraceID (line 654) | func (b *BooleanScore) GetTraceID() *string { method GetSessionID (line 661) | func (b *BooleanScore) GetSessionID() *string { method GetObservationID (line 668) | func (b *BooleanScore) GetObservationID() *string { method GetDatasetRunID (line 675) | func (b *BooleanScore) GetDatasetRunID() *string { method GetName (line 682) | func (b *BooleanScore) GetName() string { method GetSource (line 689) | func (b *BooleanScore) GetSource() ScoreSource { method GetTimestamp (line 696) | func (b *BooleanScore) GetTimestamp() time.Time { method GetCreatedAt (line 703) | func (b *BooleanScore) GetCreatedAt() time.Time { method GetUpdatedAt (line 710) | func (b *BooleanScore) GetUpdatedAt() time.Time { method GetAuthorUserID (line 717) | func (b *BooleanScore) GetAuthorUserID() *string { method GetComment (line 724) | func (b *BooleanScore) GetComment() *string { method GetMetadata (line 731) | func (b *BooleanScore) GetMetadata() interface{} { method GetConfigID (line 738) | func (b *BooleanScore) GetConfigID() *string { method GetQueueID (line 745) | func (b *BooleanScore) GetQueueID() *string { method GetEnvironment (line 752) | func (b *BooleanScore) GetEnvironment() string { method GetValue (line 759) | func (b *BooleanScore) GetValue() float64 { method GetStringValue (line 766) | func (b *BooleanScore) GetStringValue() string { method GetExtraProperties (line 773) | func (b *BooleanScore) GetExtraProperties() map[string]interface{} { method require (line 777) | func (b *BooleanScore) require(field *big.Int) { method SetID (line 786) | func (b *BooleanScore) SetID(id string) { method SetTraceID (line 793) | func (b *BooleanScore) SetTraceID(traceID *string) { method SetSessionID (line 800) | func (b *BooleanScore) SetSessionID(sessionID *string) { method SetObservationID (line 807) | func (b *BooleanScore) SetObservationID(observationID *string) { method SetDatasetRunID (line 814) | func (b *BooleanScore) SetDatasetRunID(datasetRunID *string) { method SetName (line 821) | func (b *BooleanScore) SetName(name string) { method SetSource (line 828) | func (b *BooleanScore) SetSource(source ScoreSource) { method SetTimestamp (line 835) | func (b *BooleanScore) SetTimestamp(timestamp time.Time) { method SetCreatedAt (line 842) | func (b *BooleanScore) SetCreatedAt(createdAt time.Time) { method SetUpdatedAt (line 849) | func (b *BooleanScore) SetUpdatedAt(updatedAt time.Time) { method SetAuthorUserID (line 856) | func (b *BooleanScore) SetAuthorUserID(authorUserID *string) { method SetComment (line 863) | func (b *BooleanScore) SetComment(comment *string) { method SetMetadata (line 870) | func (b *BooleanScore) SetMetadata(metadata interface{}) { method SetConfigID (line 877) | func (b *BooleanScore) SetConfigID(configID *string) { method SetQueueID (line 884) | func (b *BooleanScore) SetQueueID(queueID *string) { method SetEnvironment (line 891) | func (b *BooleanScore) SetEnvironment(environment string) { method SetValue (line 898) | func (b *BooleanScore) SetValue(value float64) { method SetStringValue (line 905) | func (b *BooleanScore) SetStringValue(stringValue string) { method UnmarshalJSON (line 910) | func (b *BooleanScore) UnmarshalJSON(data []byte) error { method MarshalJSON (line 936) | func (b *BooleanScore) MarshalJSON() ([]byte, error) { method String (line 953) | func (b *BooleanScore) String() string { type CategoricalScore (line 986) | type CategoricalScore struct method GetID (line 1024) | func (c *CategoricalScore) GetID() string { method GetTraceID (line 1031) | func (c *CategoricalScore) GetTraceID() *string { method GetSessionID (line 1038) | func (c *CategoricalScore) GetSessionID() *string { method GetObservationID (line 1045) | func (c *CategoricalScore) GetObservationID() *string { method GetDatasetRunID (line 1052) | func (c *CategoricalScore) GetDatasetRunID() *string { method GetName (line 1059) | func (c *CategoricalScore) GetName() string { method GetSource (line 1066) | func (c *CategoricalScore) GetSource() ScoreSource { method GetTimestamp (line 1073) | func (c *CategoricalScore) GetTimestamp() time.Time { method GetCreatedAt (line 1080) | func (c *CategoricalScore) GetCreatedAt() time.Time { method GetUpdatedAt (line 1087) | func (c *CategoricalScore) GetUpdatedAt() time.Time { method GetAuthorUserID (line 1094) | func (c *CategoricalScore) GetAuthorUserID() *string { method GetComment (line 1101) | func (c *CategoricalScore) GetComment() *string { method GetMetadata (line 1108) | func (c *CategoricalScore) GetMetadata() interface{} { method GetConfigID (line 1115) | func (c *CategoricalScore) GetConfigID() *string { method GetQueueID (line 1122) | func (c *CategoricalScore) GetQueueID() *string { method GetEnvironment (line 1129) | func (c *CategoricalScore) GetEnvironment() string { method GetValue (line 1136) | func (c *CategoricalScore) GetValue() float64 { method GetStringValue (line 1143) | func (c *CategoricalScore) GetStringValue() string { method GetExtraProperties (line 1150) | func (c *CategoricalScore) GetExtraProperties() map[string]interface{} { method require (line 1154) | func (c *CategoricalScore) require(field *big.Int) { method SetID (line 1163) | func (c *CategoricalScore) SetID(id string) { method SetTraceID (line 1170) | func (c *CategoricalScore) SetTraceID(traceID *string) { method SetSessionID (line 1177) | func (c *CategoricalScore) SetSessionID(sessionID *string) { method SetObservationID (line 1184) | func (c *CategoricalScore) SetObservationID(observationID *string) { method SetDatasetRunID (line 1191) | func (c *CategoricalScore) SetDatasetRunID(datasetRunID *string) { method SetName (line 1198) | func (c *CategoricalScore) SetName(name string) { method SetSource (line 1205) | func (c *CategoricalScore) SetSource(source ScoreSource) { method SetTimestamp (line 1212) | func (c *CategoricalScore) SetTimestamp(timestamp time.Time) { method SetCreatedAt (line 1219) | func (c *CategoricalScore) SetCreatedAt(createdAt time.Time) { method SetUpdatedAt (line 1226) | func (c *CategoricalScore) SetUpdatedAt(updatedAt time.Time) { method SetAuthorUserID (line 1233) | func (c *CategoricalScore) SetAuthorUserID(authorUserID *string) { method SetComment (line 1240) | func (c *CategoricalScore) SetComment(comment *string) { method SetMetadata (line 1247) | func (c *CategoricalScore) SetMetadata(metadata interface{}) { method SetConfigID (line 1254) | func (c *CategoricalScore) SetConfigID(configID *string) { method SetQueueID (line 1261) | func (c *CategoricalScore) SetQueueID(queueID *string) { method SetEnvironment (line 1268) | func (c *CategoricalScore) SetEnvironment(environment string) { method SetValue (line 1275) | func (c *CategoricalScore) SetValue(value float64) { method SetStringValue (line 1282) | func (c *CategoricalScore) SetStringValue(stringValue string) { method UnmarshalJSON (line 1287) | func (c *CategoricalScore) UnmarshalJSON(data []byte) error { method MarshalJSON (line 1313) | func (c *CategoricalScore) MarshalJSON() ([]byte, error) { method String (line 1330) | func (c *CategoricalScore) String() string { type CorrectionScore (line 1363) | type CorrectionScore struct method GetID (line 1401) | func (c *CorrectionScore) GetID() string { method GetTraceID (line 1408) | func (c *CorrectionScore) GetTraceID() *string { method GetSessionID (line 1415) | func (c *CorrectionScore) GetSessionID() *string { method GetObservationID (line 1422) | func (c *CorrectionScore) GetObservationID() *string { method GetDatasetRunID (line 1429) | func (c *CorrectionScore) GetDatasetRunID() *string { method GetName (line 1436) | func (c *CorrectionScore) GetName() string { method GetSource (line 1443) | func (c *CorrectionScore) GetSource() ScoreSource { method GetTimestamp (line 1450) | func (c *CorrectionScore) GetTimestamp() time.Time { method GetCreatedAt (line 1457) | func (c *CorrectionScore) GetCreatedAt() time.Time { method GetUpdatedAt (line 1464) | func (c *CorrectionScore) GetUpdatedAt() time.Time { method GetAuthorUserID (line 1471) | func (c *CorrectionScore) GetAuthorUserID() *string { method GetComment (line 1478) | func (c *CorrectionScore) GetComment() *string { method GetMetadata (line 1485) | func (c *CorrectionScore) GetMetadata() interface{} { method GetConfigID (line 1492) | func (c *CorrectionScore) GetConfigID() *string { method GetQueueID (line 1499) | func (c *CorrectionScore) GetQueueID() *string { method GetEnvironment (line 1506) | func (c *CorrectionScore) GetEnvironment() string { method GetValue (line 1513) | func (c *CorrectionScore) GetValue() float64 { method GetStringValue (line 1520) | func (c *CorrectionScore) GetStringValue() string { method GetExtraProperties (line 1527) | func (c *CorrectionScore) GetExtraProperties() map[string]interface{} { method require (line 1531) | func (c *CorrectionScore) require(field *big.Int) { method SetID (line 1540) | func (c *CorrectionScore) SetID(id string) { method SetTraceID (line 1547) | func (c *CorrectionScore) SetTraceID(traceID *string) { method SetSessionID (line 1554) | func (c *CorrectionScore) SetSessionID(sessionID *string) { method SetObservationID (line 1561) | func (c *CorrectionScore) SetObservationID(observationID *string) { method SetDatasetRunID (line 1568) | func (c *CorrectionScore) SetDatasetRunID(datasetRunID *string) { method SetName (line 1575) | func (c *CorrectionScore) SetName(name string) { method SetSource (line 1582) | func (c *CorrectionScore) SetSource(source ScoreSource) { method SetTimestamp (line 1589) | func (c *CorrectionScore) SetTimestamp(timestamp time.Time) { method SetCreatedAt (line 1596) | func (c *CorrectionScore) SetCreatedAt(createdAt time.Time) { method SetUpdatedAt (line 1603) | func (c *CorrectionScore) SetUpdatedAt(updatedAt time.Time) { method SetAuthorUserID (line 1610) | func (c *CorrectionScore) SetAuthorUserID(authorUserID *string) { method SetComment (line 1617) | func (c *CorrectionScore) SetComment(comment *string) { method SetMetadata (line 1624) | func (c *CorrectionScore) SetMetadata(metadata interface{}) { method SetConfigID (line 1631) | func (c *CorrectionScore) SetConfigID(configID *string) { method SetQueueID (line 1638) | func (c *CorrectionScore) SetQueueID(queueID *string) { method SetEnvironment (line 1645) | func (c *CorrectionScore) SetEnvironment(environment string) { method SetValue (line 1652) | func (c *CorrectionScore) SetValue(value float64) { method SetStringValue (line 1659) | func (c *CorrectionScore) SetStringValue(stringValue string) { method UnmarshalJSON (line 1664) | func (c *CorrectionScore) UnmarshalJSON(data []byte) error { method MarshalJSON (line 1690) | func (c *CorrectionScore) MarshalJSON() ([]byte, error) { method String (line 1707) | func (c *CorrectionScore) String() string { type GetScoresResponse (line 1724) | type GetScoresResponse struct method GetData (line 1735) | func (g *GetScoresResponse) GetData() []*GetScoresResponseData { method GetMeta (line 1742) | func (g *GetScoresResponse) GetMeta() *UtilsMetaResponse { method GetExtraProperties (line 1749) | func (g *GetScoresResponse) GetExtraProperties() map[string]interface{} { method require (line 1753) | func (g *GetScoresResponse) require(field *big.Int) { method SetData (line 1762) | func (g *GetScoresResponse) SetData(data []*GetScoresResponseData) { method SetMeta (line 1769) | func (g *GetScoresResponse) SetMeta(meta *UtilsMetaResponse) { method UnmarshalJSON (line 1774) | func (g *GetScoresResponse) UnmarshalJSON(data []byte) error { method MarshalJSON (line 1790) | func (g *GetScoresResponse) MarshalJSON() ([]byte, error) { method String (line 1801) | func (g *GetScoresResponse) String() string { type GetScoresResponseData (line 1813) | type GetScoresResponseData struct method GetGetScoresResponseDataZero (line 1822) | func (g *GetScoresResponseData) GetGetScoresResponseDataZero() *GetSco... method GetGetScoresResponseDataOne (line 1829) | func (g *GetScoresResponseData) GetGetScoresResponseDataOne() *GetScor... method GetGetScoresResponseDataTwo (line 1836) | func (g *GetScoresResponseData) GetGetScoresResponseDataTwo() *GetScor... method GetGetScoresResponseDataThree (line 1843) | func (g *GetScoresResponseData) GetGetScoresResponseDataThree() *GetSc... method UnmarshalJSON (line 1850) | func (g *GetScoresResponseData) UnmarshalJSON(data []byte) error { method MarshalJSON (line 1878) | func (g GetScoresResponseData) MarshalJSON() ([]byte, error) { method Accept (line 1901) | func (g *GetScoresResponseData) Accept(visitor GetScoresResponseDataVi... type GetScoresResponseDataVisitor (line 1894) | type GetScoresResponseDataVisitor interface type GetScoresResponseDataBoolean (line 1939) | type GetScoresResponseDataBoolean struct method GetID (line 1978) | func (g *GetScoresResponseDataBoolean) GetID() string { method GetTraceID (line 1985) | func (g *GetScoresResponseDataBoolean) GetTraceID() *string { method GetSessionID (line 1992) | func (g *GetScoresResponseDataBoolean) GetSessionID() *string { method GetObservationID (line 1999) | func (g *GetScoresResponseDataBoolean) GetObservationID() *string { method GetDatasetRunID (line 2006) | func (g *GetScoresResponseDataBoolean) GetDatasetRunID() *string { method GetName (line 2013) | func (g *GetScoresResponseDataBoolean) GetName() string { method GetSource (line 2020) | func (g *GetScoresResponseDataBoolean) GetSource() ScoreSource { method GetTimestamp (line 2027) | func (g *GetScoresResponseDataBoolean) GetTimestamp() time.Time { method GetCreatedAt (line 2034) | func (g *GetScoresResponseDataBoolean) GetCreatedAt() time.Time { method GetUpdatedAt (line 2041) | func (g *GetScoresResponseDataBoolean) GetUpdatedAt() time.Time { method GetAuthorUserID (line 2048) | func (g *GetScoresResponseDataBoolean) GetAuthorUserID() *string { method GetComment (line 2055) | func (g *GetScoresResponseDataBoolean) GetComment() *string { method GetMetadata (line 2062) | func (g *GetScoresResponseDataBoolean) GetMetadata() interface{} { method GetConfigID (line 2069) | func (g *GetScoresResponseDataBoolean) GetConfigID() *string { method GetQueueID (line 2076) | func (g *GetScoresResponseDataBoolean) GetQueueID() *string { method GetEnvironment (line 2083) | func (g *GetScoresResponseDataBoolean) GetEnvironment() string { method GetValue (line 2090) | func (g *GetScoresResponseDataBoolean) GetValue() float64 { method GetStringValue (line 2097) | func (g *GetScoresResponseDataBoolean) GetStringValue() string { method GetTrace (line 2104) | func (g *GetScoresResponseDataBoolean) GetTrace() *GetScoresResponseTr... method GetExtraProperties (line 2111) | func (g *GetScoresResponseDataBoolean) GetExtraProperties() map[string... method require (line 2115) | func (g *GetScoresResponseDataBoolean) require(field *big.Int) { method SetID (line 2124) | func (g *GetScoresResponseDataBoolean) SetID(id string) { method SetTraceID (line 2131) | func (g *GetScoresResponseDataBoolean) SetTraceID(traceID *string) { method SetSessionID (line 2138) | func (g *GetScoresResponseDataBoolean) SetSessionID(sessionID *string) { method SetObservationID (line 2145) | func (g *GetScoresResponseDataBoolean) SetObservationID(observationID ... method SetDatasetRunID (line 2152) | func (g *GetScoresResponseDataBoolean) SetDatasetRunID(datasetRunID *s... method SetName (line 2159) | func (g *GetScoresResponseDataBoolean) SetName(name string) { method SetSource (line 2166) | func (g *GetScoresResponseDataBoolean) SetSource(source ScoreSource) { method SetTimestamp (line 2173) | func (g *GetScoresResponseDataBoolean) SetTimestamp(timestamp time.Tim... method SetCreatedAt (line 2180) | func (g *GetScoresResponseDataBoolean) SetCreatedAt(createdAt time.Tim... method SetUpdatedAt (line 2187) | func (g *GetScoresResponseDataBoolean) SetUpdatedAt(updatedAt time.Tim... method SetAuthorUserID (line 2194) | func (g *GetScoresResponseDataBoolean) SetAuthorUserID(authorUserID *s... method SetComment (line 2201) | func (g *GetScoresResponseDataBoolean) SetComment(comment *string) { method SetMetadata (line 2208) | func (g *GetScoresResponseDataBoolean) SetMetadata(metadata interface{... method SetConfigID (line 2215) | func (g *GetScoresResponseDataBoolean) SetConfigID(configID *string) { method SetQueueID (line 2222) | func (g *GetScoresResponseDataBoolean) SetQueueID(queueID *string) { method SetEnvironment (line 2229) | func (g *GetScoresResponseDataBoolean) SetEnvironment(environment stri... method SetValue (line 2236) | func (g *GetScoresResponseDataBoolean) SetValue(value float64) { method SetStringValue (line 2243) | func (g *GetScoresResponseDataBoolean) SetStringValue(stringValue stri... method SetTrace (line 2250) | func (g *GetScoresResponseDataBoolean) SetTrace(trace *GetScoresRespon... method UnmarshalJSON (line 2255) | func (g *GetScoresResponseDataBoolean) UnmarshalJSON(data []byte) error { method MarshalJSON (line 2281) | func (g *GetScoresResponseDataBoolean) MarshalJSON() ([]byte, error) { method String (line 2298) | func (g *GetScoresResponseDataBoolean) String() string { type GetScoresResponseDataCategorical (line 2332) | type GetScoresResponseDataCategorical struct method GetID (line 2371) | func (g *GetScoresResponseDataCategorical) GetID() string { method GetTraceID (line 2378) | func (g *GetScoresResponseDataCategorical) GetTraceID() *string { method GetSessionID (line 2385) | func (g *GetScoresResponseDataCategorical) GetSessionID() *string { method GetObservationID (line 2392) | func (g *GetScoresResponseDataCategorical) GetObservationID() *string { method GetDatasetRunID (line 2399) | func (g *GetScoresResponseDataCategorical) GetDatasetRunID() *string { method GetName (line 2406) | func (g *GetScoresResponseDataCategorical) GetName() string { method GetSource (line 2413) | func (g *GetScoresResponseDataCategorical) GetSource() ScoreSource { method GetTimestamp (line 2420) | func (g *GetScoresResponseDataCategorical) GetTimestamp() time.Time { method GetCreatedAt (line 2427) | func (g *GetScoresResponseDataCategorical) GetCreatedAt() time.Time { method GetUpdatedAt (line 2434) | func (g *GetScoresResponseDataCategorical) GetUpdatedAt() time.Time { method GetAuthorUserID (line 2441) | func (g *GetScoresResponseDataCategorical) GetAuthorUserID() *string { method GetComment (line 2448) | func (g *GetScoresResponseDataCategorical) GetComment() *string { method GetMetadata (line 2455) | func (g *GetScoresResponseDataCategorical) GetMetadata() interface{} { method GetConfigID (line 2462) | func (g *GetScoresResponseDataCategorical) GetConfigID() *string { method GetQueueID (line 2469) | func (g *GetScoresResponseDataCategorical) GetQueueID() *string { method GetEnvironment (line 2476) | func (g *GetScoresResponseDataCategorical) GetEnvironment() string { method GetValue (line 2483) | func (g *GetScoresResponseDataCategorical) GetValue() float64 { method GetStringValue (line 2490) | func (g *GetScoresResponseDataCategorical) GetStringValue() string { method GetTrace (line 2497) | func (g *GetScoresResponseDataCategorical) GetTrace() *GetScoresRespon... method GetExtraProperties (line 2504) | func (g *GetScoresResponseDataCategorical) GetExtraProperties() map[st... method require (line 2508) | func (g *GetScoresResponseDataCategorical) require(field *big.Int) { method SetID (line 2517) | func (g *GetScoresResponseDataCategorical) SetID(id string) { method SetTraceID (line 2524) | func (g *GetScoresResponseDataCategorical) SetTraceID(traceID *string) { method SetSessionID (line 2531) | func (g *GetScoresResponseDataCategorical) SetSessionID(sessionID *str... method SetObservationID (line 2538) | func (g *GetScoresResponseDataCategorical) SetObservationID(observatio... method SetDatasetRunID (line 2545) | func (g *GetScoresResponseDataCategorical) SetDatasetRunID(datasetRunI... method SetName (line 2552) | func (g *GetScoresResponseDataCategorical) SetName(name string) { method SetSource (line 2559) | func (g *GetScoresResponseDataCategorical) SetSource(source ScoreSourc... method SetTimestamp (line 2566) | func (g *GetScoresResponseDataCategorical) SetTimestamp(timestamp time... method SetCreatedAt (line 2573) | func (g *GetScoresResponseDataCategorical) SetCreatedAt(createdAt time... method SetUpdatedAt (line 2580) | func (g *GetScoresResponseDataCategorical) SetUpdatedAt(updatedAt time... method SetAuthorUserID (line 2587) | func (g *GetScoresResponseDataCategorical) SetAuthorUserID(authorUserI... method SetComment (line 2594) | func (g *GetScoresResponseDataCategorical) SetComment(comment *string) { method SetMetadata (line 2601) | func (g *GetScoresResponseDataCategorical) SetMetadata(metadata interf... method SetConfigID (line 2608) | func (g *GetScoresResponseDataCategorical) SetConfigID(configID *strin... method SetQueueID (line 2615) | func (g *GetScoresResponseDataCategorical) SetQueueID(queueID *string) { method SetEnvironment (line 2622) | func (g *GetScoresResponseDataCategorical) SetEnvironment(environment ... method SetValue (line 2629) | func (g *GetScoresResponseDataCategorical) SetValue(value float64) { method SetStringValue (line 2636) | func (g *GetScoresResponseDataCategorical) SetStringValue(stringValue ... method SetTrace (line 2643) | func (g *GetScoresResponseDataCategorical) SetTrace(trace *GetScoresRe... method UnmarshalJSON (line 2648) | func (g *GetScoresResponseDataCategorical) UnmarshalJSON(data []byte) ... method MarshalJSON (line 2674) | func (g *GetScoresResponseDataCategorical) MarshalJSON() ([]byte, erro... method String (line 2691) | func (g *GetScoresResponseDataCategorical) String() string { type GetScoresResponseDataCorrection (line 2725) | type GetScoresResponseDataCorrection struct method GetID (line 2764) | func (g *GetScoresResponseDataCorrection) GetID() string { method GetTraceID (line 2771) | func (g *GetScoresResponseDataCorrection) GetTraceID() *string { method GetSessionID (line 2778) | func (g *GetScoresResponseDataCorrection) GetSessionID() *string { method GetObservationID (line 2785) | func (g *GetScoresResponseDataCorrection) GetObservationID() *string { method GetDatasetRunID (line 2792) | func (g *GetScoresResponseDataCorrection) GetDatasetRunID() *string { method GetName (line 2799) | func (g *GetScoresResponseDataCorrection) GetName() string { method GetSource (line 2806) | func (g *GetScoresResponseDataCorrection) GetSource() ScoreSource { method GetTimestamp (line 2813) | func (g *GetScoresResponseDataCorrection) GetTimestamp() time.Time { method GetCreatedAt (line 2820) | func (g *GetScoresResponseDataCorrection) GetCreatedAt() time.Time { method GetUpdatedAt (line 2827) | func (g *GetScoresResponseDataCorrection) GetUpdatedAt() time.Time { method GetAuthorUserID (line 2834) | func (g *GetScoresResponseDataCorrection) GetAuthorUserID() *string { method GetComment (line 2841) | func (g *GetScoresResponseDataCorrection) GetComment() *string { method GetMetadata (line 2848) | func (g *GetScoresResponseDataCorrection) GetMetadata() interface{} { method GetConfigID (line 2855) | func (g *GetScoresResponseDataCorrection) GetConfigID() *string { method GetQueueID (line 2862) | func (g *GetScoresResponseDataCorrection) GetQueueID() *string { method GetEnvironment (line 2869) | func (g *GetScoresResponseDataCorrection) GetEnvironment() string { method GetValue (line 2876) | func (g *GetScoresResponseDataCorrection) GetValue() float64 { method GetStringValue (line 2883) | func (g *GetScoresResponseDataCorrection) GetStringValue() string { method GetTrace (line 2890) | func (g *GetScoresResponseDataCorrection) GetTrace() *GetScoresRespons... method GetExtraProperties (line 2897) | func (g *GetScoresResponseDataCorrection) GetExtraProperties() map[str... method require (line 2901) | func (g *GetScoresResponseDataCorrection) require(field *big.Int) { method SetID (line 2910) | func (g *GetScoresResponseDataCorrection) SetID(id string) { method SetTraceID (line 2917) | func (g *GetScoresResponseDataCorrection) SetTraceID(traceID *string) { method SetSessionID (line 2924) | func (g *GetScoresResponseDataCorrection) SetSessionID(sessionID *stri... method SetObservationID (line 2931) | func (g *GetScoresResponseDataCorrection) SetObservationID(observation... method SetDatasetRunID (line 2938) | func (g *GetScoresResponseDataCorrection) SetDatasetRunID(datasetRunID... method SetName (line 2945) | func (g *GetScoresResponseDataCorrection) SetName(name string) { method SetSource (line 2952) | func (g *GetScoresResponseDataCorrection) SetSource(source ScoreSource) { method SetTimestamp (line 2959) | func (g *GetScoresResponseDataCorrection) SetTimestamp(timestamp time.... method SetCreatedAt (line 2966) | func (g *GetScoresResponseDataCorrection) SetCreatedAt(createdAt time.... method SetUpdatedAt (line 2973) | func (g *GetScoresResponseDataCorrection) SetUpdatedAt(updatedAt time.... method SetAuthorUserID (line 2980) | func (g *GetScoresResponseDataCorrection) SetAuthorUserID(authorUserID... method SetComment (line 2987) | func (g *GetScoresResponseDataCorrection) SetComment(comment *string) { method SetMetadata (line 2994) | func (g *GetScoresResponseDataCorrection) SetMetadata(metadata interfa... method SetConfigID (line 3001) | func (g *GetScoresResponseDataCorrection) SetConfigID(configID *string) { method SetQueueID (line 3008) | func (g *GetScoresResponseDataCorrection) SetQueueID(queueID *string) { method SetEnvironment (line 3015) | func (g *GetScoresResponseDataCorrection) SetEnvironment(environment s... method SetValue (line 3022) | func (g *GetScoresResponseDataCorrection) SetValue(value float64) { method SetStringValue (line 3029) | func (g *GetScoresResponseDataCorrection) SetStringValue(stringValue s... method SetTrace (line 3036) | func (g *GetScoresResponseDataCorrection) SetTrace(trace *GetScoresRes... method UnmarshalJSON (line 3041) | func (g *GetScoresResponseDataCorrection) UnmarshalJSON(data []byte) e... method MarshalJSON (line 3067) | func (g *GetScoresResponseDataCorrection) MarshalJSON() ([]byte, error) { method String (line 3084) | func (g *GetScoresResponseDataCorrection) String() string { type GetScoresResponseDataNumeric (line 3117) | type GetScoresResponseDataNumeric struct method GetID (line 3154) | func (g *GetScoresResponseDataNumeric) GetID() string { method GetTraceID (line 3161) | func (g *GetScoresResponseDataNumeric) GetTraceID() *string { method GetSessionID (line 3168) | func (g *GetScoresResponseDataNumeric) GetSessionID() *string { method GetObservationID (line 3175) | func (g *GetScoresResponseDataNumeric) GetObservationID() *string { method GetDatasetRunID (line 3182) | func (g *GetScoresResponseDataNumeric) GetDatasetRunID() *string { method GetName (line 3189) | func (g *GetScoresResponseDataNumeric) GetName() string { method GetSource (line 3196) | func (g *GetScoresResponseDataNumeric) GetSource() ScoreSource { method GetTimestamp (line 3203) | func (g *GetScoresResponseDataNumeric) GetTimestamp() time.Time { method GetCreatedAt (line 3210) | func (g *GetScoresResponseDataNumeric) GetCreatedAt() time.Time { method GetUpdatedAt (line 3217) | func (g *GetScoresResponseDataNumeric) GetUpdatedAt() time.Time { method GetAuthorUserID (line 3224) | func (g *GetScoresResponseDataNumeric) GetAuthorUserID() *string { method GetComment (line 3231) | func (g *GetScoresResponseDataNumeric) GetComment() *string { method GetMetadata (line 3238) | func (g *GetScoresResponseDataNumeric) GetMetadata() interface{} { method GetConfigID (line 3245) | func (g *GetScoresResponseDataNumeric) GetConfigID() *string { method GetQueueID (line 3252) | func (g *GetScoresResponseDataNumeric) GetQueueID() *string { method GetEnvironment (line 3259) | func (g *GetScoresResponseDataNumeric) GetEnvironment() string { method GetValue (line 3266) | func (g *GetScoresResponseDataNumeric) GetValue() float64 { method GetTrace (line 3273) | func (g *GetScoresResponseDataNumeric) GetTrace() *GetScoresResponseTr... method GetExtraProperties (line 3280) | func (g *GetScoresResponseDataNumeric) GetExtraProperties() map[string... method require (line 3284) | func (g *GetScoresResponseDataNumeric) require(field *big.Int) { method SetID (line 3293) | func (g *GetScoresResponseDataNumeric) SetID(id string) { method SetTraceID (line 3300) | func (g *GetScoresResponseDataNumeric) SetTraceID(traceID *string) { method SetSessionID (line 3307) | func (g *GetScoresResponseDataNumeric) SetSessionID(sessionID *string) { method SetObservationID (line 3314) | func (g *GetScoresResponseDataNumeric) SetObservationID(observationID ... method SetDatasetRunID (line 3321) | func (g *GetScoresResponseDataNumeric) SetDatasetRunID(datasetRunID *s... method SetName (line 3328) | func (g *GetScoresResponseDataNumeric) SetName(name string) { method SetSource (line 3335) | func (g *GetScoresResponseDataNumeric) SetSource(source ScoreSource) { method SetTimestamp (line 3342) | func (g *GetScoresResponseDataNumeric) SetTimestamp(timestamp time.Tim... method SetCreatedAt (line 3349) | func (g *GetScoresResponseDataNumeric) SetCreatedAt(createdAt time.Tim... method SetUpdatedAt (line 3356) | func (g *GetScoresResponseDataNumeric) SetUpdatedAt(updatedAt time.Tim... method SetAuthorUserID (line 3363) | func (g *GetScoresResponseDataNumeric) SetAuthorUserID(authorUserID *s... method SetComment (line 3370) | func (g *GetScoresResponseDataNumeric) SetComment(comment *string) { method SetMetadata (line 3377) | func (g *GetScoresResponseDataNumeric) SetMetadata(metadata interface{... method SetConfigID (line 3384) | func (g *GetScoresResponseDataNumeric) SetConfigID(configID *string) { method SetQueueID (line 3391) | func (g *GetScoresResponseDataNumeric) SetQueueID(queueID *string) { method SetEnvironment (line 3398) | func (g *GetScoresResponseDataNumeric) SetEnvironment(environment stri... method SetValue (line 3405) | func (g *GetScoresResponseDataNumeric) SetValue(value float64) { method SetTrace (line 3412) | func (g *GetScoresResponseDataNumeric) SetTrace(trace *GetScoresRespon... method UnmarshalJSON (line 3417) | func (g *GetScoresResponseDataNumeric) UnmarshalJSON(data []byte) error { method MarshalJSON (line 3443) | func (g *GetScoresResponseDataNumeric) MarshalJSON() ([]byte, error) { method String (line 3460) | func (g *GetScoresResponseDataNumeric) String() string { type GetScoresResponseDataOne (line 3495) | type GetScoresResponseDataOne struct method GetID (line 3535) | func (g *GetScoresResponseDataOne) GetID() string { method GetTraceID (line 3542) | func (g *GetScoresResponseDataOne) GetTraceID() *string { method GetSessionID (line 3549) | func (g *GetScoresResponseDataOne) GetSessionID() *string { method GetObservationID (line 3556) | func (g *GetScoresResponseDataOne) GetObservationID() *string { method GetDatasetRunID (line 3563) | func (g *GetScoresResponseDataOne) GetDatasetRunID() *string { method GetName (line 3570) | func (g *GetScoresResponseDataOne) GetName() string { method GetSource (line 3577) | func (g *GetScoresResponseDataOne) GetSource() ScoreSource { method GetTimestamp (line 3584) | func (g *GetScoresResponseDataOne) GetTimestamp() time.Time { method GetCreatedAt (line 3591) | func (g *GetScoresResponseDataOne) GetCreatedAt() time.Time { method GetUpdatedAt (line 3598) | func (g *GetScoresResponseDataOne) GetUpdatedAt() time.Time { method GetAuthorUserID (line 3605) | func (g *GetScoresResponseDataOne) GetAuthorUserID() *string { method GetComment (line 3612) | func (g *GetScoresResponseDataOne) GetComment() *string { method GetMetadata (line 3619) | func (g *GetScoresResponseDataOne) GetMetadata() interface{} { method GetConfigID (line 3626) | func (g *GetScoresResponseDataOne) GetConfigID() *string { method GetQueueID (line 3633) | func (g *GetScoresResponseDataOne) GetQueueID() *string { method GetEnvironment (line 3640) | func (g *GetScoresResponseDataOne) GetEnvironment() string { method GetValue (line 3647) | func (g *GetScoresResponseDataOne) GetValue() float64 { method GetStringValue (line 3654) | func (g *GetScoresResponseDataOne) GetStringValue() string { method GetTrace (line 3661) | func (g *GetScoresResponseDataOne) GetTrace() *GetScoresResponseTraceD... method GetDataType (line 3668) | func (g *GetScoresResponseDataOne) GetDataType() *GetScoresResponseDat... method GetExtraProperties (line 3675) | func (g *GetScoresResponseDataOne) GetExtraProperties() map[string]int... method require (line 3679) | func (g *GetScoresResponseDataOne) require(field *big.Int) { method SetID (line 3688) | func (g *GetScoresResponseDataOne) SetID(id string) { method SetTraceID (line 3695) | func (g *GetScoresResponseDataOne) SetTraceID(traceID *string) { method SetSessionID (line 3702) | func (g *GetScoresResponseDataOne) SetSessionID(sessionID *string) { method SetObservationID (line 3709) | func (g *GetScoresResponseDataOne) SetObservationID(observationID *str... method SetDatasetRunID (line 3716) | func (g *GetScoresResponseDataOne) SetDatasetRunID(datasetRunID *strin... method SetName (line 3723) | func (g *GetScoresResponseDataOne) SetName(name string) { method SetSource (line 3730) | func (g *GetScoresResponseDataOne) SetSource(source ScoreSource) { method SetTimestamp (line 3737) | func (g *GetScoresResponseDataOne) SetTimestamp(timestamp time.Time) { method SetCreatedAt (line 3744) | func (g *GetScoresResponseDataOne) SetCreatedAt(createdAt time.Time) { method SetUpdatedAt (line 3751) | func (g *GetScoresResponseDataOne) SetUpdatedAt(updatedAt time.Time) { method SetAuthorUserID (line 3758) | func (g *GetScoresResponseDataOne) SetAuthorUserID(authorUserID *strin... method SetComment (line 3765) | func (g *GetScoresResponseDataOne) SetComment(comment *string) { method SetMetadata (line 3772) | func (g *GetScoresResponseDataOne) SetMetadata(metadata interface{}) { method SetConfigID (line 3779) | func (g *GetScoresResponseDataOne) SetConfigID(configID *string) { method SetQueueID (line 3786) | func (g *GetScoresResponseDataOne) SetQueueID(queueID *string) { method SetEnvironment (line 3793) | func (g *GetScoresResponseDataOne) SetEnvironment(environment string) { method SetValue (line 3800) | func (g *GetScoresResponseDataOne) SetValue(value float64) { method SetStringValue (line 3807) | func (g *GetScoresResponseDataOne) SetStringValue(stringValue string) { method SetTrace (line 3814) | func (g *GetScoresResponseDataOne) SetTrace(trace *GetScoresResponseTr... method SetDataType (line 3821) | func (g *GetScoresResponseDataOne) SetDataType(dataType *GetScoresResp... method UnmarshalJSON (line 3826) | func (g *GetScoresResponseDataOne) UnmarshalJSON(data []byte) error { method MarshalJSON (line 3852) | func (g *GetScoresResponseDataOne) MarshalJSON() ([]byte, error) { method String (line 3869) | func (g *GetScoresResponseDataOne) String() string { type GetScoresResponseDataOneDataType (line 3881) | type GetScoresResponseDataOneDataType method Ptr (line 3896) | func (g GetScoresResponseDataOneDataType) Ptr() *GetScoresResponseData... constant GetScoresResponseDataOneDataTypeCategorical (line 3884) | GetScoresResponseDataOneDataTypeCategorical GetScoresResponseDataOneData... function NewGetScoresResponseDataOneDataTypeFromString (line 3887) | func NewGetScoresResponseDataOneDataTypeFromString(s string) (GetScoresR... type GetScoresResponseDataThree (line 3923) | type GetScoresResponseDataThree struct method GetID (line 3963) | func (g *GetScoresResponseDataThree) GetID() string { method GetTraceID (line 3970) | func (g *GetScoresResponseDataThree) GetTraceID() *string { method GetSessionID (line 3977) | func (g *GetScoresResponseDataThree) GetSessionID() *string { method GetObservationID (line 3984) | func (g *GetScoresResponseDataThree) GetObservationID() *string { method GetDatasetRunID (line 3991) | func (g *GetScoresResponseDataThree) GetDatasetRunID() *string { method GetName (line 3998) | func (g *GetScoresResponseDataThree) GetName() string { method GetSource (line 4005) | func (g *GetScoresResponseDataThree) GetSource() ScoreSource { method GetTimestamp (line 4012) | func (g *GetScoresResponseDataThree) GetTimestamp() time.Time { method GetCreatedAt (line 4019) | func (g *GetScoresResponseDataThree) GetCreatedAt() time.Time { method GetUpdatedAt (line 4026) | func (g *GetScoresResponseDataThree) GetUpdatedAt() time.Time { method GetAuthorUserID (line 4033) | func (g *GetScoresResponseDataThree) GetAuthorUserID() *string { method GetComment (line 4040) | func (g *GetScoresResponseDataThree) GetComment() *string { method GetMetadata (line 4047) | func (g *GetScoresResponseDataThree) GetMetadata() interface{} { method GetConfigID (line 4054) | func (g *GetScoresResponseDataThree) GetConfigID() *string { method GetQueueID (line 4061) | func (g *GetScoresResponseDataThree) GetQueueID() *string { method GetEnvironment (line 4068) | func (g *GetScoresResponseDataThree) GetEnvironment() string { method GetValue (line 4075) | func (g *GetScoresResponseDataThree) GetValue() float64 { method GetStringValue (line 4082) | func (g *GetScoresResponseDataThree) GetStringValue() string { method GetTrace (line 4089) | func (g *GetScoresResponseDataThree) GetTrace() *GetScoresResponseTrac... method GetDataType (line 4096) | func (g *GetScoresResponseDataThree) GetDataType() *GetScoresResponseD... method GetExtraProperties (line 4103) | func (g *GetScoresResponseDataThree) GetExtraProperties() map[string]i... method require (line 4107) | func (g *GetScoresResponseDataThree) require(field *big.Int) { method SetID (line 4116) | func (g *GetScoresResponseDataThree) SetID(id string) { method SetTraceID (line 4123) | func (g *GetScoresResponseDataThree) SetTraceID(traceID *string) { method SetSessionID (line 4130) | func (g *GetScoresResponseDataThree) SetSessionID(sessionID *string) { method SetObservationID (line 4137) | func (g *GetScoresResponseDataThree) SetObservationID(observationID *s... method SetDatasetRunID (line 4144) | func (g *GetScoresResponseDataThree) SetDatasetRunID(datasetRunID *str... method SetName (line 4151) | func (g *GetScoresResponseDataThree) SetName(name string) { method SetSource (line 4158) | func (g *GetScoresResponseDataThree) SetSource(source ScoreSource) { method SetTimestamp (line 4165) | func (g *GetScoresResponseDataThree) SetTimestamp(timestamp time.Time) { method SetCreatedAt (line 4172) | func (g *GetScoresResponseDataThree) SetCreatedAt(createdAt time.Time) { method SetUpdatedAt (line 4179) | func (g *GetScoresResponseDataThree) SetUpdatedAt(updatedAt time.Time) { method SetAuthorUserID (line 4186) | func (g *GetScoresResponseDataThree) SetAuthorUserID(authorUserID *str... method SetComment (line 4193) | func (g *GetScoresResponseDataThree) SetComment(comment *string) { method SetMetadata (line 4200) | func (g *GetScoresResponseDataThree) SetMetadata(metadata interface{}) { method SetConfigID (line 4207) | func (g *GetScoresResponseDataThree) SetConfigID(configID *string) { method SetQueueID (line 4214) | func (g *GetScoresResponseDataThree) SetQueueID(queueID *string) { method SetEnvironment (line 4221) | func (g *GetScoresResponseDataThree) SetEnvironment(environment string) { method SetValue (line 4228) | func (g *GetScoresResponseDataThree) SetValue(value float64) { method SetStringValue (line 4235) | func (g *GetScoresResponseDataThree) SetStringValue(stringValue string) { method SetTrace (line 4242) | func (g *GetScoresResponseDataThree) SetTrace(trace *GetScoresResponse... method SetDataType (line 4249) | func (g *GetScoresResponseDataThree) SetDataType(dataType *GetScoresRe... method UnmarshalJSON (line 4254) | func (g *GetScoresResponseDataThree) UnmarshalJSON(data []byte) error { method MarshalJSON (line 4280) | func (g *GetScoresResponseDataThree) MarshalJSON() ([]byte, error) { method String (line 4297) | func (g *GetScoresResponseDataThree) String() string { type GetScoresResponseDataThreeDataType (line 4309) | type GetScoresResponseDataThreeDataType method Ptr (line 4324) | func (g GetScoresResponseDataThreeDataType) Ptr() *GetScoresResponseDa... constant GetScoresResponseDataThreeDataTypeCorrection (line 4312) | GetScoresResponseDataThreeDataTypeCorrection GetScoresResponseDataThreeD... function NewGetScoresResponseDataThreeDataTypeFromString (line 4315) | func NewGetScoresResponseDataThreeDataTypeFromString(s string) (GetScore... type GetScoresResponseDataTwo (line 4351) | type GetScoresResponseDataTwo struct method GetID (line 4391) | func (g *GetScoresResponseDataTwo) GetID() string { method GetTraceID (line 4398) | func (g *GetScoresResponseDataTwo) GetTraceID() *string { method GetSessionID (line 4405) | func (g *GetScoresResponseDataTwo) GetSessionID() *string { method GetObservationID (line 4412) | func (g *GetScoresResponseDataTwo) GetObservationID() *string { method GetDatasetRunID (line 4419) | func (g *GetScoresResponseDataTwo) GetDatasetRunID() *string { method GetName (line 4426) | func (g *GetScoresResponseDataTwo) GetName() string { method GetSource (line 4433) | func (g *GetScoresResponseDataTwo) GetSource() ScoreSource { method GetTimestamp (line 4440) | func (g *GetScoresResponseDataTwo) GetTimestamp() time.Time { method GetCreatedAt (line 4447) | func (g *GetScoresResponseDataTwo) GetCreatedAt() time.Time { method GetUpdatedAt (line 4454) | func (g *GetScoresResponseDataTwo) GetUpdatedAt() time.Time { method GetAuthorUserID (line 4461) | func (g *GetScoresResponseDataTwo) GetAuthorUserID() *string { method GetComment (line 4468) | func (g *GetScoresResponseDataTwo) GetComment() *string { method GetMetadata (line 4475) | func (g *GetScoresResponseDataTwo) GetMetadata() interface{} { method GetConfigID (line 4482) | func (g *GetScoresResponseDataTwo) GetConfigID() *string { method GetQueueID (line 4489) | func (g *GetScoresResponseDataTwo) GetQueueID() *string { method GetEnvironment (line 4496) | func (g *GetScoresResponseDataTwo) GetEnvironment() string { method GetValue (line 4503) | func (g *GetScoresResponseDataTwo) GetValue() float64 { method GetStringValue (line 4510) | func (g *GetScoresResponseDataTwo) GetStringValue() string { method GetTrace (line 4517) | func (g *GetScoresResponseDataTwo) GetTrace() *GetScoresResponseTraceD... method GetDataType (line 4524) | func (g *GetScoresResponseDataTwo) GetDataType() *GetScoresResponseDat... method GetExtraProperties (line 4531) | func (g *GetScoresResponseDataTwo) GetExtraProperties() map[string]int... method require (line 4535) | func (g *GetScoresResponseDataTwo) require(field *big.Int) { method SetID (line 4544) | func (g *GetScoresResponseDataTwo) SetID(id string) { method SetTraceID (line 4551) | func (g *GetScoresResponseDataTwo) SetTraceID(traceID *string) { method SetSessionID (line 4558) | func (g *GetScoresResponseDataTwo) SetSessionID(sessionID *string) { method SetObservationID (line 4565) | func (g *GetScoresResponseDataTwo) SetObservationID(observationID *str... method SetDatasetRunID (line 4572) | func (g *GetScoresResponseDataTwo) SetDatasetRunID(datasetRunID *strin... method SetName (line 4579) | func (g *GetScoresResponseDataTwo) SetName(name string) { method SetSource (line 4586) | func (g *GetScoresResponseDataTwo) SetSource(source ScoreSource) { method SetTimestamp (line 4593) | func (g *GetScoresResponseDataTwo) SetTimestamp(timestamp time.Time) { method SetCreatedAt (line 4600) | func (g *GetScoresResponseDataTwo) SetCreatedAt(createdAt time.Time) { method SetUpdatedAt (line 4607) | func (g *GetScoresResponseDataTwo) SetUpdatedAt(updatedAt time.Time) { method SetAuthorUserID (line 4614) | func (g *GetScoresResponseDataTwo) SetAuthorUserID(authorUserID *strin... method SetComment (line 4621) | func (g *GetScoresResponseDataTwo) SetComment(comment *string) { method SetMetadata (line 4628) | func (g *GetScoresResponseDataTwo) SetMetadata(metadata interface{}) { method SetConfigID (line 4635) | func (g *GetScoresResponseDataTwo) SetConfigID(configID *string) { method SetQueueID (line 4642) | func (g *GetScoresResponseDataTwo) SetQueueID(queueID *string) { method SetEnvironment (line 4649) | func (g *GetScoresResponseDataTwo) SetEnvironment(environment string) { method SetValue (line 4656) | func (g *GetScoresResponseDataTwo) SetValue(value float64) { method SetStringValue (line 4663) | func (g *GetScoresResponseDataTwo) SetStringValue(stringValue string) { method SetTrace (line 4670) | func (g *GetScoresResponseDataTwo) SetTrace(trace *GetScoresResponseTr... method SetDataType (line 4677) | func (g *GetScoresResponseDataTwo) SetDataType(dataType *GetScoresResp... method UnmarshalJSON (line 4682) | func (g *GetScoresResponseDataTwo) UnmarshalJSON(data []byte) error { method MarshalJSON (line 4708) | func (g *GetScoresResponseDataTwo) MarshalJSON() ([]byte, error) { method String (line 4725) | func (g *GetScoresResponseDataTwo) String() string { type GetScoresResponseDataTwoDataType (line 4737) | type GetScoresResponseDataTwoDataType method Ptr (line 4752) | func (g GetScoresResponseDataTwoDataType) Ptr() *GetScoresResponseData... constant GetScoresResponseDataTwoDataTypeBoolean (line 4740) | GetScoresResponseDataTwoDataTypeBoolean GetScoresResponseDataTwoDataType... function NewGetScoresResponseDataTwoDataTypeFromString (line 4743) | func NewGetScoresResponseDataTwoDataTypeFromString(s string) (GetScoresR... type GetScoresResponseDataZero (line 4778) | type GetScoresResponseDataZero struct method GetID (line 4816) | func (g *GetScoresResponseDataZero) GetID() string { method GetTraceID (line 4823) | func (g *GetScoresResponseDataZero) GetTraceID() *string { method GetSessionID (line 4830) | func (g *GetScoresResponseDataZero) GetSessionID() *string { method GetObservationID (line 4837) | func (g *GetScoresResponseDataZero) GetObservationID() *string { method GetDatasetRunID (line 4844) | func (g *GetScoresResponseDataZero) GetDatasetRunID() *string { method GetName (line 4851) | func (g *GetScoresResponseDataZero) GetName() string { method GetSource (line 4858) | func (g *GetScoresResponseDataZero) GetSource() ScoreSource { method GetTimestamp (line 4865) | func (g *GetScoresResponseDataZero) GetTimestamp() time.Time { method GetCreatedAt (line 4872) | func (g *GetScoresResponseDataZero) GetCreatedAt() time.Time { method GetUpdatedAt (line 4879) | func (g *GetScoresResponseDataZero) GetUpdatedAt() time.Time { method GetAuthorUserID (line 4886) | func (g *GetScoresResponseDataZero) GetAuthorUserID() *string { method GetComment (line 4893) | func (g *GetScoresResponseDataZero) GetComment() *string { method GetMetadata (line 4900) | func (g *GetScoresResponseDataZero) GetMetadata() interface{} { method GetConfigID (line 4907) | func (g *GetScoresResponseDataZero) GetConfigID() *string { method GetQueueID (line 4914) | func (g *GetScoresResponseDataZero) GetQueueID() *string { method GetEnvironment (line 4921) | func (g *GetScoresResponseDataZero) GetEnvironment() string { method GetValue (line 4928) | func (g *GetScoresResponseDataZero) GetValue() float64 { method GetTrace (line 4935) | func (g *GetScoresResponseDataZero) GetTrace() *GetScoresResponseTrace... method GetDataType (line 4942) | func (g *GetScoresResponseDataZero) GetDataType() *GetScoresResponseDa... method GetExtraProperties (line 4949) | func (g *GetScoresResponseDataZero) GetExtraProperties() map[string]in... method require (line 4953) | func (g *GetScoresResponseDataZero) require(field *big.Int) { method SetID (line 4962) | func (g *GetScoresResponseDataZero) SetID(id string) { method SetTraceID (line 4969) | func (g *GetScoresResponseDataZero) SetTraceID(traceID *string) { method SetSessionID (line 4976) | func (g *GetScoresResponseDataZero) SetSessionID(sessionID *string) { method SetObservationID (line 4983) | func (g *GetScoresResponseDataZero) SetObservationID(observationID *st... method SetDatasetRunID (line 4990) | func (g *GetScoresResponseDataZero) SetDatasetRunID(datasetRunID *stri... method SetName (line 4997) | func (g *GetScoresResponseDataZero) SetName(name string) { method SetSource (line 5004) | func (g *GetScoresResponseDataZero) SetSource(source ScoreSource) { method SetTimestamp (line 5011) | func (g *GetScoresResponseDataZero) SetTimestamp(timestamp time.Time) { method SetCreatedAt (line 5018) | func (g *GetScoresResponseDataZero) SetCreatedAt(createdAt time.Time) { method SetUpdatedAt (line 5025) | func (g *GetScoresResponseDataZero) SetUpdatedAt(updatedAt time.Time) { method SetAuthorUserID (line 5032) | func (g *GetScoresResponseDataZero) SetAuthorUserID(authorUserID *stri... method SetComment (line 5039) | func (g *GetScoresResponseDataZero) SetComment(comment *string) { method SetMetadata (line 5046) | func (g *GetScoresResponseDataZero) SetMetadata(metadata interface{}) { method SetConfigID (line 5053) | func (g *GetScoresResponseDataZero) SetConfigID(configID *string) { method SetQueueID (line 5060) | func (g *GetScoresResponseDataZero) SetQueueID(queueID *string) { method SetEnvironment (line 5067) | func (g *GetScoresResponseDataZero) SetEnvironment(environment string) { method SetValue (line 5074) | func (g *GetScoresResponseDataZero) SetValue(value float64) { method SetTrace (line 5081) | func (g *GetScoresResponseDataZero) SetTrace(trace *GetScoresResponseT... method SetDataType (line 5088) | func (g *GetScoresResponseDataZero) SetDataType(dataType *GetScoresRes... method UnmarshalJSON (line 5093) | func (g *GetScoresResponseDataZero) UnmarshalJSON(data []byte) error { method MarshalJSON (line 5119) | func (g *GetScoresResponseDataZero) MarshalJSON() ([]byte, error) { method String (line 5136) | func (g *GetScoresResponseDataZero) String() string { type GetScoresResponseDataZeroDataType (line 5148) | type GetScoresResponseDataZeroDataType method Ptr (line 5163) | func (g GetScoresResponseDataZeroDataType) Ptr() *GetScoresResponseDat... constant GetScoresResponseDataZeroDataTypeNumeric (line 5151) | GetScoresResponseDataZeroDataTypeNumeric GetScoresResponseDataZeroDataTy... function NewGetScoresResponseDataZeroDataTypeFromString (line 5154) | func NewGetScoresResponseDataZeroDataTypeFromString(s string) (GetScores... type GetScoresResponseTraceData (line 5173) | type GetScoresResponseTraceData struct method GetUserID (line 5188) | func (g *GetScoresResponseTraceData) GetUserID() *string { method GetTags (line 5195) | func (g *GetScoresResponseTraceData) GetTags() []string { method GetEnvironment (line 5202) | func (g *GetScoresResponseTraceData) GetEnvironment() *string { method GetExtraProperties (line 5209) | func (g *GetScoresResponseTraceData) GetExtraProperties() map[string]i... method require (line 5213) | func (g *GetScoresResponseTraceData) require(field *big.Int) { method SetUserID (line 5222) | func (g *GetScoresResponseTraceData) SetUserID(userID *string) { method SetTags (line 5229) | func (g *GetScoresResponseTraceData) SetTags(tags []string) { method SetEnvironment (line 5236) | func (g *GetScoresResponseTraceData) SetEnvironment(environment *strin... method UnmarshalJSON (line 5241) | func (g *GetScoresResponseTraceData) UnmarshalJSON(data []byte) error { method MarshalJSON (line 5257) | func (g *GetScoresResponseTraceData) MarshalJSON() ([]byte, error) { method String (line 5268) | func (g *GetScoresResponseTraceData) String() string { type NumericScore (line 5300) | type NumericScore struct method GetID (line 5336) | func (n *NumericScore) GetID() string { method GetTraceID (line 5343) | func (n *NumericScore) GetTraceID() *string { method GetSessionID (line 5350) | func (n *NumericScore) GetSessionID() *string { method GetObservationID (line 5357) | func (n *NumericScore) GetObservationID() *string { method GetDatasetRunID (line 5364) | func (n *NumericScore) GetDatasetRunID() *string { method GetName (line 5371) | func (n *NumericScore) GetName() string { method GetSource (line 5378) | func (n *NumericScore) GetSource() ScoreSource { method GetTimestamp (line 5385) | func (n *NumericScore) GetTimestamp() time.Time { method GetCreatedAt (line 5392) | func (n *NumericScore) GetCreatedAt() time.Time { method GetUpdatedAt (line 5399) | func (n *NumericScore) GetUpdatedAt() time.Time { method GetAuthorUserID (line 5406) | func (n *NumericScore) GetAuthorUserID() *string { method GetComment (line 5413) | func (n *NumericScore) GetComment() *string { method GetMetadata (line 5420) | func (n *NumericScore) GetMetadata() interface{} { method GetConfigID (line 5427) | func (n *NumericScore) GetConfigID() *string { method GetQueueID (line 5434) | func (n *NumericScore) GetQueueID() *string { method GetEnvironment (line 5441) | func (n *NumericScore) GetEnvironment() string { method GetValue (line 5448) | func (n *NumericScore) GetValue() float64 { method GetExtraProperties (line 5455) | func (n *NumericScore) GetExtraProperties() map[string]interface{} { method require (line 5459) | func (n *NumericScore) require(field *big.Int) { method SetID (line 5468) | func (n *NumericScore) SetID(id string) { method SetTraceID (line 5475) | func (n *NumericScore) SetTraceID(traceID *string) { method SetSessionID (line 5482) | func (n *NumericScore) SetSessionID(sessionID *string) { method SetObservationID (line 5489) | func (n *NumericScore) SetObservationID(observationID *string) { method SetDatasetRunID (line 5496) | func (n *NumericScore) SetDatasetRunID(datasetRunID *string) { method SetName (line 5503) | func (n *NumericScore) SetName(name string) { method SetSource (line 5510) | func (n *NumericScore) SetSource(source ScoreSource) { method SetTimestamp (line 5517) | func (n *NumericScore) SetTimestamp(timestamp time.Time) { method SetCreatedAt (line 5524) | func (n *NumericScore) SetCreatedAt(createdAt time.Time) { method SetUpdatedAt (line 5531) | func (n *NumericScore) SetUpdatedAt(updatedAt time.Time) { method SetAuthorUserID (line 5538) | func (n *NumericScore) SetAuthorUserID(authorUserID *string) { method SetComment (line 5545) | func (n *NumericScore) SetComment(comment *string) { method SetMetadata (line 5552) | func (n *NumericScore) SetMetadata(metadata interface{}) { method SetConfigID (line 5559) | func (n *NumericScore) SetConfigID(configID *string) { method SetQueueID (line 5566) | func (n *NumericScore) SetQueueID(queueID *string) { method SetEnvironment (line 5573) | func (n *NumericScore) SetEnvironment(environment string) { method SetValue (line 5580) | func (n *NumericScore) SetValue(value float64) { method UnmarshalJSON (line 5585) | func (n *NumericScore) UnmarshalJSON(data []byte) error { method MarshalJSON (line 5611) | func (n *NumericScore) MarshalJSON() ([]byte, error) { method String (line 5628) | func (n *NumericScore) String() string { type Score (line 5640) | type Score struct method GetScoreZero (line 5649) | func (s *Score) GetScoreZero() *ScoreZero { method GetScoreOne (line 5656) | func (s *Score) GetScoreOne() *ScoreOne { method GetScoreTwo (line 5663) | func (s *Score) GetScoreTwo() *ScoreTwo { method GetScoreThree (line 5670) | func (s *Score) GetScoreThree() *ScoreThree { method UnmarshalJSON (line 5677) | func (s *Score) UnmarshalJSON(data []byte) error { method MarshalJSON (line 5705) | func (s Score) MarshalJSON() ([]byte, error) { method Accept (line 5728) | func (s *Score) Accept(visitor ScoreVisitor) error { type ScoreVisitor (line 5721) | type ScoreVisitor interface type ScoreOne (line 5766) | type ScoreOne struct method GetID (line 5805) | func (s *ScoreOne) GetID() string { method GetTraceID (line 5812) | func (s *ScoreOne) GetTraceID() *string { method GetSessionID (line 5819) | func (s *ScoreOne) GetSessionID() *string { method GetObservationID (line 5826) | func (s *ScoreOne) GetObservationID() *string { method GetDatasetRunID (line 5833) | func (s *ScoreOne) GetDatasetRunID() *string { method GetName (line 5840) | func (s *ScoreOne) GetName() string { method GetSource (line 5847) | func (s *ScoreOne) GetSource() ScoreSource { method GetTimestamp (line 5854) | func (s *ScoreOne) GetTimestamp() time.Time { method GetCreatedAt (line 5861) | func (s *ScoreOne) GetCreatedAt() time.Time { method GetUpdatedAt (line 5868) | func (s *ScoreOne) GetUpdatedAt() time.Time { method GetAuthorUserID (line 5875) | func (s *ScoreOne) GetAuthorUserID() *string { method GetComment (line 5882) | func (s *ScoreOne) GetComment() *string { method GetMetadata (line 5889) | func (s *ScoreOne) GetMetadata() interface{} { method GetConfigID (line 5896) | func (s *ScoreOne) GetConfigID() *string { method GetQueueID (line 5903) | func (s *ScoreOne) GetQueueID() *string { method GetEnvironment (line 5910) | func (s *ScoreOne) GetEnvironment() string { method GetValue (line 5917) | func (s *ScoreOne) GetValue() float64 { method GetStringValue (line 5924) | func (s *ScoreOne) GetStringValue() string { method GetDataType (line 5931) | func (s *ScoreOne) GetDataType() *ScoreOneDataType { method GetExtraProperties (line 5938) | func (s *ScoreOne) GetExtraProperties() map[string]interface{} { method require (line 5942) | func (s *ScoreOne) require(field *big.Int) { method SetID (line 5951) | func (s *ScoreOne) SetID(id string) { method SetTraceID (line 5958) | func (s *ScoreOne) SetTraceID(traceID *string) { method SetSessionID (line 5965) | func (s *ScoreOne) SetSessionID(sessionID *string) { method SetObservationID (line 5972) | func (s *ScoreOne) SetObservationID(observationID *string) { method SetDatasetRunID (line 5979) | func (s *ScoreOne) SetDatasetRunID(datasetRunID *string) { method SetName (line 5986) | func (s *ScoreOne) SetName(name string) { method SetSource (line 5993) | func (s *ScoreOne) SetSource(source ScoreSource) { method SetTimestamp (line 6000) | func (s *ScoreOne) SetTimestamp(timestamp time.Time) { method SetCreatedAt (line 6007) | func (s *ScoreOne) SetCreatedAt(createdAt time.Time) { method SetUpdatedAt (line 6014) | func (s *ScoreOne) SetUpdatedAt(updatedAt time.Time) { method SetAuthorUserID (line 6021) | func (s *ScoreOne) SetAuthorUserID(authorUserID *string) { method SetComment (line 6028) | func (s *ScoreOne) SetComment(comment *string) { method SetMetadata (line 6035) | func (s *ScoreOne) SetMetadata(metadata interface{}) { method SetConfigID (line 6042) | func (s *ScoreOne) SetConfigID(configID *string) { method SetQueueID (line 6049) | func (s *ScoreOne) SetQueueID(queueID *string) { method SetEnvironment (line 6056) | func (s *ScoreOne) SetEnvironment(environment string) { method SetValue (line 6063) | func (s *ScoreOne) SetValue(value float64) { method SetStringValue (line 6070) | func (s *ScoreOne) SetStringValue(stringValue string) { method SetDataType (line 6077) | func (s *ScoreOne) SetDataType(dataType *ScoreOneDataType) { method UnmarshalJSON (line 6082) | func (s *ScoreOne) UnmarshalJSON(data []byte) error { method MarshalJSON (line 6108) | func (s *ScoreOne) MarshalJSON() ([]byte, error) { method String (line 6125) | func (s *ScoreOne) String() string { type ScoreOneDataType (line 6137) | type ScoreOneDataType method Ptr (line 6152) | func (s ScoreOneDataType) Ptr() *ScoreOneDataType { constant ScoreOneDataTypeCategorical (line 6140) | ScoreOneDataTypeCategorical ScoreOneDataType = "CATEGORICAL" function NewScoreOneDataTypeFromString (line 6143) | func NewScoreOneDataTypeFromString(s string) (ScoreOneDataType, error) { type ScoreThree (line 6178) | type ScoreThree struct method GetID (line 6217) | func (s *ScoreThree) GetID() string { method GetTraceID (line 6224) | func (s *ScoreThree) GetTraceID() *string { method GetSessionID (line 6231) | func (s *ScoreThree) GetSessionID() *string { method GetObservationID (line 6238) | func (s *ScoreThree) GetObservationID() *string { method GetDatasetRunID (line 6245) | func (s *ScoreThree) GetDatasetRunID() *string { method GetName (line 6252) | func (s *ScoreThree) GetName() string { method GetSource (line 6259) | func (s *ScoreThree) GetSource() ScoreSource { method GetTimestamp (line 6266) | func (s *ScoreThree) GetTimestamp() time.Time { method GetCreatedAt (line 6273) | func (s *ScoreThree) GetCreatedAt() time.Time { method GetUpdatedAt (line 6280) | func (s *ScoreThree) GetUpdatedAt() time.Time { method GetAuthorUserID (line 6287) | func (s *ScoreThree) GetAuthorUserID() *string { method GetComment (line 6294) | func (s *ScoreThree) GetComment() *string { method GetMetadata (line 6301) | func (s *ScoreThree) GetMetadata() interface{} { method GetConfigID (line 6308) | func (s *ScoreThree) GetConfigID() *string { method GetQueueID (line 6315) | func (s *ScoreThree) GetQueueID() *string { method GetEnvironment (line 6322) | func (s *ScoreThree) GetEnvironment() string { method GetValue (line 6329) | func (s *ScoreThree) GetValue() float64 { method GetStringValue (line 6336) | func (s *ScoreThree) GetStringValue() string { method GetDataType (line 6343) | func (s *ScoreThree) GetDataType() *ScoreThreeDataType { method GetExtraProperties (line 6350) | func (s *ScoreThree) GetExtraProperties() map[string]interface{} { method require (line 6354) | func (s *ScoreThree) require(field *big.Int) { method SetID (line 6363) | func (s *ScoreThree) SetID(id string) { method SetTraceID (line 6370) | func (s *ScoreThree) SetTraceID(traceID *string) { method SetSessionID (line 6377) | func (s *ScoreThree) SetSessionID(sessionID *string) { method SetObservationID (line 6384) | func (s *ScoreThree) SetObservationID(observationID *string) { method SetDatasetRunID (line 6391) | func (s *ScoreThree) SetDatasetRunID(datasetRunID *string) { method SetName (line 6398) | func (s *ScoreThree) SetName(name string) { method SetSource (line 6405) | func (s *ScoreThree) SetSource(source ScoreSource) { method SetTimestamp (line 6412) | func (s *ScoreThree) SetTimestamp(timestamp time.Time) { method SetCreatedAt (line 6419) | func (s *ScoreThree) SetCreatedAt(createdAt time.Time) { method SetUpdatedAt (line 6426) | func (s *ScoreThree) SetUpdatedAt(updatedAt time.Time) { method SetAuthorUserID (line 6433) | func (s *ScoreThree) SetAuthorUserID(authorUserID *string) { method SetComment (line 6440) | func (s *ScoreThree) SetComment(comment *string) { method SetMetadata (line 6447) | func (s *ScoreThree) SetMetadata(metadata interface{}) { method SetConfigID (line 6454) | func (s *ScoreThree) SetConfigID(configID *string) { method SetQueueID (line 6461) | func (s *ScoreThree) SetQueueID(queueID *string) { method SetEnvironment (line 6468) | func (s *ScoreThree) SetEnvironment(environment string) { method SetValue (line 6475) | func (s *ScoreThree) SetValue(value float64) { method SetStringValue (line 6482) | func (s *ScoreThree) SetStringValue(stringValue string) { method SetDataType (line 6489) | func (s *ScoreThree) SetDataType(dataType *ScoreThreeDataType) { method UnmarshalJSON (line 6494) | func (s *ScoreThree) UnmarshalJSON(data []byte) error { method MarshalJSON (line 6520) | func (s *ScoreThree) MarshalJSON() ([]byte, error) { method String (line 6537) | func (s *ScoreThree) String() string { type ScoreThreeDataType (line 6549) | type ScoreThreeDataType method Ptr (line 6564) | func (s ScoreThreeDataType) Ptr() *ScoreThreeDataType { constant ScoreThreeDataTypeCorrection (line 6552) | ScoreThreeDataTypeCorrection ScoreThreeDataType = "CORRECTION" function NewScoreThreeDataTypeFromString (line 6555) | func NewScoreThreeDataTypeFromString(s string) (ScoreThreeDataType, erro... type ScoreTwo (line 6590) | type ScoreTwo struct method GetID (line 6629) | func (s *ScoreTwo) GetID() string { method GetTraceID (line 6636) | func (s *ScoreTwo) GetTraceID() *string { method GetSessionID (line 6643) | func (s *ScoreTwo) GetSessionID() *string { method GetObservationID (line 6650) | func (s *ScoreTwo) GetObservationID() *string { method GetDatasetRunID (line 6657) | func (s *ScoreTwo) GetDatasetRunID() *string { method GetName (line 6664) | func (s *ScoreTwo) GetName() string { method GetSource (line 6671) | func (s *ScoreTwo) GetSource() ScoreSource { method GetTimestamp (line 6678) | func (s *ScoreTwo) GetTimestamp() time.Time { method GetCreatedAt (line 6685) | func (s *ScoreTwo) GetCreatedAt() time.Time { method GetUpdatedAt (line 6692) | func (s *ScoreTwo) GetUpdatedAt() time.Time { method GetAuthorUserID (line 6699) | func (s *ScoreTwo) GetAuthorUserID() *string { method GetComment (line 6706) | func (s *ScoreTwo) GetComment() *string { method GetMetadata (line 6713) | func (s *ScoreTwo) GetMetadata() interface{} { method GetConfigID (line 6720) | func (s *ScoreTwo) GetConfigID() *string { method GetQueueID (line 6727) | func (s *ScoreTwo) GetQueueID() *string { method GetEnvironment (line 6734) | func (s *ScoreTwo) GetEnvironment() string { method GetValue (line 6741) | func (s *ScoreTwo) GetValue() float64 { method GetStringValue (line 6748) | func (s *ScoreTwo) GetStringValue() string { method GetDataType (line 6755) | func (s *ScoreTwo) GetDataType() *ScoreTwoDataType { method GetExtraProperties (line 6762) | func (s *ScoreTwo) GetExtraProperties() map[string]interface{} { method require (line 6766) | func (s *ScoreTwo) require(field *big.Int) { method SetID (line 6775) | func (s *ScoreTwo) SetID(id string) { method SetTraceID (line 6782) | func (s *ScoreTwo) SetTraceID(traceID *string) { method SetSessionID (line 6789) | func (s *ScoreTwo) SetSessionID(sessionID *string) { method SetObservationID (line 6796) | func (s *ScoreTwo) SetObservationID(observationID *string) { method SetDatasetRunID (line 6803) | func (s *ScoreTwo) SetDatasetRunID(datasetRunID *string) { method SetName (line 6810) | func (s *ScoreTwo) SetName(name string) { method SetSource (line 6817) | func (s *ScoreTwo) SetSource(source ScoreSource) { method SetTimestamp (line 6824) | func (s *ScoreTwo) SetTimestamp(timestamp time.Time) { method SetCreatedAt (line 6831) | func (s *ScoreTwo) SetCreatedAt(createdAt time.Time) { method SetUpdatedAt (line 6838) | func (s *ScoreTwo) SetUpdatedAt(updatedAt time.Time) { method SetAuthorUserID (line 6845) | func (s *ScoreTwo) SetAuthorUserID(authorUserID *string) { method SetComment (line 6852) | func (s *ScoreTwo) SetComment(comment *string) { method SetMetadata (line 6859) | func (s *ScoreTwo) SetMetadata(metadata interface{}) { method SetConfigID (line 6866) | func (s *ScoreTwo) SetConfigID(configID *string) { method SetQueueID (line 6873) | func (s *ScoreTwo) SetQueueID(queueID *string) { method SetEnvironment (line 6880) | func (s *ScoreTwo) SetEnvironment(environment string) { method SetValue (line 6887) | func (s *ScoreTwo) SetValue(value float64) { method SetStringValue (line 6894) | func (s *ScoreTwo) SetStringValue(stringValue string) { method SetDataType (line 6901) | func (s *ScoreTwo) SetDataType(dataType *ScoreTwoDataType) { method UnmarshalJSON (line 6906) | func (s *ScoreTwo) UnmarshalJSON(data []byte) error { method MarshalJSON (line 6932) | func (s *ScoreTwo) MarshalJSON() ([]byte, error) { method String (line 6949) | func (s *ScoreTwo) String() string { type ScoreTwoDataType (line 6961) | type ScoreTwoDataType method Ptr (line 6976) | func (s ScoreTwoDataType) Ptr() *ScoreTwoDataType { constant ScoreTwoDataTypeBoolean (line 6964) | ScoreTwoDataTypeBoolean ScoreTwoDataType = "BOOLEAN" function NewScoreTwoDataTypeFromString (line 6967) | func NewScoreTwoDataTypeFromString(s string) (ScoreTwoDataType, error) { type ScoreZero (line 7001) | type ScoreZero struct method GetID (line 7038) | func (s *ScoreZero) GetID() string { method GetTraceID (line 7045) | func (s *ScoreZero) GetTraceID() *string { method GetSessionID (line 7052) | func (s *ScoreZero) GetSessionID() *string { method GetObservationID (line 7059) | func (s *ScoreZero) GetObservationID() *string { method GetDatasetRunID (line 7066) | func (s *ScoreZero) GetDatasetRunID() *string { method GetName (line 7073) | func (s *ScoreZero) GetName() string { method GetSource (line 7080) | func (s *ScoreZero) GetSource() ScoreSource { method GetTimestamp (line 7087) | func (s *ScoreZero) GetTimestamp() time.Time { method GetCreatedAt (line 7094) | func (s *ScoreZero) GetCreatedAt() time.Time { method GetUpdatedAt (line 7101) | func (s *ScoreZero) GetUpdatedAt() time.Time { method GetAuthorUserID (line 7108) | func (s *ScoreZero) GetAuthorUserID() *string { method GetComment (line 7115) | func (s *ScoreZero) GetComment() *string { method GetMetadata (line 7122) | func (s *ScoreZero) GetMetadata() interface{} { method GetConfigID (line 7129) | func (s *ScoreZero) GetConfigID() *string { method GetQueueID (line 7136) | func (s *ScoreZero) GetQueueID() *string { method GetEnvironment (line 7143) | func (s *ScoreZero) GetEnvironment() string { method GetValue (line 7150) | func (s *ScoreZero) GetValue() float64 { method GetDataType (line 7157) | func (s *ScoreZero) GetDataType() *ScoreZeroDataType { method GetExtraProperties (line 7164) | func (s *ScoreZero) GetExtraProperties() map[string]interface{} { method require (line 7168) | func (s *ScoreZero) require(field *big.Int) { method SetID (line 7177) | func (s *ScoreZero) SetID(id string) { method SetTraceID (line 7184) | func (s *ScoreZero) SetTraceID(traceID *string) { method SetSessionID (line 7191) | func (s *ScoreZero) SetSessionID(sessionID *string) { method SetObservationID (line 7198) | func (s *ScoreZero) SetObservationID(observationID *string) { method SetDatasetRunID (line 7205) | func (s *ScoreZero) SetDatasetRunID(datasetRunID *string) { method SetName (line 7212) | func (s *ScoreZero) SetName(name string) { method SetSource (line 7219) | func (s *ScoreZero) SetSource(source ScoreSource) { method SetTimestamp (line 7226) | func (s *ScoreZero) SetTimestamp(timestamp time.Time) { method SetCreatedAt (line 7233) | func (s *ScoreZero) SetCreatedAt(createdAt time.Time) { method SetUpdatedAt (line 7240) | func (s *ScoreZero) SetUpdatedAt(updatedAt time.Time) { method SetAuthorUserID (line 7247) | func (s *ScoreZero) SetAuthorUserID(authorUserID *string) { method SetComment (line 7254) | func (s *ScoreZero) SetComment(comment *string) { method SetMetadata (line 7261) | func (s *ScoreZero) SetMetadata(metadata interface{}) { method SetConfigID (line 7268) | func (s *ScoreZero) SetConfigID(configID *string) { method SetQueueID (line 7275) | func (s *ScoreZero) SetQueueID(queueID *string) { method SetEnvironment (line 7282) | func (s *ScoreZero) SetEnvironment(environment string) { method SetValue (line 7289) | func (s *ScoreZero) SetValue(value float64) { method SetDataType (line 7296) | func (s *ScoreZero) SetDataType(dataType *ScoreZeroDataType) { method UnmarshalJSON (line 7301) | func (s *ScoreZero) UnmarshalJSON(data []byte) error { method MarshalJSON (line 7327) | func (s *ScoreZero) MarshalJSON() ([]byte, error) { method String (line 7344) | func (s *ScoreZero) String() string { type ScoreZeroDataType (line 7356) | type ScoreZeroDataType method Ptr (line 7371) | func (s ScoreZeroDataType) Ptr() *ScoreZeroDataType { constant ScoreZeroDataTypeNumeric (line 7359) | ScoreZeroDataTypeNumeric ScoreZeroDataType = "NUMERIC" function NewScoreZeroDataTypeFromString (line 7362) | func NewScoreZeroDataTypeFromString(s string) (ScoreZeroDataType, error) { FILE: backend/pkg/observability/langfuse/api/scorev2/client.go type Client (line 14) | type Client struct method Get (line 37) | func (c *Client) Get( method GetByID (line 54) | func (c *Client) GetByID( function NewClient (line 22) | func NewClient(options *core.RequestOptions) *Client { FILE: backend/pkg/observability/langfuse/api/scorev2/raw_client.go type RawClient (line 15) | type RawClient struct method Get (line 34) | func (r *RawClient) Get( method GetByID (line 82) | func (r *RawClient) GetByID( function NewRawClient (line 21) | func NewRawClient(options *core.RequestOptions) *RawClient { FILE: backend/pkg/observability/langfuse/api/sessions.go type SessionsGetRequest (line 17) | type SessionsGetRequest struct method require (line 25) | func (s *SessionsGetRequest) require(field *big.Int) { method SetSessionID (line 34) | func (s *SessionsGetRequest) SetSessionID(sessionID string) { type SessionsListRequest (line 47) | type SessionsListRequest struct method require (line 63) | func (s *SessionsListRequest) require(field *big.Int) { method SetPage (line 72) | func (s *SessionsListRequest) SetPage(page *int) { method SetLimit (line 79) | func (s *SessionsListRequest) SetLimit(limit *int) { method SetFromTimestamp (line 86) | func (s *SessionsListRequest) SetFromTimestamp(fromTimestamp *time.Tim... method SetToTimestamp (line 93) | func (s *SessionsListRequest) SetToTimestamp(toTimestamp *time.Time) { method SetEnvironment (line 100) | func (s *SessionsListRequest) SetEnvironment(environment []*string) { type PaginatedSessions (line 110) | type PaginatedSessions struct method GetData (line 121) | func (p *PaginatedSessions) GetData() []*Session { method GetMeta (line 128) | func (p *PaginatedSessions) GetMeta() *UtilsMetaResponse { method GetExtraProperties (line 135) | func (p *PaginatedSessions) GetExtraProperties() map[string]interface{} { method require (line 139) | func (p *PaginatedSessions) require(field *big.Int) { method SetData (line 148) | func (p *PaginatedSessions) SetData(data []*Session) { method SetMeta (line 155) | func (p *PaginatedSessions) SetMeta(meta *UtilsMetaResponse) { method UnmarshalJSON (line 160) | func (p *PaginatedSessions) UnmarshalJSON(data []byte) error { method MarshalJSON (line 176) | func (p *PaginatedSessions) MarshalJSON() ([]byte, error) { method String (line 187) | func (p *PaginatedSessions) String() string { type Session (line 206) | type Session struct method GetID (line 220) | func (s *Session) GetID() string { method GetCreatedAt (line 227) | func (s *Session) GetCreatedAt() time.Time { method GetProjectID (line 234) | func (s *Session) GetProjectID() string { method GetEnvironment (line 241) | func (s *Session) GetEnvironment() string { method GetExtraProperties (line 248) | func (s *Session) GetExtraProperties() map[string]interface{} { method require (line 252) | func (s *Session) require(field *big.Int) { method SetID (line 261) | func (s *Session) SetID(id string) { method SetCreatedAt (line 268) | func (s *Session) SetCreatedAt(createdAt time.Time) { method SetProjectID (line 275) | func (s *Session) SetProjectID(projectID string) { method SetEnvironment (line 282) | func (s *Session) SetEnvironment(environment string) { method UnmarshalJSON (line 287) | func (s *Session) UnmarshalJSON(data []byte) error { method MarshalJSON (line 309) | func (s *Session) MarshalJSON() ([]byte, error) { method String (line 322) | func (s *Session) String() string { type SessionWithTraces (line 342) | type SessionWithTraces struct method GetID (line 357) | func (s *SessionWithTraces) GetID() string { method GetCreatedAt (line 364) | func (s *SessionWithTraces) GetCreatedAt() time.Time { method GetProjectID (line 371) | func (s *SessionWithTraces) GetProjectID() string { method GetEnvironment (line 378) | func (s *SessionWithTraces) GetEnvironment() string { method GetTraces (line 385) | func (s *SessionWithTraces) GetTraces() []*Trace { method GetExtraProperties (line 392) | func (s *SessionWithTraces) GetExtraProperties() map[string]interface{} { method require (line 396) | func (s *SessionWithTraces) require(field *big.Int) { method SetID (line 405) | func (s *SessionWithTraces) SetID(id string) { method SetCreatedAt (line 412) | func (s *SessionWithTraces) SetCreatedAt(createdAt time.Time) { method SetProjectID (line 419) | func (s *SessionWithTraces) SetProjectID(projectID string) { method SetEnvironment (line 426) | func (s *SessionWithTraces) SetEnvironment(environment string) { method SetTraces (line 433) | func (s *SessionWithTraces) SetTraces(traces []*Trace) { method UnmarshalJSON (line 438) | func (s *SessionWithTraces) UnmarshalJSON(data []byte) error { method MarshalJSON (line 460) | func (s *SessionWithTraces) MarshalJSON() ([]byte, error) { method String (line 473) | func (s *SessionWithTraces) String() string { FILE: backend/pkg/observability/langfuse/api/sessions/client.go type Client (line 14) | type Client struct method List (line 37) | func (c *Client) List( method Get (line 54) | func (c *Client) Get( function NewClient (line 22) | func NewClient(options *core.RequestOptions) *Client { FILE: backend/pkg/observability/langfuse/api/sessions/raw_client.go type RawClient (line 15) | type RawClient struct method List (line 34) | func (r *RawClient) List( method Get (line 82) | func (r *RawClient) Get( function NewRawClient (line 21) | func NewRawClient(options *core.RequestOptions) *RawClient { FILE: backend/pkg/observability/langfuse/api/trace.go type TraceDeleteRequest (line 17) | type TraceDeleteRequest struct method require (line 25) | func (t *TraceDeleteRequest) require(field *big.Int) { method SetTraceID (line 34) | func (t *TraceDeleteRequest) SetTraceID(traceID string) { type TraceDeleteMultipleRequest (line 43) | type TraceDeleteMultipleRequest struct method require (line 51) | func (t *TraceDeleteMultipleRequest) require(field *big.Int) { method SetTraceIDs (line 60) | func (t *TraceDeleteMultipleRequest) SetTraceIDs(traceIDs []string) { method UnmarshalJSON (line 65) | func (t *TraceDeleteMultipleRequest) UnmarshalJSON(data []byte) error { method MarshalJSON (line 75) | func (t *TraceDeleteMultipleRequest) MarshalJSON() ([]byte, error) { type TraceGetRequest (line 90) | type TraceGetRequest struct method require (line 98) | func (t *TraceGetRequest) require(field *big.Int) { method SetTraceID (line 107) | func (t *TraceGetRequest) SetTraceID(traceID string) { type TraceListRequest (line 129) | type TraceListRequest struct method require (line 268) | func (t *TraceListRequest) require(field *big.Int) { method SetPage (line 277) | func (t *TraceListRequest) SetPage(page *int) { method SetLimit (line 284) | func (t *TraceListRequest) SetLimit(limit *int) { method SetUserID (line 291) | func (t *TraceListRequest) SetUserID(userID *string) { method SetName (line 298) | func (t *TraceListRequest) SetName(name *string) { method SetSessionID (line 305) | func (t *TraceListRequest) SetSessionID(sessionID *string) { method SetFromTimestamp (line 312) | func (t *TraceListRequest) SetFromTimestamp(fromTimestamp *time.Time) { method SetToTimestamp (line 319) | func (t *TraceListRequest) SetToTimestamp(toTimestamp *time.Time) { method SetOrderBy (line 326) | func (t *TraceListRequest) SetOrderBy(orderBy *string) { method SetTags (line 333) | func (t *TraceListRequest) SetTags(tags []*string) { method SetVersion (line 340) | func (t *TraceListRequest) SetVersion(version *string) { method SetRelease (line 347) | func (t *TraceListRequest) SetRelease(release *string) { method SetEnvironment (line 354) | func (t *TraceListRequest) SetEnvironment(environment []*string) { method SetFields (line 361) | func (t *TraceListRequest) SetFields(fields *string) { method SetFilter (line 368) | func (t *TraceListRequest) SetFilter(filter *string) { type BaseScoreV1 (line 390) | type BaseScoreV1 struct method GetID (line 419) | func (b *BaseScoreV1) GetID() string { method GetTraceID (line 426) | func (b *BaseScoreV1) GetTraceID() string { method GetName (line 433) | func (b *BaseScoreV1) GetName() string { method GetSource (line 440) | func (b *BaseScoreV1) GetSource() ScoreSource { method GetObservationID (line 447) | func (b *BaseScoreV1) GetObservationID() *string { method GetTimestamp (line 454) | func (b *BaseScoreV1) GetTimestamp() time.Time { method GetCreatedAt (line 461) | func (b *BaseScoreV1) GetCreatedAt() time.Time { method GetUpdatedAt (line 468) | func (b *BaseScoreV1) GetUpdatedAt() time.Time { method GetAuthorUserID (line 475) | func (b *BaseScoreV1) GetAuthorUserID() *string { method GetComment (line 482) | func (b *BaseScoreV1) GetComment() *string { method GetMetadata (line 489) | func (b *BaseScoreV1) GetMetadata() interface{} { method GetConfigID (line 496) | func (b *BaseScoreV1) GetConfigID() *string { method GetQueueID (line 503) | func (b *BaseScoreV1) GetQueueID() *string { method GetEnvironment (line 510) | func (b *BaseScoreV1) GetEnvironment() string { method GetExtraProperties (line 517) | func (b *BaseScoreV1) GetExtraProperties() map[string]interface{} { method require (line 521) | func (b *BaseScoreV1) require(field *big.Int) { method SetID (line 530) | func (b *BaseScoreV1) SetID(id string) { method SetTraceID (line 537) | func (b *BaseScoreV1) SetTraceID(traceID string) { method SetName (line 544) | func (b *BaseScoreV1) SetName(name string) { method SetSource (line 551) | func (b *BaseScoreV1) SetSource(source ScoreSource) { method SetObservationID (line 558) | func (b *BaseScoreV1) SetObservationID(observationID *string) { method SetTimestamp (line 565) | func (b *BaseScoreV1) SetTimestamp(timestamp time.Time) { method SetCreatedAt (line 572) | func (b *BaseScoreV1) SetCreatedAt(createdAt time.Time) { method SetUpdatedAt (line 579) | func (b *BaseScoreV1) SetUpdatedAt(updatedAt time.Time) { method SetAuthorUserID (line 586) | func (b *BaseScoreV1) SetAuthorUserID(authorUserID *string) { method SetComment (line 593) | func (b *BaseScoreV1) SetComment(comment *string) { method SetMetadata (line 600) | func (b *BaseScoreV1) SetMetadata(metadata interface{}) { method SetConfigID (line 607) | func (b *BaseScoreV1) SetConfigID(configID *string) { method SetQueueID (line 614) | func (b *BaseScoreV1) SetQueueID(queueID *string) { method SetEnvironment (line 621) | func (b *BaseScoreV1) SetEnvironment(environment string) { method UnmarshalJSON (line 626) | func (b *BaseScoreV1) UnmarshalJSON(data []byte) error { method MarshalJSON (line 652) | func (b *BaseScoreV1) MarshalJSON() ([]byte, error) { method String (line 669) | func (b *BaseScoreV1) String() string { type BooleanScoreV1 (line 700) | type BooleanScoreV1 struct method GetID (line 733) | func (b *BooleanScoreV1) GetID() string { method GetTraceID (line 740) | func (b *BooleanScoreV1) GetTraceID() string { method GetName (line 747) | func (b *BooleanScoreV1) GetName() string { method GetSource (line 754) | func (b *BooleanScoreV1) GetSource() ScoreSource { method GetObservationID (line 761) | func (b *BooleanScoreV1) GetObservationID() *string { method GetTimestamp (line 768) | func (b *BooleanScoreV1) GetTimestamp() time.Time { method GetCreatedAt (line 775) | func (b *BooleanScoreV1) GetCreatedAt() time.Time { method GetUpdatedAt (line 782) | func (b *BooleanScoreV1) GetUpdatedAt() time.Time { method GetAuthorUserID (line 789) | func (b *BooleanScoreV1) GetAuthorUserID() *string { method GetComment (line 796) | func (b *BooleanScoreV1) GetComment() *string { method GetMetadata (line 803) | func (b *BooleanScoreV1) GetMetadata() interface{} { method GetConfigID (line 810) | func (b *BooleanScoreV1) GetConfigID() *string { method GetQueueID (line 817) | func (b *BooleanScoreV1) GetQueueID() *string { method GetEnvironment (line 824) | func (b *BooleanScoreV1) GetEnvironment() string { method GetValue (line 831) | func (b *BooleanScoreV1) GetValue() float64 { method GetStringValue (line 838) | func (b *BooleanScoreV1) GetStringValue() string { method GetExtraProperties (line 845) | func (b *BooleanScoreV1) GetExtraProperties() map[string]interface{} { method require (line 849) | func (b *BooleanScoreV1) require(field *big.Int) { method SetID (line 858) | func (b *BooleanScoreV1) SetID(id string) { method SetTraceID (line 865) | func (b *BooleanScoreV1) SetTraceID(traceID string) { method SetName (line 872) | func (b *BooleanScoreV1) SetName(name string) { method SetSource (line 879) | func (b *BooleanScoreV1) SetSource(source ScoreSource) { method SetObservationID (line 886) | func (b *BooleanScoreV1) SetObservationID(observationID *string) { method SetTimestamp (line 893) | func (b *BooleanScoreV1) SetTimestamp(timestamp time.Time) { method SetCreatedAt (line 900) | func (b *BooleanScoreV1) SetCreatedAt(createdAt time.Time) { method SetUpdatedAt (line 907) | func (b *BooleanScoreV1) SetUpdatedAt(updatedAt time.Time) { method SetAuthorUserID (line 914) | func (b *BooleanScoreV1) SetAuthorUserID(authorUserID *string) { method SetComment (line 921) | func (b *BooleanScoreV1) SetComment(comment *string) { method SetMetadata (line 928) | func (b *BooleanScoreV1) SetMetadata(metadata interface{}) { method SetConfigID (line 935) | func (b *BooleanScoreV1) SetConfigID(configID *string) { method SetQueueID (line 942) | func (b *BooleanScoreV1) SetQueueID(queueID *string) { method SetEnvironment (line 949) | func (b *BooleanScoreV1) SetEnvironment(environment string) { method SetValue (line 956) | func (b *BooleanScoreV1) SetValue(value float64) { method SetStringValue (line 963) | func (b *BooleanScoreV1) SetStringValue(stringValue string) { method UnmarshalJSON (line 968) | func (b *BooleanScoreV1) UnmarshalJSON(data []byte) error { method MarshalJSON (line 994) | func (b *BooleanScoreV1) MarshalJSON() ([]byte, error) { method String (line 1011) | func (b *BooleanScoreV1) String() string { type CategoricalScoreV1 (line 1042) | type CategoricalScoreV1 struct method GetID (line 1075) | func (c *CategoricalScoreV1) GetID() string { method GetTraceID (line 1082) | func (c *CategoricalScoreV1) GetTraceID() string { method GetName (line 1089) | func (c *CategoricalScoreV1) GetName() string { method GetSource (line 1096) | func (c *CategoricalScoreV1) GetSource() ScoreSource { method GetObservationID (line 1103) | func (c *CategoricalScoreV1) GetObservationID() *string { method GetTimestamp (line 1110) | func (c *CategoricalScoreV1) GetTimestamp() time.Time { method GetCreatedAt (line 1117) | func (c *CategoricalScoreV1) GetCreatedAt() time.Time { method GetUpdatedAt (line 1124) | func (c *CategoricalScoreV1) GetUpdatedAt() time.Time { method GetAuthorUserID (line 1131) | func (c *CategoricalScoreV1) GetAuthorUserID() *string { method GetComment (line 1138) | func (c *CategoricalScoreV1) GetComment() *string { method GetMetadata (line 1145) | func (c *CategoricalScoreV1) GetMetadata() interface{} { method GetConfigID (line 1152) | func (c *CategoricalScoreV1) GetConfigID() *string { method GetQueueID (line 1159) | func (c *CategoricalScoreV1) GetQueueID() *string { method GetEnvironment (line 1166) | func (c *CategoricalScoreV1) GetEnvironment() string { method GetValue (line 1173) | func (c *CategoricalScoreV1) GetValue() float64 { method GetStringValue (line 1180) | func (c *CategoricalScoreV1) GetStringValue() string { method GetExtraProperties (line 1187) | func (c *CategoricalScoreV1) GetExtraProperties() map[string]interface... method require (line 1191) | func (c *CategoricalScoreV1) require(field *big.Int) { method SetID (line 1200) | func (c *CategoricalScoreV1) SetID(id string) { method SetTraceID (line 1207) | func (c *CategoricalScoreV1) SetTraceID(traceID string) { method SetName (line 1214) | func (c *CategoricalScoreV1) SetName(name string) { method SetSource (line 1221) | func (c *CategoricalScoreV1) SetSource(source ScoreSource) { method SetObservationID (line 1228) | func (c *CategoricalScoreV1) SetObservationID(observationID *string) { method SetTimestamp (line 1235) | func (c *CategoricalScoreV1) SetTimestamp(timestamp time.Time) { method SetCreatedAt (line 1242) | func (c *CategoricalScoreV1) SetCreatedAt(createdAt time.Time) { method SetUpdatedAt (line 1249) | func (c *CategoricalScoreV1) SetUpdatedAt(updatedAt time.Time) { method SetAuthorUserID (line 1256) | func (c *CategoricalScoreV1) SetAuthorUserID(authorUserID *string) { method SetComment (line 1263) | func (c *CategoricalScoreV1) SetComment(comment *string) { method SetMetadata (line 1270) | func (c *CategoricalScoreV1) SetMetadata(metadata interface{}) { method SetConfigID (line 1277) | func (c *CategoricalScoreV1) SetConfigID(configID *string) { method SetQueueID (line 1284) | func (c *CategoricalScoreV1) SetQueueID(queueID *string) { method SetEnvironment (line 1291) | func (c *CategoricalScoreV1) SetEnvironment(environment string) { method SetValue (line 1298) | func (c *CategoricalScoreV1) SetValue(value float64) { method SetStringValue (line 1305) | func (c *CategoricalScoreV1) SetStringValue(stringValue string) { method UnmarshalJSON (line 1310) | func (c *CategoricalScoreV1) UnmarshalJSON(data []byte) error { method MarshalJSON (line 1336) | func (c *CategoricalScoreV1) MarshalJSON() ([]byte, error) { method String (line 1353) | func (c *CategoricalScoreV1) String() string { type DeleteTraceResponse (line 1369) | type DeleteTraceResponse struct method GetMessage (line 1379) | func (d *DeleteTraceResponse) GetMessage() string { method GetExtraProperties (line 1386) | func (d *DeleteTraceResponse) GetExtraProperties() map[string]interfac... method require (line 1390) | func (d *DeleteTraceResponse) require(field *big.Int) { method SetMessage (line 1399) | func (d *DeleteTraceResponse) SetMessage(message string) { method UnmarshalJSON (line 1404) | func (d *DeleteTraceResponse) UnmarshalJSON(data []byte) error { method MarshalJSON (line 1420) | func (d *DeleteTraceResponse) MarshalJSON() ([]byte, error) { method String (line 1431) | func (d *DeleteTraceResponse) String() string { type NumericScoreV1 (line 1461) | type NumericScoreV1 struct method GetID (line 1492) | func (n *NumericScoreV1) GetID() string { method GetTraceID (line 1499) | func (n *NumericScoreV1) GetTraceID() string { method GetName (line 1506) | func (n *NumericScoreV1) GetName() string { method GetSource (line 1513) | func (n *NumericScoreV1) GetSource() ScoreSource { method GetObservationID (line 1520) | func (n *NumericScoreV1) GetObservationID() *string { method GetTimestamp (line 1527) | func (n *NumericScoreV1) GetTimestamp() time.Time { method GetCreatedAt (line 1534) | func (n *NumericScoreV1) GetCreatedAt() time.Time { method GetUpdatedAt (line 1541) | func (n *NumericScoreV1) GetUpdatedAt() time.Time { method GetAuthorUserID (line 1548) | func (n *NumericScoreV1) GetAuthorUserID() *string { method GetComment (line 1555) | func (n *NumericScoreV1) GetComment() *string { method GetMetadata (line 1562) | func (n *NumericScoreV1) GetMetadata() interface{} { method GetConfigID (line 1569) | func (n *NumericScoreV1) GetConfigID() *string { method GetQueueID (line 1576) | func (n *NumericScoreV1) GetQueueID() *string { method GetEnvironment (line 1583) | func (n *NumericScoreV1) GetEnvironment() string { method GetValue (line 1590) | func (n *NumericScoreV1) GetValue() float64 { method GetExtraProperties (line 1597) | func (n *NumericScoreV1) GetExtraProperties() map[string]interface{} { method require (line 1601) | func (n *NumericScoreV1) require(field *big.Int) { method SetID (line 1610) | func (n *NumericScoreV1) SetID(id string) { method SetTraceID (line 1617) | func (n *NumericScoreV1) SetTraceID(traceID string) { method SetName (line 1624) | func (n *NumericScoreV1) SetName(name string) { method SetSource (line 1631) | func (n *NumericScoreV1) SetSource(source ScoreSource) { method SetObservationID (line 1638) | func (n *NumericScoreV1) SetObservationID(observationID *string) { method SetTimestamp (line 1645) | func (n *NumericScoreV1) SetTimestamp(timestamp time.Time) { method SetCreatedAt (line 1652) | func (n *NumericScoreV1) SetCreatedAt(createdAt time.Time) { method SetUpdatedAt (line 1659) | func (n *NumericScoreV1) SetUpdatedAt(updatedAt time.Time) { method SetAuthorUserID (line 1666) | func (n *NumericScoreV1) SetAuthorUserID(authorUserID *string) { method SetComment (line 1673) | func (n *NumericScoreV1) SetComment(comment *string) { method SetMetadata (line 1680) | func (n *NumericScoreV1) SetMetadata(metadata interface{}) { method SetConfigID (line 1687) | func (n *NumericScoreV1) SetConfigID(configID *string) { method SetQueueID (line 1694) | func (n *NumericScoreV1) SetQueueID(queueID *string) { method SetEnvironment (line 1701) | func (n *NumericScoreV1) SetEnvironment(environment string) { method SetValue (line 1708) | func (n *NumericScoreV1) SetValue(value float64) { method UnmarshalJSON (line 1713) | func (n *NumericScoreV1) UnmarshalJSON(data []byte) error { method MarshalJSON (line 1739) | func (n *NumericScoreV1) MarshalJSON() ([]byte, error) { method String (line 1756) | func (n *NumericScoreV1) String() string { type ScoreV1 (line 1768) | type ScoreV1 struct method GetScoreV1Zero (line 1776) | func (s *ScoreV1) GetScoreV1Zero() *ScoreV1Zero { method GetScoreV1One (line 1783) | func (s *ScoreV1) GetScoreV1One() *ScoreV1One { method GetScoreV1Two (line 1790) | func (s *ScoreV1) GetScoreV1Two() *ScoreV1Two { method UnmarshalJSON (line 1797) | func (s *ScoreV1) UnmarshalJSON(data []byte) error { method MarshalJSON (line 1819) | func (s ScoreV1) MarshalJSON() ([]byte, error) { method Accept (line 1838) | func (s *ScoreV1) Accept(visitor ScoreV1Visitor) error { type ScoreV1Visitor (line 1832) | type ScoreV1Visitor interface type ScoreV1One (line 1871) | type ScoreV1One struct method GetID (line 1905) | func (s *ScoreV1One) GetID() string { method GetTraceID (line 1912) | func (s *ScoreV1One) GetTraceID() string { method GetName (line 1919) | func (s *ScoreV1One) GetName() string { method GetSource (line 1926) | func (s *ScoreV1One) GetSource() ScoreSource { method GetObservationID (line 1933) | func (s *ScoreV1One) GetObservationID() *string { method GetTimestamp (line 1940) | func (s *ScoreV1One) GetTimestamp() time.Time { method GetCreatedAt (line 1947) | func (s *ScoreV1One) GetCreatedAt() time.Time { method GetUpdatedAt (line 1954) | func (s *ScoreV1One) GetUpdatedAt() time.Time { method GetAuthorUserID (line 1961) | func (s *ScoreV1One) GetAuthorUserID() *string { method GetComment (line 1968) | func (s *ScoreV1One) GetComment() *string { method GetMetadata (line 1975) | func (s *ScoreV1One) GetMetadata() interface{} { method GetConfigID (line 1982) | func (s *ScoreV1One) GetConfigID() *string { method GetQueueID (line 1989) | func (s *ScoreV1One) GetQueueID() *string { method GetEnvironment (line 1996) | func (s *ScoreV1One) GetEnvironment() string { method GetValue (line 2003) | func (s *ScoreV1One) GetValue() float64 { method GetStringValue (line 2010) | func (s *ScoreV1One) GetStringValue() string { method GetDataType (line 2017) | func (s *ScoreV1One) GetDataType() *ScoreV1OneDataType { method GetExtraProperties (line 2024) | func (s *ScoreV1One) GetExtraProperties() map[string]interface{} { method require (line 2028) | func (s *ScoreV1One) require(field *big.Int) { method SetID (line 2037) | func (s *ScoreV1One) SetID(id string) { method SetTraceID (line 2044) | func (s *ScoreV1One) SetTraceID(traceID string) { method SetName (line 2051) | func (s *ScoreV1One) SetName(name string) { method SetSource (line 2058) | func (s *ScoreV1One) SetSource(source ScoreSource) { method SetObservationID (line 2065) | func (s *ScoreV1One) SetObservationID(observationID *string) { method SetTimestamp (line 2072) | func (s *ScoreV1One) SetTimestamp(timestamp time.Time) { method SetCreatedAt (line 2079) | func (s *ScoreV1One) SetCreatedAt(createdAt time.Time) { method SetUpdatedAt (line 2086) | func (s *ScoreV1One) SetUpdatedAt(updatedAt time.Time) { method SetAuthorUserID (line 2093) | func (s *ScoreV1One) SetAuthorUserID(authorUserID *string) { method SetComment (line 2100) | func (s *ScoreV1One) SetComment(comment *string) { method SetMetadata (line 2107) | func (s *ScoreV1One) SetMetadata(metadata interface{}) { method SetConfigID (line 2114) | func (s *ScoreV1One) SetConfigID(configID *string) { method SetQueueID (line 2121) | func (s *ScoreV1One) SetQueueID(queueID *string) { method SetEnvironment (line 2128) | func (s *ScoreV1One) SetEnvironment(environment string) { method SetValue (line 2135) | func (s *ScoreV1One) SetValue(value float64) { method SetStringValue (line 2142) | func (s *ScoreV1One) SetStringValue(stringValue string) { method SetDataType (line 2149) | func (s *ScoreV1One) SetDataType(dataType *ScoreV1OneDataType) { method UnmarshalJSON (line 2154) | func (s *ScoreV1One) UnmarshalJSON(data []byte) error { method MarshalJSON (line 2180) | func (s *ScoreV1One) MarshalJSON() ([]byte, error) { method String (line 2197) | func (s *ScoreV1One) String() string { type ScoreV1OneDataType (line 2209) | type ScoreV1OneDataType method Ptr (line 2224) | func (s ScoreV1OneDataType) Ptr() *ScoreV1OneDataType { constant ScoreV1OneDataTypeCategorical (line 2212) | ScoreV1OneDataTypeCategorical ScoreV1OneDataType = "CATEGORICAL" function NewScoreV1OneDataTypeFromString (line 2215) | func NewScoreV1OneDataTypeFromString(s string) (ScoreV1OneDataType, erro... type ScoreV1Two (line 2248) | type ScoreV1Two struct method GetID (line 2282) | func (s *ScoreV1Two) GetID() string { method GetTraceID (line 2289) | func (s *ScoreV1Two) GetTraceID() string { method GetName (line 2296) | func (s *ScoreV1Two) GetName() string { method GetSource (line 2303) | func (s *ScoreV1Two) GetSource() ScoreSource { method GetObservationID (line 2310) | func (s *ScoreV1Two) GetObservationID() *string { method GetTimestamp (line 2317) | func (s *ScoreV1Two) GetTimestamp() time.Time { method GetCreatedAt (line 2324) | func (s *ScoreV1Two) GetCreatedAt() time.Time { method GetUpdatedAt (line 2331) | func (s *ScoreV1Two) GetUpdatedAt() time.Time { method GetAuthorUserID (line 2338) | func (s *ScoreV1Two) GetAuthorUserID() *string { method GetComment (line 2345) | func (s *ScoreV1Two) GetComment() *string { method GetMetadata (line 2352) | func (s *ScoreV1Two) GetMetadata() interface{} { method GetConfigID (line 2359) | func (s *ScoreV1Two) GetConfigID() *string { method GetQueueID (line 2366) | func (s *ScoreV1Two) GetQueueID() *string { method GetEnvironment (line 2373) | func (s *ScoreV1Two) GetEnvironment() string { method GetValue (line 2380) | func (s *ScoreV1Two) GetValue() float64 { method GetStringValue (line 2387) | func (s *ScoreV1Two) GetStringValue() string { method GetDataType (line 2394) | func (s *ScoreV1Two) GetDataType() *ScoreV1TwoDataType { method GetExtraProperties (line 2401) | func (s *ScoreV1Two) GetExtraProperties() map[string]interface{} { method require (line 2405) | func (s *ScoreV1Two) require(field *big.Int) { method SetID (line 2414) | func (s *ScoreV1Two) SetID(id string) { method SetTraceID (line 2421) | func (s *ScoreV1Two) SetTraceID(traceID string) { method SetName (line 2428) | func (s *ScoreV1Two) SetName(name string) { method SetSource (line 2435) | func (s *ScoreV1Two) SetSource(source ScoreSource) { method SetObservationID (line 2442) | func (s *ScoreV1Two) SetObservationID(observationID *string) { method SetTimestamp (line 2449) | func (s *ScoreV1Two) SetTimestamp(timestamp time.Time) { method SetCreatedAt (line 2456) | func (s *ScoreV1Two) SetCreatedAt(createdAt time.Time) { method SetUpdatedAt (line 2463) | func (s *ScoreV1Two) SetUpdatedAt(updatedAt time.Time) { method SetAuthorUserID (line 2470) | func (s *ScoreV1Two) SetAuthorUserID(authorUserID *string) { method SetComment (line 2477) | func (s *ScoreV1Two) SetComment(comment *string) { method SetMetadata (line 2484) | func (s *ScoreV1Two) SetMetadata(metadata interface{}) { method SetConfigID (line 2491) | func (s *ScoreV1Two) SetConfigID(configID *string) { method SetQueueID (line 2498) | func (s *ScoreV1Two) SetQueueID(queueID *string) { method SetEnvironment (line 2505) | func (s *ScoreV1Two) SetEnvironment(environment string) { method SetValue (line 2512) | func (s *ScoreV1Two) SetValue(value float64) { method SetStringValue (line 2519) | func (s *ScoreV1Two) SetStringValue(stringValue string) { method SetDataType (line 2526) | func (s *ScoreV1Two) SetDataType(dataType *ScoreV1TwoDataType) { method UnmarshalJSON (line 2531) | func (s *ScoreV1Two) UnmarshalJSON(data []byte) error { method MarshalJSON (line 2557) | func (s *ScoreV1Two) MarshalJSON() ([]byte, error) { method String (line 2574) | func (s *ScoreV1Two) String() string { type ScoreV1TwoDataType (line 2586) | type ScoreV1TwoDataType method Ptr (line 2601) | func (s ScoreV1TwoDataType) Ptr() *ScoreV1TwoDataType { constant ScoreV1TwoDataTypeBoolean (line 2589) | ScoreV1TwoDataTypeBoolean ScoreV1TwoDataType = "BOOLEAN" function NewScoreV1TwoDataTypeFromString (line 2592) | func NewScoreV1TwoDataTypeFromString(s string) (ScoreV1TwoDataType, erro... type ScoreV1Zero (line 2624) | type ScoreV1Zero struct method GetID (line 2656) | func (s *ScoreV1Zero) GetID() string { method GetTraceID (line 2663) | func (s *ScoreV1Zero) GetTraceID() string { method GetName (line 2670) | func (s *ScoreV1Zero) GetName() string { method GetSource (line 2677) | func (s *ScoreV1Zero) GetSource() ScoreSource { method GetObservationID (line 2684) | func (s *ScoreV1Zero) GetObservationID() *string { method GetTimestamp (line 2691) | func (s *ScoreV1Zero) GetTimestamp() time.Time { method GetCreatedAt (line 2698) | func (s *ScoreV1Zero) GetCreatedAt() time.Time { method GetUpdatedAt (line 2705) | func (s *ScoreV1Zero) GetUpdatedAt() time.Time { method GetAuthorUserID (line 2712) | func (s *ScoreV1Zero) GetAuthorUserID() *string { method GetComment (line 2719) | func (s *ScoreV1Zero) GetComment() *string { method GetMetadata (line 2726) | func (s *ScoreV1Zero) GetMetadata() interface{} { method GetConfigID (line 2733) | func (s *ScoreV1Zero) GetConfigID() *string { method GetQueueID (line 2740) | func (s *ScoreV1Zero) GetQueueID() *string { method GetEnvironment (line 2747) | func (s *ScoreV1Zero) GetEnvironment() string { method GetValue (line 2754) | func (s *ScoreV1Zero) GetValue() float64 { method GetDataType (line 2761) | func (s *ScoreV1Zero) GetDataType() *ScoreV1ZeroDataType { method GetExtraProperties (line 2768) | func (s *ScoreV1Zero) GetExtraProperties() map[string]interface{} { method require (line 2772) | func (s *ScoreV1Zero) require(field *big.Int) { method SetID (line 2781) | func (s *ScoreV1Zero) SetID(id string) { method SetTraceID (line 2788) | func (s *ScoreV1Zero) SetTraceID(traceID string) { method SetName (line 2795) | func (s *ScoreV1Zero) SetName(name string) { method SetSource (line 2802) | func (s *ScoreV1Zero) SetSource(source ScoreSource) { method SetObservationID (line 2809) | func (s *ScoreV1Zero) SetObservationID(observationID *string) { method SetTimestamp (line 2816) | func (s *ScoreV1Zero) SetTimestamp(timestamp time.Time) { method SetCreatedAt (line 2823) | func (s *ScoreV1Zero) SetCreatedAt(createdAt time.Time) { method SetUpdatedAt (line 2830) | func (s *ScoreV1Zero) SetUpdatedAt(updatedAt time.Time) { method SetAuthorUserID (line 2837) | func (s *ScoreV1Zero) SetAuthorUserID(authorUserID *string) { method SetComment (line 2844) | func (s *ScoreV1Zero) SetComment(comment *string) { method SetMetadata (line 2851) | func (s *ScoreV1Zero) SetMetadata(metadata interface{}) { method SetConfigID (line 2858) | func (s *ScoreV1Zero) SetConfigID(configID *string) { method SetQueueID (line 2865) | func (s *ScoreV1Zero) SetQueueID(queueID *string) { method SetEnvironment (line 2872) | func (s *ScoreV1Zero) SetEnvironment(environment string) { method SetValue (line 2879) | func (s *ScoreV1Zero) SetValue(value float64) { method SetDataType (line 2886) | func (s *ScoreV1Zero) SetDataType(dataType *ScoreV1ZeroDataType) { method UnmarshalJSON (line 2891) | func (s *ScoreV1Zero) UnmarshalJSON(data []byte) error { method MarshalJSON (line 2917) | func (s *ScoreV1Zero) MarshalJSON() ([]byte, error) { method String (line 2934) | func (s *ScoreV1Zero) String() string { type ScoreV1ZeroDataType (line 2946) | type ScoreV1ZeroDataType method Ptr (line 2961) | func (s ScoreV1ZeroDataType) Ptr() *ScoreV1ZeroDataType { constant ScoreV1ZeroDataTypeNumeric (line 2949) | ScoreV1ZeroDataTypeNumeric ScoreV1ZeroDataType = "NUMERIC" function NewScoreV1ZeroDataTypeFromString (line 2952) | func NewScoreV1ZeroDataTypeFromString(s string) (ScoreV1ZeroDataType, er... type TraceWithDetails (line 2986) | type TraceWithDetails struct method GetID (line 3031) | func (t *TraceWithDetails) GetID() string { method GetTimestamp (line 3038) | func (t *TraceWithDetails) GetTimestamp() time.Time { method GetName (line 3045) | func (t *TraceWithDetails) GetName() *string { method GetInput (line 3052) | func (t *TraceWithDetails) GetInput() interface{} { method GetOutput (line 3059) | func (t *TraceWithDetails) GetOutput() interface{} { method GetSessionID (line 3066) | func (t *TraceWithDetails) GetSessionID() *string { method GetRelease (line 3073) | func (t *TraceWithDetails) GetRelease() *string { method GetVersion (line 3080) | func (t *TraceWithDetails) GetVersion() *string { method GetUserID (line 3087) | func (t *TraceWithDetails) GetUserID() *string { method GetMetadata (line 3094) | func (t *TraceWithDetails) GetMetadata() interface{} { method GetTags (line 3101) | func (t *TraceWithDetails) GetTags() []string { method GetPublic (line 3108) | func (t *TraceWithDetails) GetPublic() bool { method GetEnvironment (line 3115) | func (t *TraceWithDetails) GetEnvironment() string { method GetHTMLPath (line 3122) | func (t *TraceWithDetails) GetHTMLPath() string { method GetLatency (line 3129) | func (t *TraceWithDetails) GetLatency() *float64 { method GetTotalCost (line 3136) | func (t *TraceWithDetails) GetTotalCost() *float64 { method GetObservations (line 3143) | func (t *TraceWithDetails) GetObservations() []string { method GetScores (line 3150) | func (t *TraceWithDetails) GetScores() []string { method GetExtraProperties (line 3157) | func (t *TraceWithDetails) GetExtraProperties() map[string]interface{} { method require (line 3161) | func (t *TraceWithDetails) require(field *big.Int) { method SetID (line 3170) | func (t *TraceWithDetails) SetID(id string) { method SetTimestamp (line 3177) | func (t *TraceWithDetails) SetTimestamp(timestamp time.Time) { method SetName (line 3184) | func (t *TraceWithDetails) SetName(name *string) { method SetInput (line 3191) | func (t *TraceWithDetails) SetInput(input interface{}) { method SetOutput (line 3198) | func (t *TraceWithDetails) SetOutput(output interface{}) { method SetSessionID (line 3205) | func (t *TraceWithDetails) SetSessionID(sessionID *string) { method SetRelease (line 3212) | func (t *TraceWithDetails) SetRelease(release *string) { method SetVersion (line 3219) | func (t *TraceWithDetails) SetVersion(version *string) { method SetUserID (line 3226) | func (t *TraceWithDetails) SetUserID(userID *string) { method SetMetadata (line 3233) | func (t *TraceWithDetails) SetMetadata(metadata interface{}) { method SetTags (line 3240) | func (t *TraceWithDetails) SetTags(tags []string) { method SetPublic (line 3247) | func (t *TraceWithDetails) SetPublic(public bool) { method SetEnvironment (line 3254) | func (t *TraceWithDetails) SetEnvironment(environment string) { method SetHTMLPath (line 3261) | func (t *TraceWithDetails) SetHTMLPath(htmlPath string) { method SetLatency (line 3268) | func (t *TraceWithDetails) SetLatency(latency *float64) { method SetTotalCost (line 3275) | func (t *TraceWithDetails) SetTotalCost(totalCost *float64) { method SetObservations (line 3282) | func (t *TraceWithDetails) SetObservations(observations []string) { method SetScores (line 3289) | func (t *TraceWithDetails) SetScores(scores []string) { method UnmarshalJSON (line 3294) | func (t *TraceWithDetails) UnmarshalJSON(data []byte) error { method MarshalJSON (line 3316) | func (t *TraceWithDetails) MarshalJSON() ([]byte, error) { method String (line 3329) | func (t *TraceWithDetails) String() string { type TraceWithFullDetails (line 3362) | type TraceWithFullDetails struct method GetID (line 3407) | func (t *TraceWithFullDetails) GetID() string { method GetTimestamp (line 3414) | func (t *TraceWithFullDetails) GetTimestamp() time.Time { method GetName (line 3421) | func (t *TraceWithFullDetails) GetName() *string { method GetInput (line 3428) | func (t *TraceWithFullDetails) GetInput() interface{} { method GetOutput (line 3435) | func (t *TraceWithFullDetails) GetOutput() interface{} { method GetSessionID (line 3442) | func (t *TraceWithFullDetails) GetSessionID() *string { method GetRelease (line 3449) | func (t *TraceWithFullDetails) GetRelease() *string { method GetVersion (line 3456) | func (t *TraceWithFullDetails) GetVersion() *string { method GetUserID (line 3463) | func (t *TraceWithFullDetails) GetUserID() *string { method GetMetadata (line 3470) | func (t *TraceWithFullDetails) GetMetadata() interface{} { method GetTags (line 3477) | func (t *TraceWithFullDetails) GetTags() []string { method GetPublic (line 3484) | func (t *TraceWithFullDetails) GetPublic() bool { method GetEnvironment (line 3491) | func (t *TraceWithFullDetails) GetEnvironment() string { method GetHTMLPath (line 3498) | func (t *TraceWithFullDetails) GetHTMLPath() string { method GetLatency (line 3505) | func (t *TraceWithFullDetails) GetLatency() *float64 { method GetTotalCost (line 3512) | func (t *TraceWithFullDetails) GetTotalCost() *float64 { method GetObservations (line 3519) | func (t *TraceWithFullDetails) GetObservations() []*ObservationsView { method GetScores (line 3526) | func (t *TraceWithFullDetails) GetScores() []*ScoreV1 { method GetExtraProperties (line 3533) | func (t *TraceWithFullDetails) GetExtraProperties() map[string]interfa... method require (line 3537) | func (t *TraceWithFullDetails) require(field *big.Int) { method SetID (line 3546) | func (t *TraceWithFullDetails) SetID(id string) { method SetTimestamp (line 3553) | func (t *TraceWithFullDetails) SetTimestamp(timestamp time.Time) { method SetName (line 3560) | func (t *TraceWithFullDetails) SetName(name *string) { method SetInput (line 3567) | func (t *TraceWithFullDetails) SetInput(input interface{}) { method SetOutput (line 3574) | func (t *TraceWithFullDetails) SetOutput(output interface{}) { method SetSessionID (line 3581) | func (t *TraceWithFullDetails) SetSessionID(sessionID *string) { method SetRelease (line 3588) | func (t *TraceWithFullDetails) SetRelease(release *string) { method SetVersion (line 3595) | func (t *TraceWithFullDetails) SetVersion(version *string) { method SetUserID (line 3602) | func (t *TraceWithFullDetails) SetUserID(userID *string) { method SetMetadata (line 3609) | func (t *TraceWithFullDetails) SetMetadata(metadata interface{}) { method SetTags (line 3616) | func (t *TraceWithFullDetails) SetTags(tags []string) { method SetPublic (line 3623) | func (t *TraceWithFullDetails) SetPublic(public bool) { method SetEnvironment (line 3630) | func (t *TraceWithFullDetails) SetEnvironment(environment string) { method SetHTMLPath (line 3637) | func (t *TraceWithFullDetails) SetHTMLPath(htmlPath string) { method SetLatency (line 3644) | func (t *TraceWithFullDetails) SetLatency(latency *float64) { method SetTotalCost (line 3651) | func (t *TraceWithFullDetails) SetTotalCost(totalCost *float64) { method SetObservations (line 3658) | func (t *TraceWithFullDetails) SetObservations(observations []*Observa... method SetScores (line 3665) | func (t *TraceWithFullDetails) SetScores(scores []*ScoreV1) { method UnmarshalJSON (line 3670) | func (t *TraceWithFullDetails) UnmarshalJSON(data []byte) error { method MarshalJSON (line 3692) | func (t *TraceWithFullDetails) MarshalJSON() ([]byte, error) { method String (line 3705) | func (t *TraceWithFullDetails) String() string { type Traces (line 3722) | type Traces struct method GetData (line 3733) | func (t *Traces) GetData() []*TraceWithDetails { method GetMeta (line 3740) | func (t *Traces) GetMeta() *UtilsMetaResponse { method GetExtraProperties (line 3747) | func (t *Traces) GetExtraProperties() map[string]interface{} { method require (line 3751) | func (t *Traces) require(field *big.Int) { method SetData (line 3760) | func (t *Traces) SetData(data []*TraceWithDetails) { method SetMeta (line 3767) | func (t *Traces) SetMeta(meta *UtilsMetaResponse) { method UnmarshalJSON (line 3772) | func (t *Traces) UnmarshalJSON(data []byte) error { method MarshalJSON (line 3788) | func (t *Traces) MarshalJSON() ([]byte, error) { method String (line 3799) | func (t *Traces) String() string { FILE: backend/pkg/observability/langfuse/api/trace/client.go type Client (line 14) | type Client struct method Get (line 37) | func (c *Client) Get( method Delete (line 54) | func (c *Client) Delete( method List (line 71) | func (c *Client) List( method Deletemultiple (line 88) | func (c *Client) Deletemultiple( function NewClient (line 22) | func NewClient(options *core.RequestOptions) *Client { FILE: backend/pkg/observability/langfuse/api/trace/raw_client.go type RawClient (line 15) | type RawClient struct method Get (line 34) | func (r *RawClient) Get( method Delete (line 78) | func (r *RawClient) Delete( method List (line 122) | func (r *RawClient) List( method Deletemultiple (line 170) | func (r *RawClient) Deletemultiple( function NewRawClient (line 21) | func NewRawClient(options *core.RequestOptions) *RawClient { FILE: backend/pkg/observability/langfuse/api/types.go type BasePrompt (line 23) | type BasePrompt struct method GetName (line 43) | func (b *BasePrompt) GetName() string { method GetVersion (line 50) | func (b *BasePrompt) GetVersion() int { method GetConfig (line 57) | func (b *BasePrompt) GetConfig() interface{} { method GetLabels (line 64) | func (b *BasePrompt) GetLabels() []string { method GetTags (line 71) | func (b *BasePrompt) GetTags() []string { method GetCommitMessage (line 78) | func (b *BasePrompt) GetCommitMessage() *string { method GetResolutionGraph (line 85) | func (b *BasePrompt) GetResolutionGraph() map[string]interface{} { method GetExtraProperties (line 92) | func (b *BasePrompt) GetExtraProperties() map[string]interface{} { method require (line 96) | func (b *BasePrompt) require(field *big.Int) { method SetName (line 105) | func (b *BasePrompt) SetName(name string) { method SetVersion (line 112) | func (b *BasePrompt) SetVersion(version int) { method SetConfig (line 119) | func (b *BasePrompt) SetConfig(config interface{}) { method SetLabels (line 126) | func (b *BasePrompt) SetLabels(labels []string) { method SetTags (line 133) | func (b *BasePrompt) SetTags(tags []string) { method SetCommitMessage (line 140) | func (b *BasePrompt) SetCommitMessage(commitMessage *string) { method SetResolutionGraph (line 147) | func (b *BasePrompt) SetResolutionGraph(resolutionGraph map[string]int... method UnmarshalJSON (line 152) | func (b *BasePrompt) UnmarshalJSON(data []byte) error { method MarshalJSON (line 168) | func (b *BasePrompt) MarshalJSON() ([]byte, error) { method String (line 179) | func (b *BasePrompt) String() string { type ChatMessage (line 196) | type ChatMessage struct method GetRole (line 207) | func (c *ChatMessage) GetRole() string { method GetContent (line 214) | func (c *ChatMessage) GetContent() string { method GetExtraProperties (line 221) | func (c *ChatMessage) GetExtraProperties() map[string]interface{} { method require (line 225) | func (c *ChatMessage) require(field *big.Int) { method SetRole (line 234) | func (c *ChatMessage) SetRole(role string) { method SetContent (line 241) | func (c *ChatMessage) SetContent(content string) { method UnmarshalJSON (line 246) | func (c *ChatMessage) UnmarshalJSON(data []byte) error { method MarshalJSON (line 262) | func (c *ChatMessage) MarshalJSON() ([]byte, error) { method String (line 273) | func (c *ChatMessage) String() string { type ChatMessageWithPlaceholders (line 285) | type ChatMessageWithPlaceholders struct method GetChatMessageWithPlaceholdersZero (line 292) | func (c *ChatMessageWithPlaceholders) GetChatMessageWithPlaceholdersZe... method GetChatMessageWithPlaceholdersOne (line 299) | func (c *ChatMessageWithPlaceholders) GetChatMessageWithPlaceholdersOn... method UnmarshalJSON (line 306) | func (c *ChatMessageWithPlaceholders) UnmarshalJSON(data []byte) error { method MarshalJSON (line 322) | func (c ChatMessageWithPlaceholders) MarshalJSON() ([]byte, error) { method Accept (line 337) | func (c *ChatMessageWithPlaceholders) Accept(visitor ChatMessageWithPl... type ChatMessageWithPlaceholdersVisitor (line 332) | type ChatMessageWithPlaceholdersVisitor interface type ChatMessageWithPlaceholdersOne (line 352) | type ChatMessageWithPlaceholdersOne struct method GetName (line 363) | func (c *ChatMessageWithPlaceholdersOne) GetName() string { method GetType (line 370) | func (c *ChatMessageWithPlaceholdersOne) GetType() *ChatMessageWithPla... method GetExtraProperties (line 377) | func (c *ChatMessageWithPlaceholdersOne) GetExtraProperties() map[stri... method require (line 381) | func (c *ChatMessageWithPlaceholdersOne) require(field *big.Int) { method SetName (line 390) | func (c *ChatMessageWithPlaceholdersOne) SetName(name string) { method SetType (line 397) | func (c *ChatMessageWithPlaceholdersOne) SetType(type_ *ChatMessageWit... method UnmarshalJSON (line 402) | func (c *ChatMessageWithPlaceholdersOne) UnmarshalJSON(data []byte) er... method MarshalJSON (line 418) | func (c *ChatMessageWithPlaceholdersOne) MarshalJSON() ([]byte, error) { method String (line 429) | func (c *ChatMessageWithPlaceholdersOne) String() string { type ChatMessageWithPlaceholdersOneType (line 441) | type ChatMessageWithPlaceholdersOneType method Ptr (line 456) | func (c ChatMessageWithPlaceholdersOneType) Ptr() *ChatMessageWithPlac... constant ChatMessageWithPlaceholdersOneTypePlaceholder (line 444) | ChatMessageWithPlaceholdersOneTypePlaceholder ChatMessageWithPlaceholder... function NewChatMessageWithPlaceholdersOneTypeFromString (line 447) | func NewChatMessageWithPlaceholdersOneTypeFromString(s string) (ChatMess... type ChatMessageWithPlaceholdersZero (line 466) | type ChatMessageWithPlaceholdersZero struct method GetRole (line 478) | func (c *ChatMessageWithPlaceholdersZero) GetRole() string { method GetContent (line 485) | func (c *ChatMessageWithPlaceholdersZero) GetContent() string { method GetType (line 492) | func (c *ChatMessageWithPlaceholdersZero) GetType() *ChatMessageWithPl... method GetExtraProperties (line 499) | func (c *ChatMessageWithPlaceholdersZero) GetExtraProperties() map[str... method require (line 503) | func (c *ChatMessageWithPlaceholdersZero) require(field *big.Int) { method SetRole (line 512) | func (c *ChatMessageWithPlaceholdersZero) SetRole(role string) { method SetContent (line 519) | func (c *ChatMessageWithPlaceholdersZero) SetContent(content string) { method SetType (line 526) | func (c *ChatMessageWithPlaceholdersZero) SetType(type_ *ChatMessageWi... method UnmarshalJSON (line 531) | func (c *ChatMessageWithPlaceholdersZero) UnmarshalJSON(data []byte) e... method MarshalJSON (line 547) | func (c *ChatMessageWithPlaceholdersZero) MarshalJSON() ([]byte, error) { method String (line 558) | func (c *ChatMessageWithPlaceholdersZero) String() string { type ChatMessageWithPlaceholdersZeroType (line 570) | type ChatMessageWithPlaceholdersZeroType method Ptr (line 585) | func (c ChatMessageWithPlaceholdersZeroType) Ptr() *ChatMessageWithPla... constant ChatMessageWithPlaceholdersZeroTypeChatmessage (line 573) | ChatMessageWithPlaceholdersZeroTypeChatmessage ChatMessageWithPlaceholde... function NewChatMessageWithPlaceholdersZeroTypeFromString (line 576) | func NewChatMessageWithPlaceholdersZeroTypeFromString(s string) (ChatMes... type ChatPrompt (line 600) | type ChatPrompt struct method GetName (line 621) | func (c *ChatPrompt) GetName() string { method GetVersion (line 628) | func (c *ChatPrompt) GetVersion() int { method GetConfig (line 635) | func (c *ChatPrompt) GetConfig() interface{} { method GetLabels (line 642) | func (c *ChatPrompt) GetLabels() []string { method GetTags (line 649) | func (c *ChatPrompt) GetTags() []string { method GetCommitMessage (line 656) | func (c *ChatPrompt) GetCommitMessage() *string { method GetResolutionGraph (line 663) | func (c *ChatPrompt) GetResolutionGraph() map[string]interface{} { method GetPrompt (line 670) | func (c *ChatPrompt) GetPrompt() []*ChatMessageWithPlaceholders { method GetExtraProperties (line 677) | func (c *ChatPrompt) GetExtraProperties() map[string]interface{} { method require (line 681) | func (c *ChatPrompt) require(field *big.Int) { method SetName (line 690) | func (c *ChatPrompt) SetName(name string) { method SetVersion (line 697) | func (c *ChatPrompt) SetVersion(version int) { method SetConfig (line 704) | func (c *ChatPrompt) SetConfig(config interface{}) { method SetLabels (line 711) | func (c *ChatPrompt) SetLabels(labels []string) { method SetTags (line 718) | func (c *ChatPrompt) SetTags(tags []string) { method SetCommitMessage (line 725) | func (c *ChatPrompt) SetCommitMessage(commitMessage *string) { method SetResolutionGraph (line 732) | func (c *ChatPrompt) SetResolutionGraph(resolutionGraph map[string]int... method SetPrompt (line 739) | func (c *ChatPrompt) SetPrompt(prompt []*ChatMessageWithPlaceholders) { method UnmarshalJSON (line 744) | func (c *ChatPrompt) UnmarshalJSON(data []byte) error { method MarshalJSON (line 760) | func (c *ChatPrompt) MarshalJSON() ([]byte, error) { method String (line 771) | func (c *ChatPrompt) String() string { type CreateScoreValue (line 784) | type CreateScoreValue struct method GetDouble (line 791) | func (c *CreateScoreValue) GetDouble() float64 { method GetString (line 798) | func (c *CreateScoreValue) GetString() string { method UnmarshalJSON (line 805) | func (c *CreateScoreValue) UnmarshalJSON(data []byte) error { method MarshalJSON (line 821) | func (c CreateScoreValue) MarshalJSON() ([]byte, error) { method Accept (line 836) | func (c *CreateScoreValue) Accept(visitor CreateScoreValueVisitor) err... type CreateScoreValueVisitor (line 831) | type CreateScoreValueVisitor interface type DatasetRunItem (line 857) | type DatasetRunItem struct method GetID (line 875) | func (d *DatasetRunItem) GetID() string { method GetDatasetRunID (line 882) | func (d *DatasetRunItem) GetDatasetRunID() string { method GetDatasetRunName (line 889) | func (d *DatasetRunItem) GetDatasetRunName() string { method GetDatasetItemID (line 896) | func (d *DatasetRunItem) GetDatasetItemID() string { method GetTraceID (line 903) | func (d *DatasetRunItem) GetTraceID() string { method GetObservationID (line 910) | func (d *DatasetRunItem) GetObservationID() *string { method GetCreatedAt (line 917) | func (d *DatasetRunItem) GetCreatedAt() time.Time { method GetUpdatedAt (line 924) | func (d *DatasetRunItem) GetUpdatedAt() time.Time { method GetExtraProperties (line 931) | func (d *DatasetRunItem) GetExtraProperties() map[string]interface{} { method require (line 935) | func (d *DatasetRunItem) require(field *big.Int) { method SetID (line 944) | func (d *DatasetRunItem) SetID(id string) { method SetDatasetRunID (line 951) | func (d *DatasetRunItem) SetDatasetRunID(datasetRunID string) { method SetDatasetRunName (line 958) | func (d *DatasetRunItem) SetDatasetRunName(datasetRunName string) { method SetDatasetItemID (line 965) | func (d *DatasetRunItem) SetDatasetItemID(datasetItemID string) { method SetTraceID (line 972) | func (d *DatasetRunItem) SetTraceID(traceID string) { method SetObservationID (line 979) | func (d *DatasetRunItem) SetObservationID(observationID *string) { method SetCreatedAt (line 986) | func (d *DatasetRunItem) SetCreatedAt(createdAt time.Time) { method SetUpdatedAt (line 993) | func (d *DatasetRunItem) SetUpdatedAt(updatedAt time.Time) { method UnmarshalJSON (line 998) | func (d *DatasetRunItem) UnmarshalJSON(data []byte) error { method MarshalJSON (line 1022) | func (d *DatasetRunItem) MarshalJSON() ([]byte, error) { method String (line 1037) | func (d *DatasetRunItem) String() string { type Observation (line 1073) | type Observation struct method GetID (line 1120) | func (o *Observation) GetID() string { method GetTraceID (line 1127) | func (o *Observation) GetTraceID() *string { method GetType (line 1134) | func (o *Observation) GetType() string { method GetName (line 1141) | func (o *Observation) GetName() *string { method GetStartTime (line 1148) | func (o *Observation) GetStartTime() time.Time { method GetEndTime (line 1155) | func (o *Observation) GetEndTime() *time.Time { method GetCompletionStartTime (line 1162) | func (o *Observation) GetCompletionStartTime() *time.Time { method GetModel (line 1169) | func (o *Observation) GetModel() *string { method GetModelParameters (line 1176) | func (o *Observation) GetModelParameters() interface{} { method GetInput (line 1183) | func (o *Observation) GetInput() interface{} { method GetVersion (line 1190) | func (o *Observation) GetVersion() *string { method GetMetadata (line 1197) | func (o *Observation) GetMetadata() interface{} { method GetOutput (line 1204) | func (o *Observation) GetOutput() interface{} { method GetUsage (line 1211) | func (o *Observation) GetUsage() *Usage { method GetLevel (line 1218) | func (o *Observation) GetLevel() ObservationLevel { method GetStatusMessage (line 1225) | func (o *Observation) GetStatusMessage() *string { method GetParentObservationID (line 1232) | func (o *Observation) GetParentObservationID() *string { method GetPromptID (line 1239) | func (o *Observation) GetPromptID() *string { method GetUsageDetails (line 1246) | func (o *Observation) GetUsageDetails() map[string]int { method GetCostDetails (line 1253) | func (o *Observation) GetCostDetails() map[string]float64 { method GetEnvironment (line 1260) | func (o *Observation) GetEnvironment() string { method GetExtraProperties (line 1267) | func (o *Observation) GetExtraProperties() map[string]interface{} { method require (line 1271) | func (o *Observation) require(field *big.Int) { method SetID (line 1280) | func (o *Observation) SetID(id string) { method SetTraceID (line 1287) | func (o *Observation) SetTraceID(traceID *string) { method SetType (line 1294) | func (o *Observation) SetType(type_ string) { method SetName (line 1301) | func (o *Observation) SetName(name *string) { method SetStartTime (line 1308) | func (o *Observation) SetStartTime(startTime time.Time) { method SetEndTime (line 1315) | func (o *Observation) SetEndTime(endTime *time.Time) { method SetCompletionStartTime (line 1322) | func (o *Observation) SetCompletionStartTime(completionStartTime *time... method SetModel (line 1329) | func (o *Observation) SetModel(model *string) { method SetModelParameters (line 1336) | func (o *Observation) SetModelParameters(modelParameters interface{}) { method SetInput (line 1343) | func (o *Observation) SetInput(input interface{}) { method SetVersion (line 1350) | func (o *Observation) SetVersion(version *string) { method SetMetadata (line 1357) | func (o *Observation) SetMetadata(metadata interface{}) { method SetOutput (line 1364) | func (o *Observation) SetOutput(output interface{}) { method SetUsage (line 1371) | func (o *Observation) SetUsage(usage *Usage) { method SetLevel (line 1378) | func (o *Observation) SetLevel(level ObservationLevel) { method SetStatusMessage (line 1385) | func (o *Observation) SetStatusMessage(statusMessage *string) { method SetParentObservationID (line 1392) | func (o *Observation) SetParentObservationID(parentObservationID *stri... method SetPromptID (line 1399) | func (o *Observation) SetPromptID(promptID *string) { method SetUsageDetails (line 1406) | func (o *Observation) SetUsageDetails(usageDetails map[string]int) { method SetCostDetails (line 1413) | func (o *Observation) SetCostDetails(costDetails map[string]float64) { method SetEnvironment (line 1420) | func (o *Observation) SetEnvironment(environment string) { method UnmarshalJSON (line 1425) | func (o *Observation) UnmarshalJSON(data []byte) error { method MarshalJSON (line 1451) | func (o *Observation) MarshalJSON() ([]byte, error) { method String (line 1468) | func (o *Observation) String() string { type ObservationLevel (line 1480) | type ObservationLevel method Ptr (line 1504) | func (o ObservationLevel) Ptr() *ObservationLevel { constant ObservationLevelDebug (line 1483) | ObservationLevelDebug ObservationLevel = "DEBUG" constant ObservationLevelDefault (line 1484) | ObservationLevelDefault ObservationLevel = "DEFAULT" constant ObservationLevelWarning (line 1485) | ObservationLevelWarning ObservationLevel = "WARNING" constant ObservationLevelError (line 1486) | ObservationLevelError ObservationLevel = "ERROR" function NewObservationLevelFromString (line 1489) | func NewObservationLevelFromString(s string) (ObservationLevel, error) { type Observations (line 1513) | type Observations struct method GetData (line 1524) | func (o *Observations) GetData() []*Observation { method GetMeta (line 1531) | func (o *Observations) GetMeta() *UtilsMetaResponse { method GetExtraProperties (line 1538) | func (o *Observations) GetExtraProperties() map[string]interface{} { method require (line 1542) | func (o *Observations) require(field *big.Int) { method SetData (line 1551) | func (o *Observations) SetData(data []*Observation) { method SetMeta (line 1558) | func (o *Observations) SetMeta(meta *UtilsMetaResponse) { method UnmarshalJSON (line 1563) | func (o *Observations) UnmarshalJSON(data []byte) error { method MarshalJSON (line 1579) | func (o *Observations) MarshalJSON() ([]byte, error) { method String (line 1590) | func (o *Observations) String() string { type ObservationsView (line 1637) | type ObservationsView struct method GetID (line 1706) | func (o *ObservationsView) GetID() string { method GetTraceID (line 1713) | func (o *ObservationsView) GetTraceID() *string { method GetType (line 1720) | func (o *ObservationsView) GetType() string { method GetName (line 1727) | func (o *ObservationsView) GetName() *string { method GetStartTime (line 1734) | func (o *ObservationsView) GetStartTime() time.Time { method GetEndTime (line 1741) | func (o *ObservationsView) GetEndTime() *time.Time { method GetCompletionStartTime (line 1748) | func (o *ObservationsView) GetCompletionStartTime() *time.Time { method GetModel (line 1755) | func (o *ObservationsView) GetModel() *string { method GetModelParameters (line 1762) | func (o *ObservationsView) GetModelParameters() interface{} { method GetInput (line 1769) | func (o *ObservationsView) GetInput() interface{} { method GetVersion (line 1776) | func (o *ObservationsView) GetVersion() *string { method GetMetadata (line 1783) | func (o *ObservationsView) GetMetadata() interface{} { method GetOutput (line 1790) | func (o *ObservationsView) GetOutput() interface{} { method GetUsage (line 1797) | func (o *ObservationsView) GetUsage() *Usage { method GetLevel (line 1804) | func (o *ObservationsView) GetLevel() ObservationLevel { method GetStatusMessage (line 1811) | func (o *ObservationsView) GetStatusMessage() *string { method GetParentObservationID (line 1818) | func (o *ObservationsView) GetParentObservationID() *string { method GetPromptID (line 1825) | func (o *ObservationsView) GetPromptID() *string { method GetUsageDetails (line 1832) | func (o *ObservationsView) GetUsageDetails() map[string]int { method GetCostDetails (line 1839) | func (o *ObservationsView) GetCostDetails() map[string]float64 { method GetEnvironment (line 1846) | func (o *ObservationsView) GetEnvironment() string { method GetPromptName (line 1853) | func (o *ObservationsView) GetPromptName() *string { method GetPromptVersion (line 1860) | func (o *ObservationsView) GetPromptVersion() *int { method GetModelID (line 1867) | func (o *ObservationsView) GetModelID() *string { method GetInputPrice (line 1874) | func (o *ObservationsView) GetInputPrice() *float64 { method GetOutputPrice (line 1881) | func (o *ObservationsView) GetOutputPrice() *float64 { method GetTotalPrice (line 1888) | func (o *ObservationsView) GetTotalPrice() *float64 { method GetCalculatedInputCost (line 1895) | func (o *ObservationsView) GetCalculatedInputCost() *float64 { method GetCalculatedOutputCost (line 1902) | func (o *ObservationsView) GetCalculatedOutputCost() *float64 { method GetCalculatedTotalCost (line 1909) | func (o *ObservationsView) GetCalculatedTotalCost() *float64 { method GetLatency (line 1916) | func (o *ObservationsView) GetLatency() *float64 { method GetTimeToFirstToken (line 1923) | func (o *ObservationsView) GetTimeToFirstToken() *float64 { method GetExtraProperties (line 1930) | func (o *ObservationsView) GetExtraProperties() map[string]interface{} { method require (line 1934) | func (o *ObservationsView) require(field *big.Int) { method SetID (line 1943) | func (o *ObservationsView) SetID(id string) { method SetTraceID (line 1950) | func (o *ObservationsView) SetTraceID(traceID *string) { method SetType (line 1957) | func (o *ObservationsView) SetType(type_ string) { method SetName (line 1964) | func (o *ObservationsView) SetName(name *string) { method SetStartTime (line 1971) | func (o *ObservationsView) SetStartTime(startTime time.Time) { method SetEndTime (line 1978) | func (o *ObservationsView) SetEndTime(endTime *time.Time) { method SetCompletionStartTime (line 1985) | func (o *ObservationsView) SetCompletionStartTime(completionStartTime ... method SetModel (line 1992) | func (o *ObservationsView) SetModel(model *string) { method SetModelParameters (line 1999) | func (o *ObservationsView) SetModelParameters(modelParameters interfac... method SetInput (line 2006) | func (o *ObservationsView) SetInput(input interface{}) { method SetVersion (line 2013) | func (o *ObservationsView) SetVersion(version *string) { method SetMetadata (line 2020) | func (o *ObservationsView) SetMetadata(metadata interface{}) { method SetOutput (line 2027) | func (o *ObservationsView) SetOutput(output interface{}) { method SetUsage (line 2034) | func (o *ObservationsView) SetUsage(usage *Usage) { method SetLevel (line 2041) | func (o *ObservationsView) SetLevel(level ObservationLevel) { method SetStatusMessage (line 2048) | func (o *ObservationsView) SetStatusMessage(statusMessage *string) { method SetParentObservationID (line 2055) | func (o *ObservationsView) SetParentObservationID(parentObservationID ... method SetPromptID (line 2062) | func (o *ObservationsView) SetPromptID(promptID *string) { method SetUsageDetails (line 2069) | func (o *ObservationsView) SetUsageDetails(usageDetails map[string]int) { method SetCostDetails (line 2076) | func (o *ObservationsView) SetCostDetails(costDetails map[string]float... method SetEnvironment (line 2083) | func (o *ObservationsView) SetEnvironment(environment string) { method SetPromptName (line 2090) | func (o *ObservationsView) SetPromptName(promptName *string) { method SetPromptVersion (line 2097) | func (o *ObservationsView) SetPromptVersion(promptVersion *int) { method SetModelID (line 2104) | func (o *ObservationsView) SetModelID(modelID *string) { method SetInputPrice (line 2111) | func (o *ObservationsView) SetInputPrice(inputPrice *float64) { method SetOutputPrice (line 2118) | func (o *ObservationsView) SetOutputPrice(outputPrice *float64) { method SetTotalPrice (line 2125) | func (o *ObservationsView) SetTotalPrice(totalPrice *float64) { method SetCalculatedInputCost (line 2132) | func (o *ObservationsView) SetCalculatedInputCost(calculatedInputCost ... method SetCalculatedOutputCost (line 2139) | func (o *ObservationsView) SetCalculatedOutputCost(calculatedOutputCos... method SetCalculatedTotalCost (line 2146) | func (o *ObservationsView) SetCalculatedTotalCost(calculatedTotalCost ... method SetLatency (line 2153) | func (o *ObservationsView) SetLatency(latency *float64) { method SetTimeToFirstToken (line 2160) | func (o *ObservationsView) SetTimeToFirstToken(timeToFirstToken *float... method UnmarshalJSON (line 2165) | func (o *ObservationsView) UnmarshalJSON(data []byte) error { method MarshalJSON (line 2191) | func (o *ObservationsView) MarshalJSON() ([]byte, error) { method String (line 2208) | func (o *ObservationsView) String() string { type PlaceholderMessage (line 2224) | type PlaceholderMessage struct method GetName (line 2234) | func (p *PlaceholderMessage) GetName() string { method GetExtraProperties (line 2241) | func (p *PlaceholderMessage) GetExtraProperties() map[string]interface... method require (line 2245) | func (p *PlaceholderMessage) require(field *big.Int) { method SetName (line 2254) | func (p *PlaceholderMessage) SetName(name string) { method UnmarshalJSON (line 2259) | func (p *PlaceholderMessage) UnmarshalJSON(data []byte) error { method MarshalJSON (line 2275) | func (p *PlaceholderMessage) MarshalJSON() ([]byte, error) { method String (line 2286) | func (p *PlaceholderMessage) String() string { type Prompt (line 2298) | type Prompt struct method GetPromptZero (line 2305) | func (p *Prompt) GetPromptZero() *PromptZero { method GetPromptOne (line 2312) | func (p *Prompt) GetPromptOne() *PromptOne { method UnmarshalJSON (line 2319) | func (p *Prompt) UnmarshalJSON(data []byte) error { method MarshalJSON (line 2335) | func (p Prompt) MarshalJSON() ([]byte, error) { method Accept (line 2350) | func (p *Prompt) Accept(visitor PromptVisitor) error { type PromptVisitor (line 2345) | type PromptVisitor interface type PromptOne (line 2372) | type PromptOne struct method GetName (line 2394) | func (p *PromptOne) GetName() string { method GetVersion (line 2401) | func (p *PromptOne) GetVersion() int { method GetConfig (line 2408) | func (p *PromptOne) GetConfig() interface{} { method GetLabels (line 2415) | func (p *PromptOne) GetLabels() []string { method GetTags (line 2422) | func (p *PromptOne) GetTags() []string { method GetCommitMessage (line 2429) | func (p *PromptOne) GetCommitMessage() *string { method GetResolutionGraph (line 2436) | func (p *PromptOne) GetResolutionGraph() map[string]interface{} { method GetPrompt (line 2443) | func (p *PromptOne) GetPrompt() string { method GetType (line 2450) | func (p *PromptOne) GetType() *PromptOneType { method GetExtraProperties (line 2457) | func (p *PromptOne) GetExtraProperties() map[string]interface{} { method require (line 2461) | func (p *PromptOne) require(field *big.Int) { method SetName (line 2470) | func (p *PromptOne) SetName(name string) { method SetVersion (line 2477) | func (p *PromptOne) SetVersion(version int) { method SetConfig (line 2484) | func (p *PromptOne) SetConfig(config interface{}) { method SetLabels (line 2491) | func (p *PromptOne) SetLabels(labels []string) { method SetTags (line 2498) | func (p *PromptOne) SetTags(tags []string) { method SetCommitMessage (line 2505) | func (p *PromptOne) SetCommitMessage(commitMessage *string) { method SetResolutionGraph (line 2512) | func (p *PromptOne) SetResolutionGraph(resolutionGraph map[string]inte... method SetPrompt (line 2519) | func (p *PromptOne) SetPrompt(prompt string) { method SetType (line 2526) | func (p *PromptOne) SetType(type_ *PromptOneType) { method UnmarshalJSON (line 2531) | func (p *PromptOne) UnmarshalJSON(data []byte) error { method MarshalJSON (line 2547) | func (p *PromptOne) MarshalJSON() ([]byte, error) { method String (line 2558) | func (p *PromptOne) String() string { type PromptOneType (line 2570) | type PromptOneType method Ptr (line 2585) | func (p PromptOneType) Ptr() *PromptOneType { constant PromptOneTypeText (line 2573) | PromptOneTypeText PromptOneType = "text" function NewPromptOneTypeFromString (line 2576) | func NewPromptOneTypeFromString(s string) (PromptOneType, error) { type PromptZero (line 2601) | type PromptZero struct method GetName (line 2623) | func (p *PromptZero) GetName() string { method GetVersion (line 2630) | func (p *PromptZero) GetVersion() int { method GetConfig (line 2637) | func (p *PromptZero) GetConfig() interface{} { method GetLabels (line 2644) | func (p *PromptZero) GetLabels() []string { method GetTags (line 2651) | func (p *PromptZero) GetTags() []string { method GetCommitMessage (line 2658) | func (p *PromptZero) GetCommitMessage() *string { method GetResolutionGraph (line 2665) | func (p *PromptZero) GetResolutionGraph() map[string]interface{} { method GetPrompt (line 2672) | func (p *PromptZero) GetPrompt() []*ChatMessageWithPlaceholders { method GetType (line 2679) | func (p *PromptZero) GetType() *PromptZeroType { method GetExtraProperties (line 2686) | func (p *PromptZero) GetExtraProperties() map[string]interface{} { method require (line 2690) | func (p *PromptZero) require(field *big.Int) { method SetName (line 2699) | func (p *PromptZero) SetName(name string) { method SetVersion (line 2706) | func (p *PromptZero) SetVersion(version int) { method SetConfig (line 2713) | func (p *PromptZero) SetConfig(config interface{}) { method SetLabels (line 2720) | func (p *PromptZero) SetLabels(labels []string) { method SetTags (line 2727) | func (p *PromptZero) SetTags(tags []string) { method SetCommitMessage (line 2734) | func (p *PromptZero) SetCommitMessage(commitMessage *string) { method SetResolutionGraph (line 2741) | func (p *PromptZero) SetResolutionGraph(resolutionGraph map[string]int... method SetPrompt (line 2748) | func (p *PromptZero) SetPrompt(prompt []*ChatMessageWithPlaceholders) { method SetType (line 2755) | func (p *PromptZero) SetType(type_ *PromptZeroType) { method UnmarshalJSON (line 2760) | func (p *PromptZero) UnmarshalJSON(data []byte) error { method MarshalJSON (line 2776) | func (p *PromptZero) MarshalJSON() ([]byte, error) { method String (line 2787) | func (p *PromptZero) String() string { type PromptZeroType (line 2799) | type PromptZeroType method Ptr (line 2814) | func (p PromptZeroType) Ptr() *PromptZeroType { constant PromptZeroTypeChat (line 2802) | PromptZeroTypeChat PromptZeroType = "chat" function NewPromptZeroTypeFromString (line 2805) | func NewPromptZeroTypeFromString(s string) (PromptZeroType, error) { type ScoreDataType (line 2818) | type ScoreDataType method Ptr (line 2842) | func (s ScoreDataType) Ptr() *ScoreDataType { constant ScoreDataTypeNumeric (line 2821) | ScoreDataTypeNumeric ScoreDataType = "NUMERIC" constant ScoreDataTypeBoolean (line 2822) | ScoreDataTypeBoolean ScoreDataType = "BOOLEAN" constant ScoreDataTypeCategorical (line 2823) | ScoreDataTypeCategorical ScoreDataType = "CATEGORICAL" constant ScoreDataTypeCorrection (line 2824) | ScoreDataTypeCorrection ScoreDataType = "CORRECTION" function NewScoreDataTypeFromString (line 2827) | func NewScoreDataTypeFromString(s string) (ScoreDataType, error) { type ScoreSource (line 2846) | type ScoreSource method Ptr (line 2867) | func (s ScoreSource) Ptr() *ScoreSource { constant ScoreSourceAnnotation (line 2849) | ScoreSourceAnnotation ScoreSource = "ANNOTATION" constant ScoreSourceAPI (line 2850) | ScoreSourceAPI ScoreSource = "API" constant ScoreSourceEval (line 2851) | ScoreSourceEval ScoreSource = "EVAL" function NewScoreSourceFromString (line 2854) | func NewScoreSourceFromString(s string) (ScoreSource, error) { type Sort (line 2875) | type Sort struct method GetID (line 2885) | func (s *Sort) GetID() string { method GetExtraProperties (line 2892) | func (s *Sort) GetExtraProperties() map[string]interface{} { method require (line 2896) | func (s *Sort) require(field *big.Int) { method SetID (line 2905) | func (s *Sort) SetID(id string) { method UnmarshalJSON (line 2910) | func (s *Sort) UnmarshalJSON(data []byte) error { method MarshalJSON (line 2926) | func (s *Sort) MarshalJSON() ([]byte, error) { method String (line 2937) | func (s *Sort) String() string { type TextPrompt (line 2960) | type TextPrompt struct method GetName (line 2981) | func (t *TextPrompt) GetName() string { method GetVersion (line 2988) | func (t *TextPrompt) GetVersion() int { method GetConfig (line 2995) | func (t *TextPrompt) GetConfig() interface{} { method GetLabels (line 3002) | func (t *TextPrompt) GetLabels() []string { method GetTags (line 3009) | func (t *TextPrompt) GetTags() []string { method GetCommitMessage (line 3016) | func (t *TextPrompt) GetCommitMessage() *string { method GetResolutionGraph (line 3023) | func (t *TextPrompt) GetResolutionGraph() map[string]interface{} { method GetPrompt (line 3030) | func (t *TextPrompt) GetPrompt() string { method GetExtraProperties (line 3037) | func (t *TextPrompt) GetExtraProperties() map[string]interface{} { method require (line 3041) | func (t *TextPrompt) require(field *big.Int) { method SetName (line 3050) | func (t *TextPrompt) SetName(name string) { method SetVersion (line 3057) | func (t *TextPrompt) SetVersion(version int) { method SetConfig (line 3064) | func (t *TextPrompt) SetConfig(config interface{}) { method SetLabels (line 3071) | func (t *TextPrompt) SetLabels(labels []string) { method SetTags (line 3078) | func (t *TextPrompt) SetTags(tags []string) { method SetCommitMessage (line 3085) | func (t *TextPrompt) SetCommitMessage(commitMessage *string) { method SetResolutionGraph (line 3092) | func (t *TextPrompt) SetResolutionGraph(resolutionGraph map[string]int... method SetPrompt (line 3099) | func (t *TextPrompt) SetPrompt(prompt string) { method UnmarshalJSON (line 3104) | func (t *TextPrompt) UnmarshalJSON(data []byte) error { method MarshalJSON (line 3120) | func (t *TextPrompt) MarshalJSON() ([]byte, error) { method String (line 3131) | func (t *TextPrompt) String() string { type Trace (line 3159) | type Trace struct method GetID (line 3194) | func (t *Trace) GetID() string { method GetTimestamp (line 3201) | func (t *Trace) GetTimestamp() time.Time { method GetName (line 3208) | func (t *Trace) GetName() *string { method GetInput (line 3215) | func (t *Trace) GetInput() interface{} { method GetOutput (line 3222) | func (t *Trace) GetOutput() interface{} { method GetSessionID (line 3229) | func (t *Trace) GetSessionID() *string { method GetRelease (line 3236) | func (t *Trace) GetRelease() *string { method GetVersion (line 3243) | func (t *Trace) GetVersion() *string { method GetUserID (line 3250) | func (t *Trace) GetUserID() *string { method GetMetadata (line 3257) | func (t *Trace) GetMetadata() interface{} { method GetTags (line 3264) | func (t *Trace) GetTags() []string { method GetPublic (line 3271) | func (t *Trace) GetPublic() bool { method GetEnvironment (line 3278) | func (t *Trace) GetEnvironment() string { method GetExtraProperties (line 3285) | func (t *Trace) GetExtraProperties() map[string]interface{} { method require (line 3289) | func (t *Trace) require(field *big.Int) { method SetID (line 3298) | func (t *Trace) SetID(id string) { method SetTimestamp (line 3305) | func (t *Trace) SetTimestamp(timestamp time.Time) { method SetName (line 3312) | func (t *Trace) SetName(name *string) { method SetInput (line 3319) | func (t *Trace) SetInput(input interface{}) { method SetOutput (line 3326) | func (t *Trace) SetOutput(output interface{}) { method SetSessionID (line 3333) | func (t *Trace) SetSessionID(sessionID *string) { method SetRelease (line 3340) | func (t *Trace) SetRelease(release *string) { method SetVersion (line 3347) | func (t *Trace) SetVersion(version *string) { method SetUserID (line 3354) | func (t *Trace) SetUserID(userID *string) { method SetMetadata (line 3361) | func (t *Trace) SetMetadata(metadata interface{}) { method SetTags (line 3368) | func (t *Trace) SetTags(tags []string) { method SetPublic (line 3375) | func (t *Trace) SetPublic(public bool) { method SetEnvironment (line 3382) | func (t *Trace) SetEnvironment(environment string) { method UnmarshalJSON (line 3387) | func (t *Trace) UnmarshalJSON(data []byte) error { method MarshalJSON (line 3409) | func (t *Trace) MarshalJSON() ([]byte, error) { method String (line 3422) | func (t *Trace) String() string { type Usage (line 3445) | type Usage struct method GetInput (line 3468) | func (u *Usage) GetInput() int { method GetOutput (line 3475) | func (u *Usage) GetOutput() int { method GetTotal (line 3482) | func (u *Usage) GetTotal() int { method GetUnit (line 3489) | func (u *Usage) GetUnit() *string { method GetInputCost (line 3496) | func (u *Usage) GetInputCost() *float64 { method GetOutputCost (line 3503) | func (u *Usage) GetOutputCost() *float64 { method GetTotalCost (line 3510) | func (u *Usage) GetTotalCost() *float64 { method GetExtraProperties (line 3517) | func (u *Usage) GetExtraProperties() map[string]interface{} { method require (line 3521) | func (u *Usage) require(field *big.Int) { method SetInput (line 3530) | func (u *Usage) SetInput(input int) { method SetOutput (line 3537) | func (u *Usage) SetOutput(output int) { method SetTotal (line 3544) | func (u *Usage) SetTotal(total int) { method SetUnit (line 3551) | func (u *Usage) SetUnit(unit *string) { method SetInputCost (line 3558) | func (u *Usage) SetInputCost(inputCost *float64) { method SetOutputCost (line 3565) | func (u *Usage) SetOutputCost(outputCost *float64) { method SetTotalCost (line 3572) | func (u *Usage) SetTotalCost(totalCost *float64) { method UnmarshalJSON (line 3577) | func (u *Usage) UnmarshalJSON(data []byte) error { method MarshalJSON (line 3593) | func (u *Usage) MarshalJSON() ([]byte, error) { method String (line 3604) | func (u *Usage) String() string { type UtilsMetaResponse (line 3623) | type UtilsMetaResponse struct method GetPage (line 3640) | func (u *UtilsMetaResponse) GetPage() int { method GetLimit (line 3647) | func (u *UtilsMetaResponse) GetLimit() int { method GetTotalItems (line 3654) | func (u *UtilsMetaResponse) GetTotalItems() int { method GetTotalPages (line 3661) | func (u *UtilsMetaResponse) GetTotalPages() int { method GetExtraProperties (line 3668) | func (u *UtilsMetaResponse) GetExtraProperties() map[string]interface{} { method require (line 3672) | func (u *UtilsMetaResponse) require(field *big.Int) { method SetPage (line 3681) | func (u *UtilsMetaResponse) SetPage(page int) { method SetLimit (line 3688) | func (u *UtilsMetaResponse) SetLimit(limit int) { method SetTotalItems (line 3695) | func (u *UtilsMetaResponse) SetTotalItems(totalItems int) { method SetTotalPages (line 3702) | func (u *UtilsMetaResponse) SetTotalPages(totalPages int) { method UnmarshalJSON (line 3707) | func (u *UtilsMetaResponse) UnmarshalJSON(data []byte) error { method MarshalJSON (line 3723) | func (u *UtilsMetaResponse) MarshalJSON() ([]byte, error) { method String (line 3734) | func (u *UtilsMetaResponse) String() string { FILE: backend/pkg/observability/langfuse/chain.go constant chainDefaultName (line 13) | chainDefaultName = "Default Chain" type Chain (line 16) | type Chain interface type chain (line 24) | type chain struct method End (line 156) | func (c *chain) End(opts ...ChainOption) { method String (line 188) | func (c *chain) String() string { method MarshalJSON (line 192) | func (c *chain) MarshalJSON() ([]byte, error) { method Observation (line 196) | func (c *chain) Observation(ctx context.Context) (context.Context, Obs... method ObservationInfo (line 208) | func (c *chain) ObservationInfo() ObservationInfo { type ChainOption (line 42) | type ChainOption function withChainTraceID (line 44) | func withChainTraceID(traceID string) ChainOption { function withChainParentObservationID (line 50) | func withChainParentObservationID(parentObservationID string) ChainOption { function WithChainID (line 57) | func WithChainID(id string) ChainOption { function WithChainName (line 63) | func WithChainName(name string) ChainOption { function WithChainMetadata (line 69) | func WithChainMetadata(metadata Metadata) ChainOption { function WithChainInput (line 75) | func WithChainInput(input any) ChainOption { function WithChainOutput (line 81) | func WithChainOutput(output any) ChainOption { function WithChainStartTime (line 88) | func WithChainStartTime(time time.Time) ChainOption { function WithChainEndTime (line 94) | func WithChainEndTime(time time.Time) ChainOption { function WithChainLevel (line 100) | func WithChainLevel(level ObservationLevel) ChainOption { function WithChainStatus (line 106) | func WithChainStatus(status string) ChainOption { function WithChainVersion (line 112) | func WithChainVersion(version string) ChainOption { function newChain (line 118) | func newChain(observer enqueue, opts ...ChainOption) Chain { FILE: backend/pkg/observability/langfuse/client.go constant InstrumentationVersion (line 18) | InstrumentationVersion = "2.0.0" type AnnotationQueuesClient (line 20) | type AnnotationQueuesClient interface type BlobStorageIntegrationsClient (line 33) | type BlobStorageIntegrationsClient interface type CommentsClient (line 39) | type CommentsClient interface type DatasetitemsClient (line 45) | type DatasetitemsClient interface type DatasetrunitemsClient (line 52) | type DatasetrunitemsClient interface type DatasetsClient (line 57) | type DatasetsClient interface type HealthClient (line 66) | type HealthClient interface type IngestionClient (line 70) | type IngestionClient interface type MediaClient (line 74) | type MediaClient interface type MetricsV2Client (line 80) | type MetricsV2Client interface type MetricsClient (line 84) | type MetricsClient interface type ModelsClient (line 88) | type ModelsClient interface type ObservationsV2Client (line 95) | type ObservationsV2Client interface type ObservationsClient (line 99) | type ObservationsClient interface type OpentelemetryClient (line 104) | type OpentelemetryClient interface type OrganizationsClient (line 108) | type OrganizationsClient interface type ProjectsClient (line 119) | type ProjectsClient interface type PromptversionClient (line 129) | type PromptversionClient interface type PromptsClient (line 133) | type PromptsClient interface type SCIMClient (line 140) | type SCIMClient interface type ScoreconfigsClient (line 150) | type ScoreconfigsClient interface type ScoreV2Client (line 157) | type ScoreV2Client interface type ScoreClient (line 162) | type ScoreClient interface type SessionsClient (line 167) | type SessionsClient interface type TraceClient (line 172) | type TraceClient interface type Client (line 179) | type Client struct method PublicKey (line 210) | func (c *Client) PublicKey() string { method ProjectID (line 214) | func (c *Client) ProjectID() string { type ClientContext (line 218) | type ClientContext struct method Validate (line 227) | func (c *ClientContext) Validate() error { type ClientContextOption (line 246) | type ClientContextOption function WithBaseURL (line 248) | func WithBaseURL(baseURL string) ClientContextOption { function WithPublicKey (line 254) | func WithPublicKey(publicKey string) ClientContextOption { function WithSecretKey (line 260) | func WithSecretKey(secretKey string) ClientContextOption { function WithProjectID (line 266) | func WithProjectID(projectID string) ClientContextOption { function WithHTTPClient (line 272) | func WithHTTPClient(httpClient *http.Client) ClientContextOption { function WithMaxAttempts (line 278) | func WithMaxAttempts(maxAttempts int) ClientContextOption { function NewClient (line 284) | func NewClient(opts ...ClientContextOption) (*Client, error) { FILE: backend/pkg/observability/langfuse/context.go type ObservationContextKey (line 5) | type ObservationContextKey type observationContext (line 9) | type observationContext struct function getObservationContext (line 14) | func getObservationContext(ctx context.Context) (observationContext, boo... function putObservationContext (line 19) | func putObservationContext(ctx context.Context, obsCtx observationContex... FILE: backend/pkg/observability/langfuse/converter.go function convertInput (line 11) | func convertInput(input any, tools []llms.Tool) any { function convertChain (line 28) | func convertChain(chain []*llms.MessageContent, tools []llms.Tool) any { function buildToolCallMapping (line 49) | func buildToolCallMapping(chain []*llms.MessageContent) map[string]string { function convertMessageWithContext (line 75) | func convertMessageWithContext(message *llms.MessageContent, toolCallNam... function convertMessage (line 169) | func convertMessage(message *llms.MessageContent) any { function mapRole (line 173) | func mapRole(role llms.ChatMessageType) string { function convertToolMessageWithNames (line 192) | func convertToolMessageWithNames(message *llms.MessageContent, result ma... function parseToolContent (line 231) | func parseToolContent(content string) any { function isRichObject (line 258) | func isRichObject(obj map[string]any) bool { function convertToolCallToOpenAI (line 278) | func convertToolCallToOpenAI(toolCall *llms.ToolCall) any { function convertMultimodalPart (line 300) | func convertMultimodalPart(part llms.ContentPart) any { function joinTextParts (line 345) | func joinTextParts(parts []string) string { function convertPartWithThinking (line 364) | func convertPartWithThinking(thinking llms.ContentPart) any { function convertThinking (line 379) | func convertThinking(thinking *reasoning.ContentReasoning) any { function convertOutput (line 391) | func convertOutput(output any) any { function convertChoice (line 438) | func convertChoice(choice *llms.ContentChoice) any { FILE: backend/pkg/observability/langfuse/converter_test.go function TestConvertInput (line 14) | func TestConvertInput(t *testing.T) { function TestConvertOutput (line 208) | func TestConvertOutput(t *testing.T) { function TestRoleMapping (line 296) | func TestRoleMapping(t *testing.T) { function TestToolContentParsing (line 317) | func TestToolContentParsing(t *testing.T) { function TestThinkingExtraction (line 371) | func TestThinkingExtraction(t *testing.T) { function TestJoinTextParts (line 396) | func TestJoinTextParts(t *testing.T) { function TestEdgeCases (line 403) | func TestEdgeCases(t *testing.T) { function BenchmarkConvertInput (line 444) | func BenchmarkConvertInput(b *testing.B) { function TestRealWorldScenario (line 474) | func TestRealWorldScenario(t *testing.T) { FILE: backend/pkg/observability/langfuse/embedding.go constant embeddingDefaultName (line 13) | embeddingDefaultName = "Default Embedding" type Embedding (line 16) | type Embedding interface type embedding (line 24) | type embedding struct method End (line 164) | func (e *embedding) End(opts ...EmbeddingOption) { method String (line 197) | func (e *embedding) String() string { method MarshalJSON (line 201) | func (e *embedding) MarshalJSON() ([]byte, error) { method Observation (line 205) | func (e *embedding) Observation(ctx context.Context) (context.Context,... method ObservationInfo (line 217) | func (e *embedding) ObservationInfo() ObservationInfo { type EmbeddingOption (line 43) | type EmbeddingOption function withEmbeddingTraceID (line 45) | func withEmbeddingTraceID(traceID string) EmbeddingOption { function withEmbeddingParentObservationID (line 51) | func withEmbeddingParentObservationID(parentObservationID string) Embedd... function WithEmbeddingID (line 58) | func WithEmbeddingID(id string) EmbeddingOption { function WithEmbeddingName (line 64) | func WithEmbeddingName(name string) EmbeddingOption { function WithEmbeddingMetadata (line 70) | func WithEmbeddingMetadata(metadata Metadata) EmbeddingOption { function WithEmbeddingInput (line 76) | func WithEmbeddingInput(input any) EmbeddingOption { function WithEmbeddingOutput (line 82) | func WithEmbeddingOutput(output any) EmbeddingOption { function WithEmbeddingStartTime (line 89) | func WithEmbeddingStartTime(time time.Time) EmbeddingOption { function WithEmbeddingEndTime (line 95) | func WithEmbeddingEndTime(time time.Time) EmbeddingOption { function WithEmbeddingLevel (line 101) | func WithEmbeddingLevel(level ObservationLevel) EmbeddingOption { function WithEmbeddingStatus (line 107) | func WithEmbeddingStatus(status string) EmbeddingOption { function WithEmbeddingVersion (line 113) | func WithEmbeddingVersion(version string) EmbeddingOption { function WithEmbeddingModel (line 119) | func WithEmbeddingModel(model string) EmbeddingOption { function newEmbedding (line 125) | func newEmbedding(observer enqueue, opts ...EmbeddingOption) Embedding { FILE: backend/pkg/observability/langfuse/evaluator.go constant evaluatorDefaultName (line 15) | evaluatorDefaultName = "Default Evaluator" type Evaluator (line 18) | type Evaluator interface type evaluator (line 26) | type evaluator struct method End (line 181) | func (e *evaluator) End(opts ...EvaluatorOption) { method String (line 215) | func (e *evaluator) String() string { method MarshalJSON (line 219) | func (e *evaluator) MarshalJSON() ([]byte, error) { method Observation (line 223) | func (e *evaluator) Observation(ctx context.Context) (context.Context,... method ObservationInfo (line 235) | func (e *evaluator) ObservationInfo() ObservationInfo { type EvaluatorOption (line 47) | type EvaluatorOption function withEvaluatorTraceID (line 49) | func withEvaluatorTraceID(traceID string) EvaluatorOption { function withEvaluatorParentObservationID (line 55) | func withEvaluatorParentObservationID(parentObservationID string) Evalua... function WithEvaluatorID (line 62) | func WithEvaluatorID(id string) EvaluatorOption { function WithEvaluatorName (line 68) | func WithEvaluatorName(name string) EvaluatorOption { function WithEvaluatorMetadata (line 74) | func WithEvaluatorMetadata(metadata Metadata) EvaluatorOption { function WithEvaluatorInput (line 81) | func WithEvaluatorInput(input any) EvaluatorOption { function WithEvaluatorOutput (line 87) | func WithEvaluatorOutput(output any) EvaluatorOption { function WithEvaluatorStartTime (line 93) | func WithEvaluatorStartTime(time time.Time) EvaluatorOption { function WithEvaluatorEndTime (line 99) | func WithEvaluatorEndTime(time time.Time) EvaluatorOption { function WithEvaluatorLevel (line 105) | func WithEvaluatorLevel(level ObservationLevel) EvaluatorOption { function WithEvaluatorStatus (line 111) | func WithEvaluatorStatus(status string) EvaluatorOption { function WithEvaluatorVersion (line 117) | func WithEvaluatorVersion(version string) EvaluatorOption { function WithEvaluatorModel (line 123) | func WithEvaluatorModel(model string) EvaluatorOption { function WithEvaluatorModelParameters (line 129) | func WithEvaluatorModelParameters(parameters *ModelParameters) Evaluator... function WithEvaluatorTools (line 135) | func WithEvaluatorTools(tools []llms.Tool) EvaluatorOption { function newEvaluator (line 141) | func newEvaluator(observer enqueue, opts ...EvaluatorOption) Evaluator { FILE: backend/pkg/observability/langfuse/event.go constant eventDefaultName (line 13) | eventDefaultName = "Default Event" type Event (line 16) | type Event interface type event (line 23) | type event struct method String (line 140) | func (e *event) String() string { method MarshalJSON (line 144) | func (e *event) MarshalJSON() ([]byte, error) { method Observation (line 149) | func (e *event) Observation(ctx context.Context) (context.Context, Obs... method ObservationInfo (line 161) | func (e *event) ObservationInfo() ObservationInfo { type EventOption (line 40) | type EventOption function withEventTraceID (line 42) | func withEventTraceID(traceID string) EventOption { function withEventParentObservationID (line 48) | func withEventParentObservationID(parentObservationID string) EventOption { function WithEventName (line 54) | func WithEventName(name string) EventOption { function WithEventMetadata (line 60) | func WithEventMetadata(metadata Metadata) EventOption { function WithEventInput (line 66) | func WithEventInput(input any) EventOption { function WithEventOutput (line 72) | func WithEventOutput(output any) EventOption { function WithEventTime (line 78) | func WithEventTime(time time.Time) EventOption { function WithEventLevel (line 84) | func WithEventLevel(level ObservationLevel) EventOption { function WithEventStatus (line 90) | func WithEventStatus(status string) EventOption { function WithEventVersion (line 96) | func WithEventVersion(version string) EventOption { function newEvent (line 102) | func newEvent(observer enqueue, opts ...EventOption) Event { FILE: backend/pkg/observability/langfuse/generation.go constant generationDefaultName (line 15) | generationDefaultName = "Default Generation" type Generation (line 18) | type Generation interface type generation (line 26) | type generation struct method End (line 219) | func (g *generation) End(opts ...GenerationOption) { method String (line 257) | func (g *generation) String() string { method MarshalJSON (line 261) | func (g *generation) MarshalJSON() ([]byte, error) { method Observation (line 265) | func (g *generation) Observation(ctx context.Context) (context.Context... method ObservationInfo (line 277) | func (g *generation) ObservationInfo() ObservationInfo { type GenerationOption (line 51) | type GenerationOption function withGenerationTraceID (line 53) | func withGenerationTraceID(traceID string) GenerationOption { function withGenerationParentObservationID (line 59) | func withGenerationParentObservationID(parentObservationID string) Gener... function WithGenerationID (line 66) | func WithGenerationID(id string) GenerationOption { function WithGenerationName (line 72) | func WithGenerationName(name string) GenerationOption { function WithGenerationMetadata (line 78) | func WithGenerationMetadata(metadata Metadata) GenerationOption { function WithGenerationInput (line 84) | func WithGenerationInput(input any) GenerationOption { function WithGenerationOutput (line 90) | func WithGenerationOutput(output any) GenerationOption { function WithGenerationStartTime (line 97) | func WithGenerationStartTime(time time.Time) GenerationOption { function WithGenerationEndTime (line 103) | func WithGenerationEndTime(time time.Time) GenerationOption { function WithGenerationCompletionStartTime (line 109) | func WithGenerationCompletionStartTime(time time.Time) GenerationOption { function WithGenerationLevel (line 115) | func WithGenerationLevel(level ObservationLevel) GenerationOption { function WithGenerationStatus (line 121) | func WithGenerationStatus(status string) GenerationOption { function WithGenerationVersion (line 127) | func WithGenerationVersion(version string) GenerationOption { function WithGenerationModel (line 133) | func WithGenerationModel(model string) GenerationOption { function WithGenerationModelParameters (line 139) | func WithGenerationModelParameters(parameters *ModelParameters) Generati... function WithGenerationUsage (line 145) | func WithGenerationUsage(usage *GenerationUsage) GenerationOption { function WithGenerationPromptName (line 151) | func WithGenerationPromptName(name string) GenerationOption { function WithGenerationPromptVersion (line 157) | func WithGenerationPromptVersion(version int) GenerationOption { function WithGenerationTools (line 163) | func WithGenerationTools(tools []llms.Tool) GenerationOption { function newGeneration (line 169) | func newGeneration(observer enqueue, opts ...GenerationOption) Generation { FILE: backend/pkg/observability/langfuse/guardrail.go constant guardrailDefaultName (line 15) | guardrailDefaultName = "Default Guardrail" type Guardrail (line 18) | type Guardrail interface type guardrail (line 26) | type guardrail struct method End (line 181) | func (g *guardrail) End(opts ...GuardrailOption) { method String (line 215) | func (g *guardrail) String() string { method MarshalJSON (line 219) | func (g *guardrail) MarshalJSON() ([]byte, error) { method Observation (line 223) | func (g *guardrail) Observation(ctx context.Context) (context.Context,... method ObservationInfo (line 235) | func (g *guardrail) ObservationInfo() ObservationInfo { type GuardrailOption (line 47) | type GuardrailOption function withGuardrailTraceID (line 49) | func withGuardrailTraceID(traceID string) GuardrailOption { function withGuardrailParentObservationID (line 55) | func withGuardrailParentObservationID(parentObservationID string) Guardr... function WithGuardrailID (line 62) | func WithGuardrailID(id string) GuardrailOption { function WithGuardrailName (line 68) | func WithGuardrailName(name string) GuardrailOption { function WithGuardrailMetadata (line 74) | func WithGuardrailMetadata(metadata Metadata) GuardrailOption { function WithGuardrailInput (line 80) | func WithGuardrailInput(input any) GuardrailOption { function WithGuardrailOutput (line 86) | func WithGuardrailOutput(output any) GuardrailOption { function WithGuardrailStartTime (line 93) | func WithGuardrailStartTime(time time.Time) GuardrailOption { function WithGuardrailEndTime (line 99) | func WithGuardrailEndTime(time time.Time) GuardrailOption { function WithGuardrailLevel (line 105) | func WithGuardrailLevel(level ObservationLevel) GuardrailOption { function WithGuardrailStatus (line 111) | func WithGuardrailStatus(status string) GuardrailOption { function WithGuardrailVersion (line 117) | func WithGuardrailVersion(version string) GuardrailOption { function WithGuardrailModel (line 123) | func WithGuardrailModel(model string) GuardrailOption { function WithGuardrailModelParameters (line 129) | func WithGuardrailModelParameters(parameters *ModelParameters) Guardrail... function WithGuardrailTools (line 135) | func WithGuardrailTools(tools []llms.Tool) GuardrailOption { function newGuardrail (line 141) | func newGuardrail(observer enqueue, opts ...GuardrailOption) Guardrail { FILE: backend/pkg/observability/langfuse/helpers.go constant firstVersion (line 17) | firstVersion = "v1" constant timeFormat8601 (line 18) | timeFormat8601 = "2006-01-02T15:04:05.000000Z" type Metadata (line 39) | type Metadata function mergeMaps (line 46) | func mergeMaps(dst, src map[string]any) map[string]any { type ObservationLevel (line 63) | type ObservationLevel method ToLangfuse (line 72) | func (e ObservationLevel) ToLangfuse() *api.ObservationLevel { constant ObservationLevelDefault (line 66) | ObservationLevelDefault ObservationLevel = iota constant ObservationLevelDebug (line 67) | ObservationLevelDebug constant ObservationLevelWarning (line 68) | ObservationLevelWarning constant ObservationLevelError (line 69) | ObservationLevelError type GenerationUsageUnit (line 87) | type GenerationUsageUnit method String (line 98) | func (e GenerationUsageUnit) String() string { method ToLangfuse (line 116) | func (e GenerationUsageUnit) ToLangfuse() *string { constant GenerationUsageUnitTokens (line 90) | GenerationUsageUnitTokens GenerationUsageUnit = iota constant GenerationUsageUnitCharacters (line 91) | GenerationUsageUnitCharacters constant GenerationUsageUnitMilliseconds (line 92) | GenerationUsageUnitMilliseconds constant GenerationUsageUnitSeconds (line 93) | GenerationUsageUnitSeconds constant GenerationUsageUnitImages (line 94) | GenerationUsageUnitImages constant GenerationUsageUnitRequests (line 95) | GenerationUsageUnitRequests type GenerationUsage (line 124) | type GenerationUsage struct method ToLangfuse (line 132) | func (u *GenerationUsage) ToLangfuse() *api.IngestionUsage { type ModelParameters (line 161) | type ModelParameters struct method ToLangfuse (line 195) | func (m *ModelParameters) ToLangfuse() map[string]*api.MapValue { function GetLangchainModelParameters (line 262) | func GetLangchainModelParameters(options []llms.CallOption) *ModelParame... function newTraceID (line 287) | func newTraceID() string { function newSpanID (line 295) | func newSpanID() string { function getCurrentTime (line 301) | func getCurrentTime() time.Time { function getCurrentTimeString (line 305) | func getCurrentTimeString() string { function getCurrentTimeRef (line 309) | func getCurrentTimeRef() *time.Time { function getTimeRef (line 313) | func getTimeRef(time time.Time) *time.Time { function getTimeRefString (line 317) | func getTimeRefString(time *time.Time) string { function getStringRef (line 324) | func getStringRef(s string) *string { function getIntRef (line 331) | func getIntRef(i int) *int { function getBoolRef (line 335) | func getBoolRef(b bool) *bool { FILE: backend/pkg/observability/langfuse/noop.go type noopObserver (line 9) | type noopObserver struct method NewObservation (line 15) | func (o *noopObserver) NewObservation( method Shutdown (line 48) | func (o *noopObserver) Shutdown(ctx context.Context) error { method ForceFlush (line 52) | func (o *noopObserver) ForceFlush(ctx context.Context) error { method enqueue (line 56) | func (o *noopObserver) enqueue(event *api.IngestionEvent) { function NewNoopObserver (line 11) | func NewNoopObserver() Observer { FILE: backend/pkg/observability/langfuse/observation.go type Observation (line 12) | type Observation interface type observation (line 30) | type observation struct method ID (line 35) | func (o *observation) ID() string { method TraceID (line 39) | func (o *observation) TraceID() string { method String (line 43) | func (o *observation) String() string { method Log (line 47) | func (o *observation) Log(ctx context.Context, message string) { method Score (line 67) | func (o *observation) Score(opts ...ScoreOption) { method Event (line 75) | func (o *observation) Event(opts ...EventOption) Event { method Span (line 83) | func (o *observation) Span(opts ...SpanOption) Span { method Generation (line 91) | func (o *observation) Generation(opts ...GenerationOption) Generation { method Agent (line 99) | func (o *observation) Agent(opts ...AgentOption) Agent { method Tool (line 107) | func (o *observation) Tool(opts ...ToolOption) Tool { method Chain (line 115) | func (o *observation) Chain(opts ...ChainOption) Chain { method Retriever (line 123) | func (o *observation) Retriever(opts ...RetrieverOption) Retriever { method Evaluator (line 131) | func (o *observation) Evaluator(opts ...EvaluatorOption) Evaluator { method Embedding (line 139) | func (o *observation) Embedding(opts ...EmbeddingOption) Embedding { method Guardrail (line 147) | func (o *observation) Guardrail(opts ...GuardrailOption) Guardrail { type ObservationInfo (line 155) | type ObservationInfo struct type ObservationContext (line 161) | type ObservationContext struct type ObservationContextOption (line 167) | type ObservationContextOption function WithObservationTraceID (line 169) | func WithObservationTraceID(traceID string) ObservationContextOption { function WithObservationID (line 175) | func WithObservationID(observationID string) ObservationContextOption { function WithObservationTraceContext (line 181) | func WithObservationTraceContext(opts ...TraceContextOption) Observation... FILE: backend/pkg/observability/langfuse/observer.go constant defaultQueueSize (line 15) | defaultQueueSize = 100 constant defaultSendInterval (line 16) | defaultSendInterval = 10 * time.Second constant defaultTimeout (line 17) | defaultTimeout = 20 * time.Second type Observer (line 20) | type Observer interface type enqueue (line 29) | type enqueue interface type observer (line 33) | type observer struct method NewObservation (line 81) | func (o *observer) NewObservation( method Shutdown (line 118) | func (o *observer) Shutdown(ctx context.Context) error { method ForceFlush (line 133) | func (o *observer) ForceFlush(ctx context.Context) error { method enqueue (line 147) | func (o *observer) enqueue(event *api.IngestionEvent) { method flush (line 158) | func (o *observer) flush(ctx context.Context, batch []*api.IngestionEv... method sender (line 200) | func (o *observer) sender() { method putTraceInfo (line 232) | func (o *observer) putTraceInfo(obsCtx ObservationContext) { function NewObserver (line 48) | func NewObserver(client *Client, opts ...ObserverOption) Observer { FILE: backend/pkg/observability/langfuse/options.go type ObserverOption (line 5) | type ObserverOption function WithProject (line 7) | func WithProject(project string) ObserverOption { function WithRelease (line 13) | func WithRelease(release string) ObserverOption { function WithSendInterval (line 19) | func WithSendInterval(interval time.Duration) ObserverOption { function WithSendTimeout (line 25) | func WithSendTimeout(timeout time.Duration) ObserverOption { function WithQueueSize (line 31) | func WithQueueSize(size int) ObserverOption { FILE: backend/pkg/observability/langfuse/retriever.go constant retrieverDefaultName (line 15) | retrieverDefaultName = "Default Retriever" type Retriever (line 18) | type Retriever interface type retriever (line 26) | type retriever struct method End (line 181) | func (r *retriever) End(opts ...RetrieverOption) { method String (line 215) | func (r *retriever) String() string { method MarshalJSON (line 219) | func (r *retriever) MarshalJSON() ([]byte, error) { method Observation (line 223) | func (r *retriever) Observation(ctx context.Context) (context.Context,... method ObservationInfo (line 235) | func (r *retriever) ObservationInfo() ObservationInfo { type RetrieverOption (line 47) | type RetrieverOption function withRetrieverTraceID (line 49) | func withRetrieverTraceID(traceID string) RetrieverOption { function withRetrieverParentObservationID (line 55) | func withRetrieverParentObservationID(parentObservationID string) Retrie... function WithRetrieverID (line 62) | func WithRetrieverID(id string) RetrieverOption { function WithRetrieverName (line 68) | func WithRetrieverName(name string) RetrieverOption { function WithRetrieverMetadata (line 74) | func WithRetrieverMetadata(metadata Metadata) RetrieverOption { function WithRetrieverInput (line 81) | func WithRetrieverInput(input any) RetrieverOption { function WithRetrieverOutput (line 87) | func WithRetrieverOutput(output any) RetrieverOption { function WithRetrieverStartTime (line 93) | func WithRetrieverStartTime(time time.Time) RetrieverOption { function WithRetrieverEndTime (line 99) | func WithRetrieverEndTime(time time.Time) RetrieverOption { function WithRetrieverLevel (line 105) | func WithRetrieverLevel(level ObservationLevel) RetrieverOption { function WithRetrieverStatus (line 111) | func WithRetrieverStatus(status string) RetrieverOption { function WithRetrieverVersion (line 117) | func WithRetrieverVersion(version string) RetrieverOption { function WithRetrieverModel (line 123) | func WithRetrieverModel(model string) RetrieverOption { function WithRetrieverModelParameters (line 129) | func WithRetrieverModelParameters(parameters *ModelParameters) Retriever... function WithRetrieverTools (line 135) | func WithRetrieverTools(tools []llms.Tool) RetrieverOption { function newRetriever (line 141) | func newRetriever(observer enqueue, opts ...RetrieverOption) Retriever { FILE: backend/pkg/observability/langfuse/score.go constant scoreDefaultName (line 10) | scoreDefaultName = "Default Score" type score (line 13) | type score struct type ScoreOption (line 31) | type ScoreOption function withScoreTraceID (line 33) | func withScoreTraceID(traceID string) ScoreOption { function withScoreParentObservationID (line 39) | func withScoreParentObservationID(parentObservationID string) ScoreOption { function WithScoreID (line 45) | func WithScoreID(id string) ScoreOption { function WithScoreName (line 51) | func WithScoreName(name string) ScoreOption { function WithScoreMetadata (line 57) | func WithScoreMetadata(metadata Metadata) ScoreOption { function WithScoreTime (line 63) | func WithScoreTime(time time.Time) ScoreOption { function WithScoreFloatValue (line 69) | func WithScoreFloatValue(value float64) ScoreOption { function WithScoreStringValue (line 76) | func WithScoreStringValue(value string) ScoreOption { function WithScoreComment (line 83) | func WithScoreComment(comment string) ScoreOption { function WithScoreConfigID (line 89) | func WithScoreConfigID(configID string) ScoreOption { function WithScoreQueueID (line 95) | func WithScoreQueueID(queueID string) ScoreOption { function newScore (line 101) | func newScore(observer enqueue, opts ...ScoreOption) { FILE: backend/pkg/observability/langfuse/span.go constant spanDefaultName (line 13) | spanDefaultName = "Default Span" type Span (line 16) | type Span interface type span (line 24) | type span struct method End (line 156) | func (s *span) End(opts ...SpanOption) { method String (line 188) | func (s *span) String() string { method MarshalJSON (line 192) | func (s *span) MarshalJSON() ([]byte, error) { method Observation (line 196) | func (s *span) Observation(ctx context.Context) (context.Context, Obse... method ObservationInfo (line 208) | func (s *span) ObservationInfo() ObservationInfo { type SpanOption (line 42) | type SpanOption function withSpanTraceID (line 44) | func withSpanTraceID(traceID string) SpanOption { function withSpanParentObservationID (line 50) | func withSpanParentObservationID(parentObservationID string) SpanOption { function WithSpanID (line 57) | func WithSpanID(id string) SpanOption { function WithSpanName (line 63) | func WithSpanName(name string) SpanOption { function WithSpanMetadata (line 69) | func WithSpanMetadata(metadata Metadata) SpanOption { function WithSpanInput (line 75) | func WithSpanInput(input any) SpanOption { function WithSpanOutput (line 81) | func WithSpanOutput(output any) SpanOption { function WithSpanStartTime (line 88) | func WithSpanStartTime(time time.Time) SpanOption { function WithSpanEndTime (line 94) | func WithSpanEndTime(time time.Time) SpanOption { function WithSpanLevel (line 100) | func WithSpanLevel(level ObservationLevel) SpanOption { function WithSpanStatus (line 106) | func WithSpanStatus(status string) SpanOption { function WithSpanVersion (line 112) | func WithSpanVersion(version string) SpanOption { function newSpan (line 118) | func newSpan(observer enqueue, opts ...SpanOption) Span { FILE: backend/pkg/observability/langfuse/tool.go constant toolDefaultName (line 13) | toolDefaultName = "Default Tool" type Tool (line 16) | type Tool interface type tool (line 24) | type tool struct method End (line 156) | func (t *tool) End(opts ...ToolOption) { method String (line 188) | func (t *tool) String() string { method MarshalJSON (line 192) | func (t *tool) MarshalJSON() ([]byte, error) { method Observation (line 196) | func (t *tool) Observation(ctx context.Context) (context.Context, Obse... method ObservationInfo (line 208) | func (t *tool) ObservationInfo() ObservationInfo { type ToolOption (line 42) | type ToolOption function withToolTraceID (line 44) | func withToolTraceID(traceID string) ToolOption { function withToolParentObservationID (line 50) | func withToolParentObservationID(parentObservationID string) ToolOption { function WithToolID (line 57) | func WithToolID(id string) ToolOption { function WithToolName (line 63) | func WithToolName(name string) ToolOption { function WithToolMetadata (line 69) | func WithToolMetadata(metadata Metadata) ToolOption { function WithToolInput (line 75) | func WithToolInput(input any) ToolOption { function WithToolOutput (line 81) | func WithToolOutput(output any) ToolOption { function WithToolStartTime (line 88) | func WithToolStartTime(time time.Time) ToolOption { function WithToolEndTime (line 94) | func WithToolEndTime(time time.Time) ToolOption { function WithToolLevel (line 100) | func WithToolLevel(level ObservationLevel) ToolOption { function WithToolStatus (line 106) | func WithToolStatus(status string) ToolOption { function WithToolVersion (line 112) | func WithToolVersion(version string) ToolOption { function newTool (line 118) | func newTool(observer enqueue, opts ...ToolOption) Tool { FILE: backend/pkg/observability/langfuse/trace.go type TraceContext (line 5) | type TraceContext struct type TraceContextOption (line 18) | type TraceContextOption function WithTraceTimestamp (line 20) | func WithTraceTimestamp(timestamp time.Time) TraceContextOption { function WithTraceName (line 26) | func WithTraceName(name string) TraceContextOption { function WithTraceUserID (line 32) | func WithTraceUserID(userID string) TraceContextOption { function WithTraceInput (line 38) | func WithTraceInput(input any) TraceContextOption { function WithTraceOutput (line 44) | func WithTraceOutput(output any) TraceContextOption { function WithTraceSessionID (line 50) | func WithTraceSessionID(sessionID string) TraceContextOption { function WithTraceVersion (line 56) | func WithTraceVersion(version string) TraceContextOption { function WithTraceMetadata (line 62) | func WithTraceMetadata(metadata Metadata) TraceContextOption { function WithTraceTags (line 68) | func WithTraceTags(tags []string) TraceContextOption { function WithTracePublic (line 74) | func WithTracePublic() TraceContextOption { FILE: backend/pkg/observability/lfclient.go constant DefaultObservationInterval (line 17) | DefaultObservationInterval = time.Second * 10 constant DefaultObservationTimeout (line 18) | DefaultObservationTimeout = time.Second * 10 constant DefaultMaxAttempts (line 19) | DefaultMaxAttempts = 3 constant DefaultQueueSize (line 20) | DefaultQueueSize = 10 type LangfuseClient (line 23) | type LangfuseClient interface type langfuseClient (line 30) | type langfuseClient struct method API (line 36) | func (c *langfuseClient) API() langfuse.Client { method Observer (line 43) | func (c *langfuseClient) Observer() langfuse.Observer { method Shutdown (line 47) | func (c *langfuseClient) Shutdown(ctx context.Context) error { method ForceFlush (line 55) | func (c *langfuseClient) ForceFlush(ctx context.Context) error { function NewLangfuseClient (line 62) | func NewLangfuseClient(ctx context.Context, cfg *config.Config) (Langfus... FILE: backend/pkg/observability/obs.go type SpanContextKey (line 32) | type SpanContextKey constant InstrumentationVersion (line 42) | InstrumentationVersion = "1.0.0" constant maximumCallerDepth (line 45) | maximumCallerDepth int = 25 constant logrusPackageName (line 46) | logrusPackageName string = "github.com/sirupsen/logrus" constant SpanKindUnspecified (line 53) | SpanKindUnspecified oteltrace.SpanKind = 0 constant SpanKindInternal (line 56) | SpanKindInternal oteltrace.SpanKind = 1 constant SpanKindServer (line 59) | SpanKindServer oteltrace.SpanKind = 2 constant SpanKindClient (line 62) | SpanKindClient oteltrace.SpanKind = 3 constant SpanKindProducer (line 70) | SpanKindProducer oteltrace.SpanKind = 4 constant SpanKindConsumer (line 75) | SpanKindConsumer oteltrace.SpanKind = 5 type Observability (line 80) | type Observability interface type Langfuse (line 89) | type Langfuse interface type Tracer (line 93) | type Tracer interface type Meter (line 107) | type Meter interface type Collector (line 124) | type Collector interface type Dumper (line 130) | type Dumper interface type observer (line 134) | type observer struct method Flush (line 203) | func (obs *observer) Flush(ctx context.Context) error { method Shutdown (line 215) | func (obs *observer) Shutdown(ctx context.Context) error { method StartProcessMetricCollect (line 227) | func (obs *observer) StartProcessMetricCollect(attrs ...attribute.KeyV... method StartGoRuntimeMetricCollect (line 239) | func (obs *observer) StartGoRuntimeMetricCollect(attrs ...attribute.Ke... method StartDumperMetricCollect (line 251) | func (obs *observer) StartDumperMetricCollect(stats Dumper, attrs ...a... method NewInt64Counter (line 263) | func (obs *observer) NewInt64Counter( method NewInt64UpDownCounter (line 269) | func (obs *observer) NewInt64UpDownCounter( method NewInt64Histogram (line 275) | func (obs *observer) NewInt64Histogram( method NewInt64Gauge (line 281) | func (obs *observer) NewInt64Gauge( method NewInt64ObservableCounter (line 287) | func (obs *observer) NewInt64ObservableCounter( method NewInt64ObservableUpDownCounter (line 293) | func (obs *observer) NewInt64ObservableUpDownCounter( method NewInt64ObservableGauge (line 299) | func (obs *observer) NewInt64ObservableGauge( method NewFloat64Counter (line 305) | func (obs *observer) NewFloat64Counter( method NewFloat64UpDownCounter (line 311) | func (obs *observer) NewFloat64UpDownCounter( method NewFloat64Histogram (line 317) | func (obs *observer) NewFloat64Histogram( method NewFloat64Gauge (line 323) | func (obs *observer) NewFloat64Gauge( method NewFloat64ObservableCounter (line 329) | func (obs *observer) NewFloat64ObservableCounter( method NewFloat64ObservableUpDownCounter (line 335) | func (obs *observer) NewFloat64ObservableUpDownCounter( method NewFloat64ObservableGauge (line 341) | func (obs *observer) NewFloat64ObservableGauge( method NewObservation (line 347) | func (obs *observer) NewObservation( method NewSpan (line 353) | func (obs *observer) NewSpan(ctx context.Context, kind oteltrace.SpanK... method NewSpanWithParent (line 369) | func (obs *observer) NewSpanWithParent(ctx context.Context, kind otelt... method SpanFromContext (line 405) | func (obs *observer) SpanFromContext(ctx context.Context) oteltrace.Sp... method SpanContextFromContext (line 409) | func (obs *observer) SpanContextFromContext(ctx context.Context) otelt... method makeAttrs (line 413) | func (obs *observer) makeAttrs(entry *logrus.Entry, span oteltrace.Spa... method makeRecord (line 460) | func (obs *observer) makeRecord(entry *logrus.Entry, span oteltrace.Sp... method Fire (line 517) | func (obs *observer) Fire(entry *logrus.Entry) error { method Levels (line 563) | func (obs *observer) Levels() []logrus.Level { function init (line 144) | func init() { function InitObserver (line 148) | func InitObserver(ctx context.Context, lfclient LangfuseClient, otelclie... function levelString (line 571) | func levelString(lvl logrus.Level) string { function attributeKeyValue (line 579) | func attributeKeyValue(key string, value interface{}) attribute.KeyValue { function logValue (line 635) | func logValue(value interface{}) otellog.Value { function logSeverity (line 682) | func logSeverity(lvl logrus.Level) otellog.Severity { function getStackTrace (line 701) | func getStackTrace() []string { function getPackageName (line 722) | func getPackageName(f string) string { FILE: backend/pkg/observability/otelclient.go constant DefaultLogInterval (line 29) | DefaultLogInterval = time.Second * 30 constant DefaultLogTimeout (line 30) | DefaultLogTimeout = time.Second * 10 constant DefaultMetricInterval (line 31) | DefaultMetricInterval = time.Second * 30 constant DefaultMetricTimeout (line 32) | DefaultMetricTimeout = time.Second * 10 constant DefaultTraceInterval (line 33) | DefaultTraceInterval = time.Second * 30 constant DefaultTraceTimeout (line 34) | DefaultTraceTimeout = time.Second * 10 type TelemetryClient (line 37) | type TelemetryClient interface type telemetryClient (line 45) | type telemetryClient struct method Logger (line 52) | func (c *telemetryClient) Logger() otellog.LoggerProvider { method Tracer (line 56) | func (c *telemetryClient) Tracer() oteltrace.TracerProvider { method Meter (line 60) | func (c *telemetryClient) Meter() otelmetric.MeterProvider { method Shutdown (line 64) | func (c *telemetryClient) Shutdown(ctx context.Context) error { method ForceFlush (line 77) | func (c *telemetryClient) ForceFlush(ctx context.Context) error { function NewTelemetryClient (line 90) | func NewTelemetryClient(ctx context.Context, cfg *config.Config) (Teleme... function newResource (line 166) | func newResource(opts ...attribute.KeyValue) *resource.Resource { FILE: backend/pkg/observability/profiling/profiling.go constant profilerAddress (line 10) | profilerAddress = ":7777" function Start (line 12) | func Start() { FILE: backend/pkg/providers/anthropic/anthropic.go constant AnthropicAgentModel (line 21) | AnthropicAgentModel = "claude-sonnet-4-20250514" constant AnthropicToolCallIDTemplate (line 23) | AnthropicToolCallIDTemplate = "toolu_{r:24:b}" function BuildProviderConfig (line 25) | func BuildProviderConfig(configData []byte) (*pconfig.ProviderConfig, er... function DefaultProviderConfig (line 41) | func DefaultProviderConfig() (*pconfig.ProviderConfig, error) { function DefaultModels (line 50) | func DefaultModels() (pconfig.ModelsConfig, error) { type anthropicProvider (line 59) | type anthropicProvider struct method Type (line 101) | func (p *anthropicProvider) Type() provider.ProviderType { method GetRawConfig (line 105) | func (p *anthropicProvider) GetRawConfig() []byte { method GetProviderConfig (line 109) | func (p *anthropicProvider) GetProviderConfig() *pconfig.ProviderConfig { method GetPriceInfo (line 113) | func (p *anthropicProvider) GetPriceInfo(opt pconfig.ProviderOptionsTy... method GetModels (line 117) | func (p *anthropicProvider) GetModels() pconfig.ModelsConfig { method Model (line 121) | func (p *anthropicProvider) Model(opt pconfig.ProviderOptionsType) str... method ModelWithPrefix (line 131) | func (p *anthropicProvider) ModelWithPrefix(opt pconfig.ProviderOption... method Call (line 136) | func (p *anthropicProvider) Call( method CallEx (line 147) | func (p *anthropicProvider) CallEx( method CallWithTools (line 161) | func (p *anthropicProvider) CallWithTools( method GetUsage (line 177) | func (p *anthropicProvider) GetUsage(info map[string]any) pconfig.Call... method GetToolCallIDTemplate (line 181) | func (p *anthropicProvider) GetToolCallIDTemplate(ctx context.Context,... function New (line 65) | func New(cfg *config.Config, providerConfig *pconfig.ProviderConfig) (pr... FILE: backend/pkg/providers/anthropic/anthropic_test.go function TestConfigLoading (line 11) | func TestConfigLoading(t *testing.T) { function TestProviderType (line 57) | func TestProviderType(t *testing.T) { function TestModelsLoading (line 78) | func TestModelsLoading(t *testing.T) { FILE: backend/pkg/providers/assistant.go type AssistantProvider (line 26) | type AssistantProvider interface type assistantProvider (line 44) | type assistantProvider struct method Type (line 51) | func (ap *assistantProvider) Type() provider.ProviderType { method Model (line 55) | func (ap *assistantProvider) Model(opt pconfig.ProviderOptionsType) st... method Title (line 59) | func (ap *assistantProvider) Title() string { method Language (line 63) | func (ap *assistantProvider) Language() string { method ToolCallIDTemplate (line 67) | func (ap *assistantProvider) ToolCallIDTemplate() string { method Embedder (line 71) | func (ap *assistantProvider) Embedder() embeddings.Embedder { method SetMsgChainID (line 75) | func (ap *assistantProvider) SetMsgChainID(msgChainID int64) { method SetAgentLogProvider (line 79) | func (ap *assistantProvider) SetAgentLogProvider(agentLog tools.AgentL... method SetMsgLogProvider (line 83) | func (ap *assistantProvider) SetMsgLogProvider(msgLog tools.MsgLogProv... method PrepareAgentChain (line 87) | func (ap *assistantProvider) PrepareAgentChain(ctx context.Context) (i... method PerformAgentChain (line 116) | func (ap *assistantProvider) PerformAgentChain(ctx context.Context) er... method PutInputToAgentChain (line 225) | func (ap *assistantProvider) PutInputToAgentChain(ctx context.Context,... method EnsureChainConsistency (line 242) | func (ap *assistantProvider) EnsureChainConsistency(ctx context.Contex... method updateAssistantChain (line 249) | func (ap *assistantProvider) updateAssistantChain( method getAssistantUseAgents (line 277) | func (ap *assistantProvider) getAssistantUseAgents(ctx context.Context... method getAssistantSystemPrompt (line 281) | func (ap *assistantProvider) getAssistantSystemPrompt(ctx context.Cont... method getAssistantExecutionContext (line 337) | func (ap *assistantProvider) getAssistantExecutionContext(ctx context.... FILE: backend/pkg/providers/bedrock/bedrock.go constant BedrockAgentModel (line 31) | BedrockAgentModel = bedrock.ModelAnthropicClaudeSonnet4 constant BedrockToolCallIDTemplate (line 33) | BedrockToolCallIDTemplate = "tooluse_{r:22:x}" function BuildProviderConfig (line 35) | func BuildProviderConfig(configData []byte) (*pconfig.ProviderConfig, er... function DefaultProviderConfig (line 51) | func DefaultProviderConfig() (*pconfig.ProviderConfig, error) { function DefaultModels (line 60) | func DefaultModels() (pconfig.ModelsConfig, error) { type bedrockProvider (line 69) | type bedrockProvider struct method Type (line 148) | func (p *bedrockProvider) Type() provider.ProviderType { method GetRawConfig (line 152) | func (p *bedrockProvider) GetRawConfig() []byte { method GetProviderConfig (line 156) | func (p *bedrockProvider) GetProviderConfig() *pconfig.ProviderConfig { method GetPriceInfo (line 160) | func (p *bedrockProvider) GetPriceInfo(opt pconfig.ProviderOptionsType... method GetModels (line 164) | func (p *bedrockProvider) GetModels() pconfig.ModelsConfig { method Model (line 168) | func (p *bedrockProvider) Model(opt pconfig.ProviderOptionsType) string { method ModelWithPrefix (line 178) | func (p *bedrockProvider) ModelWithPrefix(opt pconfig.ProviderOptionsT... method Call (line 183) | func (p *bedrockProvider) Call( method CallEx (line 194) | func (p *bedrockProvider) CallEx( method CallWithTools (line 224) | func (p *bedrockProvider) CallWithTools( method GetUsage (line 248) | func (p *bedrockProvider) GetUsage(info map[string]any) pconfig.CallUs... method GetToolCallIDTemplate (line 252) | func (p *bedrockProvider) GetToolCallIDTemplate(ctx context.Context, p... function New (line 79) | func New(cfg *config.Config, providerConfig *pconfig.ProviderConfig) (pr... function extractToolsFromOptions (line 256) | func extractToolsFromOptions(options []llms.CallOption) []llms.Tool { function restoreMissedToolsFromChain (line 266) | func restoreMissedToolsFromChain(chain []llms.MessageContent, tools []ll... function collectToolUsageFromChain (line 309) | func collectToolUsageFromChain(chain []llms.MessageContent) map[string][... function inferSchemaFromArguments (line 336) | func inferSchemaFromArguments(argumentSamples []string) map[string]any { function inferPropertyType (line 377) | func inferPropertyType(value any) string { function cleanToolSchemas (line 404) | func cleanToolSchemas(tools []llms.Tool) []llms.Tool { function cleanParameters (line 426) | func cleanParameters(params any) any { FILE: backend/pkg/providers/bedrock/bedrock_test.go function TestConfigLoading (line 17) | func TestConfigLoading(t *testing.T) { function TestProviderType (line 64) | func TestProviderType(t *testing.T) { function TestModelsLoading (line 86) | func TestModelsLoading(t *testing.T) { function TestBedrockSpecificFeatures (line 116) | func TestBedrockSpecificFeatures(t *testing.T) { function TestGetUsage (line 150) | func TestGetUsage(t *testing.T) { function toolNames (line 190) | func toolNames(tools []llms.Tool) []string { function TestInferPropertyType (line 201) | func TestInferPropertyType(t *testing.T) { function TestInferSchemaFromArguments (line 233) | func TestInferSchemaFromArguments(t *testing.T) { function TestCollectToolUsageFromChain (line 350) | func TestCollectToolUsageFromChain(t *testing.T) { function TestRestoreMissedToolsFromChain (line 520) | func TestRestoreMissedToolsFromChain(t *testing.T) { function TestExtractToolsFromOptions (line 830) | func TestExtractToolsFromOptions(t *testing.T) { function TestAuthenticationStrategies (line 879) | func TestAuthenticationStrategies(t *testing.T) { function TestAuthenticationErrors (line 1022) | func TestAuthenticationErrors(t *testing.T) { function TestCleanToolSchemas (line 1071) | func TestCleanToolSchemas(t *testing.T) { function createToolWithSchema (line 1176) | func createToolWithSchema(name, schemaVersion string) llms.Tool { function createToolWithoutSchema (line 1192) | func createToolWithoutSchema(name string) llms.Tool { function createToolWithJsonSchemaType (line 1207) | func createToolWithJsonSchemaType(name string) llms.Tool { FILE: backend/pkg/providers/custom/custom.go function BuildProviderConfig (line 18) | func BuildProviderConfig(cfg *config.Config, configData []byte) (*pconfi... function DefaultProviderConfig (line 38) | func DefaultProviderConfig(cfg *config.Config) (*pconfig.ProviderConfig,... type customProvider (line 51) | type customProvider struct method Type (line 106) | func (p *customProvider) Type() provider.ProviderType { method GetRawConfig (line 110) | func (p *customProvider) GetRawConfig() []byte { method GetProviderConfig (line 114) | func (p *customProvider) GetProviderConfig() *pconfig.ProviderConfig { method GetPriceInfo (line 118) | func (p *customProvider) GetPriceInfo(opt pconfig.ProviderOptionsType)... method GetModels (line 122) | func (p *customProvider) GetModels() pconfig.ModelsConfig { method Model (line 126) | func (p *customProvider) Model(opt pconfig.ProviderOptionsType) string { method ModelWithPrefix (line 136) | func (p *customProvider) ModelWithPrefix(opt pconfig.ProviderOptionsTy... method Call (line 140) | func (p *customProvider) Call( method CallEx (line 151) | func (p *customProvider) CallEx( method CallWithTools (line 165) | func (p *customProvider) CallWithTools( method GetUsage (line 181) | func (p *customProvider) GetUsage(info map[string]any) pconfig.CallUsa... method GetToolCallIDTemplate (line 185) | func (p *customProvider) GetToolCallIDTemplate(ctx context.Context, pr... function New (line 59) | func New(cfg *config.Config, providerConfig *pconfig.ProviderConfig) (pr... FILE: backend/pkg/providers/custom/custom_test.go function TestConfigLoading (line 14) | func TestConfigLoading(t *testing.T) { function TestProviderType (line 93) | func TestProviderType(t *testing.T) { function TestBuildProviderConfig (line 116) | func TestBuildProviderConfig(t *testing.T) { function TestProviderModelsIntegration (line 184) | func TestProviderModelsIntegration(t *testing.T) { FILE: backend/pkg/providers/custom/example_test.go function TestCustomProviderUsageModes (line 12) | func TestCustomProviderUsageModes(t *testing.T) { function TestCustomProviderConfigValidation (line 141) | func TestCustomProviderConfigValidation(t *testing.T) { FILE: backend/pkg/providers/deepseek/deepseek.go constant DeepSeekAgentModel (line 22) | DeepSeekAgentModel = "deepseek-chat" constant DeepSeekToolCallIDTemplate (line 24) | DeepSeekToolCallIDTemplate = "call_{r:2:d}_{r:24:b}" function BuildProviderConfig (line 26) | func BuildProviderConfig(configData []byte) (*pconfig.ProviderConfig, er... function DefaultProviderConfig (line 41) | func DefaultProviderConfig() (*pconfig.ProviderConfig, error) { function DefaultModels (line 50) | func DefaultModels() (pconfig.ModelsConfig, error) { type deepseekProvider (line 59) | type deepseekProvider struct method Type (line 100) | func (p *deepseekProvider) Type() provider.ProviderType { method GetRawConfig (line 104) | func (p *deepseekProvider) GetRawConfig() []byte { method GetProviderConfig (line 108) | func (p *deepseekProvider) GetProviderConfig() *pconfig.ProviderConfig { method GetPriceInfo (line 112) | func (p *deepseekProvider) GetPriceInfo(opt pconfig.ProviderOptionsTyp... method GetModels (line 116) | func (p *deepseekProvider) GetModels() pconfig.ModelsConfig { method Model (line 120) | func (p *deepseekProvider) Model(opt pconfig.ProviderOptionsType) stri... method ModelWithPrefix (line 130) | func (p *deepseekProvider) ModelWithPrefix(opt pconfig.ProviderOptions... method Call (line 134) | func (p *deepseekProvider) Call( method CallEx (line 145) | func (p *deepseekProvider) CallEx( method CallWithTools (line 159) | func (p *deepseekProvider) CallWithTools( method GetUsage (line 175) | func (p *deepseekProvider) GetUsage(info map[string]any) pconfig.CallU... method GetToolCallIDTemplate (line 179) | func (p *deepseekProvider) GetToolCallIDTemplate(ctx context.Context, ... function New (line 66) | func New(cfg *config.Config, providerConfig *pconfig.ProviderConfig) (pr... FILE: backend/pkg/providers/deepseek/deepseek_test.go function TestConfigLoading (line 11) | func TestConfigLoading(t *testing.T) { function TestProviderType (line 57) | func TestProviderType(t *testing.T) { function TestModelsLoading (line 78) | func TestModelsLoading(t *testing.T) { function TestModelWithPrefix (line 108) | func TestModelWithPrefix(t *testing.T) { function TestModelWithoutPrefix (line 136) | func TestModelWithoutPrefix(t *testing.T) { function TestMissingAPIKey (line 163) | func TestMissingAPIKey(t *testing.T) { function TestGetUsage (line 179) | func TestGetUsage(t *testing.T) { FILE: backend/pkg/providers/embeddings/embedder.go type constructor (line 23) | type constructor type Embedder (line 25) | type Embedder interface type embedder (line 30) | type embedder struct method IsAvailable (line 34) | func (e *embedder) IsAvailable() bool { function New (line 38) | func New(cfg *config.Config) (Embedder, error) { function newOpenAI (line 75) | func newOpenAI(cfg *config.Config, httpClient *http.Client) (embeddings.... function newOllama (line 128) | func newOllama(cfg *config.Config, httpClient *http.Client) (embeddings.... function newMistral (line 171) | func newMistral(cfg *config.Config, _ *http.Client) (embeddings.Embedder... function newJina (line 212) | func newJina(cfg *config.Config, httpClient *http.Client) (embeddings.Em... function newHuggingface (line 252) | func newHuggingface(cfg *config.Config, httpClient *http.Client) (embedd... function newGoogleAI (line 304) | func newGoogleAI(cfg *config.Config, httpClient *http.Client) (embedding... function newVoyageAI (line 349) | func newVoyageAI(cfg *config.Config, httpClient *http.Client) (embedding... FILE: backend/pkg/providers/embeddings/embedder_test.go function TestNew_AllProviders (line 12) | func TestNew_AllProviders(t *testing.T) { function TestNew_UnsupportedProvider (line 47) | func TestNew_UnsupportedProvider(t *testing.T) { function TestNew_OpenAI_DefaultModel (line 61) | func TestNew_OpenAI_DefaultModel(t *testing.T) { function TestNew_OpenAI_CustomURL (line 75) | func TestNew_OpenAI_CustomURL(t *testing.T) { function TestNew_OpenAI_FallbackToOpenAIServerURL (line 91) | func TestNew_OpenAI_FallbackToOpenAIServerURL(t *testing.T) { function TestNew_OpenAI_KeyPriority (line 106) | func TestNew_OpenAI_KeyPriority(t *testing.T) { function TestNew_Jina_DefaultModel (line 139) | func TestNew_Jina_DefaultModel(t *testing.T) { function TestNew_Huggingface_DefaultModel (line 153) | func TestNew_Huggingface_DefaultModel(t *testing.T) { function TestNew_GoogleAI_DefaultModel (line 167) | func TestNew_GoogleAI_DefaultModel(t *testing.T) { function TestNew_VoyageAI_DefaultModel (line 181) | func TestNew_VoyageAI_DefaultModel(t *testing.T) { function TestNew_WithBatchSizeAndStripNewLines (line 195) | func TestNew_WithBatchSizeAndStripNewLines(t *testing.T) { function TestNew_HTTPClientError (line 211) | func TestNew_HTTPClientError(t *testing.T) { function TestIsAvailable_NilEmbedder (line 226) | func TestIsAvailable_NilEmbedder(t *testing.T) { function TestIsAvailable_ValidEmbedder (line 233) | func TestIsAvailable_ValidEmbedder(t *testing.T) { function TestNew_Ollama_WithCustomModel (line 247) | func TestNew_Ollama_WithCustomModel(t *testing.T) { function TestNew_Mistral_WithCustomURL (line 262) | func TestNew_Mistral_WithCustomURL(t *testing.T) { function TestNew_Jina_WithCustomModel (line 277) | func TestNew_Jina_WithCustomModel(t *testing.T) { function TestNew_Huggingface_WithCustomModel (line 293) | func TestNew_Huggingface_WithCustomModel(t *testing.T) { function TestNew_GoogleAI_WithCustomModel (line 309) | func TestNew_GoogleAI_WithCustomModel(t *testing.T) { function TestNew_VoyageAI_WithCustomModel (line 324) | func TestNew_VoyageAI_WithCustomModel(t *testing.T) { function TestNew_DifferentBatchSizes (line 339) | func TestNew_DifferentBatchSizes(t *testing.T) { function TestNew_StripNewLinesVariations (line 371) | func TestNew_StripNewLinesVariations(t *testing.T) { function TestNew_EmptyProvider (line 400) | func TestNew_EmptyProvider(t *testing.T) { FILE: backend/pkg/providers/embeddings/wrapper.go type wrapper (line 13) | type wrapper struct method EmbedDocuments (line 20) | func (w *wrapper) EmbedDocuments(ctx context.Context, texts []string) ... method EmbedQuery (line 67) | func (w *wrapper) EmbedQuery(ctx context.Context, text string) ([]floa... FILE: backend/pkg/providers/gemini/gemini.go constant GeminiAgentModel (line 24) | GeminiAgentModel = "gemini-2.5-flash" constant defaultGeminiHost (line 26) | defaultGeminiHost = "generativelanguage.googleapis.com" constant GeminiToolCallIDTemplate (line 28) | GeminiToolCallIDTemplate = "{r:8:x}" function BuildProviderConfig (line 30) | func BuildProviderConfig(configData []byte) (*pconfig.ProviderConfig, er... function DefaultProviderConfig (line 46) | func DefaultProviderConfig() (*pconfig.ProviderConfig, error) { function DefaultModels (line 55) | func DefaultModels() (pconfig.ModelsConfig, error) { type geminiProvider (line 64) | type geminiProvider struct method Type (line 110) | func (p *geminiProvider) Type() provider.ProviderType { method GetRawConfig (line 114) | func (p *geminiProvider) GetRawConfig() []byte { method GetProviderConfig (line 118) | func (p *geminiProvider) GetProviderConfig() *pconfig.ProviderConfig { method GetPriceInfo (line 122) | func (p *geminiProvider) GetPriceInfo(opt pconfig.ProviderOptionsType)... method GetModels (line 126) | func (p *geminiProvider) GetModels() pconfig.ModelsConfig { method Model (line 130) | func (p *geminiProvider) Model(opt pconfig.ProviderOptionsType) string { method ModelWithPrefix (line 140) | func (p *geminiProvider) ModelWithPrefix(opt pconfig.ProviderOptionsTy... method Call (line 145) | func (p *geminiProvider) Call( method CallEx (line 156) | func (p *geminiProvider) CallEx( method CallWithTools (line 170) | func (p *geminiProvider) CallWithTools( method GetUsage (line 186) | func (p *geminiProvider) GetUsage(info map[string]any) pconfig.CallUsa... method GetToolCallIDTemplate (line 190) | func (p *geminiProvider) GetToolCallIDTemplate(ctx context.Context, pr... function New (line 70) | func New(cfg *config.Config, providerConfig *pconfig.ProviderConfig) (pr... FILE: backend/pkg/providers/gemini/gemini_test.go function TestConfigLoading (line 18) | func TestConfigLoading(t *testing.T) { function TestProviderType (line 64) | func TestProviderType(t *testing.T) { function TestModelsLoading (line 85) | func TestModelsLoading(t *testing.T) { function TestGeminiSpecificFeatures (line 117) | func TestGeminiSpecificFeatures(t *testing.T) { function TestGetUsage (line 144) | func TestGetUsage(t *testing.T) { function TestAPIKeyTransportRoundTrip (line 182) | func TestAPIKeyTransportRoundTrip(t *testing.T) { type mockRoundTripper (line 329) | type mockRoundTripper struct method RoundTrip (line 333) | func (m *mockRoundTripper) RoundTrip(req *http.Request) (*http.Respons... function TestAPIKeyTransportWithMockServer (line 337) | func TestAPIKeyTransportWithMockServer(t *testing.T) { function TestGeminiProviderWithProxyConfiguration (line 408) | func TestGeminiProviderWithProxyConfiguration(t *testing.T) { FILE: backend/pkg/providers/glm/glm.go constant GLMAgentModel (line 22) | GLMAgentModel = "glm-4.7-flashx" constant GLMToolCallIDTemplate (line 24) | GLMToolCallIDTemplate = "call_-{r:19:d}" function BuildProviderConfig (line 26) | func BuildProviderConfig(configData []byte) (*pconfig.ProviderConfig, er... function DefaultProviderConfig (line 40) | func DefaultProviderConfig() (*pconfig.ProviderConfig, error) { function DefaultModels (line 49) | func DefaultModels() (pconfig.ModelsConfig, error) { type glmProvider (line 58) | type glmProvider struct method Type (line 98) | func (p *glmProvider) Type() provider.ProviderType { method GetRawConfig (line 102) | func (p *glmProvider) GetRawConfig() []byte { method GetProviderConfig (line 106) | func (p *glmProvider) GetProviderConfig() *pconfig.ProviderConfig { method GetPriceInfo (line 110) | func (p *glmProvider) GetPriceInfo(opt pconfig.ProviderOptionsType) *p... method GetModels (line 114) | func (p *glmProvider) GetModels() pconfig.ModelsConfig { method Model (line 118) | func (p *glmProvider) Model(opt pconfig.ProviderOptionsType) string { method ModelWithPrefix (line 128) | func (p *glmProvider) ModelWithPrefix(opt pconfig.ProviderOptionsType)... method Call (line 132) | func (p *glmProvider) Call( method CallEx (line 143) | func (p *glmProvider) CallEx( method CallWithTools (line 157) | func (p *glmProvider) CallWithTools( method GetUsage (line 173) | func (p *glmProvider) GetUsage(info map[string]any) pconfig.CallUsage { method GetToolCallIDTemplate (line 177) | func (p *glmProvider) GetToolCallIDTemplate(ctx context.Context, promp... function New (line 65) | func New(cfg *config.Config, providerConfig *pconfig.ProviderConfig) (pr... FILE: backend/pkg/providers/glm/glm_test.go function TestConfigLoading (line 11) | func TestConfigLoading(t *testing.T) { function TestProviderType (line 57) | func TestProviderType(t *testing.T) { function TestModelsLoading (line 78) | func TestModelsLoading(t *testing.T) { function TestModelWithPrefix (line 108) | func TestModelWithPrefix(t *testing.T) { function TestModelWithoutPrefix (line 136) | func TestModelWithoutPrefix(t *testing.T) { function TestMissingAPIKey (line 163) | func TestMissingAPIKey(t *testing.T) { function TestGetUsage (line 179) | func TestGetUsage(t *testing.T) { FILE: backend/pkg/providers/handlers.go function wrapError (line 23) | func wrapError(ctx context.Context, msg string, err error) error { function wrapErrorEndAgentSpan (line 28) | func wrapErrorEndAgentSpan(ctx context.Context, span langfuse.Agent, msg... function wrapErrorEndEvaluatorSpan (line 38) | func wrapErrorEndEvaluatorSpan(ctx context.Context, span langfuse.Evalua... method getTaskAndSubtask (line 48) | func (fp *flowProvider) getTaskAndSubtask(ctx context.Context, taskID, s... method GetAskAdviceHandler (line 72) | func (fp *flowProvider) GetAskAdviceHandler(ctx context.Context, taskID,... method GetCoderHandler (line 247) | func (fp *flowProvider) GetCoderHandler(ctx context.Context, taskID, sub... method GetInstallerHandler (line 344) | func (fp *flowProvider) GetInstallerHandler(ctx context.Context, taskID,... method GetMemoristHandler (line 438) | func (fp *flowProvider) GetMemoristHandler(ctx context.Context, taskID, ... method GetPentesterHandler (line 575) | func (fp *flowProvider) GetPentesterHandler(ctx context.Context, taskID,... method GetSubtaskSearcherHandler (line 674) | func (fp *flowProvider) GetSubtaskSearcherHandler(ctx context.Context, t... method GetTaskSearcherHandler (line 764) | func (fp *flowProvider) GetTaskSearcherHandler(ctx context.Context, task... method GetSummarizeResultHandler (line 852) | func (fp *flowProvider) GetSummarizeResultHandler(taskID, subtaskID *int... method fixToolCallArgs (line 906) | func (fp *flowProvider) fixToolCallArgs( FILE: backend/pkg/providers/helpers.go constant RepeatingToolCallThreshold (line 29) | RepeatingToolCallThreshold = 3 constant maxQASectionsAfterRestore (line 30) | maxQASectionsAfterRestore = 3 constant keepQASectionsAfterRestore (line 31) | keepQASectionsAfterRestore = 1 constant lastSecBytesAfterRestore (line 32) | lastSecBytesAfterRestore = 16 * 1024 constant maxBPBytesAfterRestore (line 33) | maxBPBytesAfterRestore = 8 * 1024 constant maxQABytesAfterRestore (line 34) | maxQABytesAfterRestore = 20 * 1024 constant msgLogResultSummarySizeLimit (line 35) | msgLogResultSummarySizeLimit = 70 * 1024 constant msgLogResultEntrySizeLimit (line 36) | msgLogResultEntrySizeLimit = 1024 constant extractLastMessagesCount (line 37) | extractLastMessagesCount = 30 constant extractToolCallsCount (line 38) | extractToolCallsCount = 10 constant toolCallsHistorySeparator (line 39) | toolCallsHistorySeparator = "---------------TOOL_CALLS_HISTORY-------... type dummyMessage (line 42) | type dummyMessage struct type reflectorRetryContextKey (line 46) | type reflectorRetryContextKey struct function isReflectorRetry (line 49) | func isReflectorRetry(ctx context.Context) bool { function markReflectorRetry (line 57) | func markReflectorRetry(ctx context.Context) context.Context { type repeatingDetector (line 61) | type repeatingDetector struct method detect (line 65) | func (rd *repeatingDetector) detect(toolCall llms.ToolCall) bool { method clearCallArguments (line 88) | func (rd *repeatingDetector) clearCallArguments(toolCall *llms.Functio... type executionMonitorBuilder (line 112) | type executionMonitorBuilder type executionMonitor (line 115) | type executionMonitor struct method shouldInvokeMentor (line 125) | func (emd *executionMonitor) shouldInvokeMentor(toolCall llms.ToolCall... method reset (line 143) | func (emd *executionMonitor) reset() { method getTasksInfo (line 149) | func (fp *flowProvider) getTasksInfo(ctx context.Context, taskID int64) ... method getSubtasksInfo (line 196) | func (fp *flowProvider) getSubtasksInfo(taskID int64, subtasks []databas... method updateMsgChainResult (line 216) | func (fp *flowProvider) updateMsgChainResult(chain []llms.MessageContent... method ensureChainConsistency (line 261) | func (fp *flowProvider) ensureChainConsistency(chain []llms.MessageConte... method getTaskPrimaryAgentChainSummary (line 274) | func (fp *flowProvider) getTaskPrimaryAgentChainSummary( method getTaskMsgLogsSummary (line 348) | func (fp *flowProvider) getTaskMsgLogsSummary( method restoreChain (line 419) | func (fp *flowProvider) restoreChain( method processChain (line 581) | func (fp *flowProvider) processChain( method prepareExecutionContext (line 623) | func (fp *flowProvider) prepareExecutionContext(ctx context.Context, tas... method getExecutionContext (line 685) | func (fp *flowProvider) getExecutionContext(ctx context.Context, taskID,... method getExecutionContextBySubtask (line 697) | func (fp *flowProvider) getExecutionContextBySubtask(ctx context.Context... method getExecutionContextByTask (line 706) | func (fp *flowProvider) getExecutionContextByTask(ctx context.Context, t... method getExecutionContextByFlow (line 727) | func (fp *flowProvider) getExecutionContextByFlow(ctx context.Context) (... method subtasksToMarkdown (line 774) | func (fp *flowProvider) subtasksToMarkdown(subtasks []tools.SubtaskInfo)... method getContainerPortsDescription (line 784) | func (fp *flowProvider) getContainerPortsDescription() string { function getCurrentTime (line 812) | func getCurrentTime() string { function isEmptyChain (line 816) | func isEmptyChain(msgChain json.RawMessage) bool { function getToolCallMessage (line 826) | func getToolCallMessage(toolCall *llms.FunctionCall) map[string]string { function getRecentMessages (line 844) | func getRecentMessages(chain []llms.MessageContent) []map[string]string { function cutString (line 876) | func cutString(s string, maxLength int) string { function formatToolCallArguments (line 884) | func formatToolCallArguments(args string) string { function getToolCallInfo (line 909) | func getToolCallInfo(toolCall *cast.ToolCallPair) map[string]string { function extractToolCallsFromChain (line 926) | func extractToolCallsFromChain(chain []llms.MessageContent) []map[string... function extractAgentPromptFromChain (line 960) | func extractAgentPromptFromChain(chain []llms.MessageContent) string { function formatEnhancedToolResponse (line 991) | func formatEnhancedToolResponse(originalResult, mentorAnalysis string) s... function extractHistoryFromHumanMessage (line 1007) | func extractHistoryFromHumanMessage(msg *llms.MessageContent) string { function appendNewToolCallsToHistory (line 1032) | func appendNewToolCallsToHistory(history string, toolCalls []map[string]... function combineHistoryToolCallsToHumanMessage (line 1049) | func combineHistoryToolCallsToHumanMessage(history, msg string) string { function enrichLogrusFields (line 1053) | func enrichLogrusFields(flowID int64, taskID, subtaskID *int64, fields l... FILE: backend/pkg/providers/helpers_test.go function cloneChain (line 191) | func cloneChain(chain []llms.MessageContent) []llms.MessageContent { function newFlowProvider (line 198) | func newFlowProvider() *flowProvider { function findUnrespondedToolCalls (line 212) | func findUnrespondedToolCalls(chain []llms.MessageContent) ([]llms.ToolC... function TestUpdateMsgChainResult (line 269) | func TestUpdateMsgChainResult(t *testing.T) { function TestFindUnrespondedToolCalls (line 673) | func TestFindUnrespondedToolCalls(t *testing.T) { function TestEnsureChainConsistency (line 752) | func TestEnsureChainConsistency(t *testing.T) { function makeToolCall (line 827) | func makeToolCall(name, args string) llms.ToolCall { constant testMaxSoftDetectionsBeforeAbort (line 840) | testMaxSoftDetectionsBeforeAbort = 4 function TestRepeatingDetector (line 842) | func TestRepeatingDetector(t *testing.T) { function TestRepeatingDetectorEscalationThreshold (line 960) | func TestRepeatingDetectorEscalationThreshold(t *testing.T) { function TestClearCallArguments (line 989) | func TestClearCallArguments(t *testing.T) { function TestExecutionMonitorDetector_ShouldInvokeAdviser (line 1036) | func TestExecutionMonitorDetector_ShouldInvokeAdviser(t *testing.T) { function TestExecutionMonitorDetector_Reset (line 1093) | func TestExecutionMonitorDetector_Reset(t *testing.T) { function TestExecutionMonitorDetector_SameToolSequence (line 1116) | func TestExecutionMonitorDetector_SameToolSequence(t *testing.T) { function TestExecutionMonitorDetector_TotalCallsSequence (line 1143) | func TestExecutionMonitorDetector_TotalCallsSequence(t *testing.T) { function mockToolCall (line 1171) | func mockToolCall(name string) llms.ToolCall { FILE: backend/pkg/providers/kimi/kimi.go constant KimiAgentModel (line 22) | KimiAgentModel = "kimi-k2-turbo-preview" constant KimiToolCallIDTemplate (line 24) | KimiToolCallIDTemplate = "{f}:{r:1:d}" function BuildProviderConfig (line 26) | func BuildProviderConfig(configData []byte) (*pconfig.ProviderConfig, er... function DefaultProviderConfig (line 41) | func DefaultProviderConfig() (*pconfig.ProviderConfig, error) { function DefaultModels (line 50) | func DefaultModels() (pconfig.ModelsConfig, error) { type kimiProvider (line 59) | type kimiProvider struct method Type (line 100) | func (p *kimiProvider) Type() provider.ProviderType { method GetRawConfig (line 104) | func (p *kimiProvider) GetRawConfig() []byte { method GetProviderConfig (line 108) | func (p *kimiProvider) GetProviderConfig() *pconfig.ProviderConfig { method GetPriceInfo (line 112) | func (p *kimiProvider) GetPriceInfo(opt pconfig.ProviderOptionsType) *... method GetModels (line 116) | func (p *kimiProvider) GetModels() pconfig.ModelsConfig { method Model (line 120) | func (p *kimiProvider) Model(opt pconfig.ProviderOptionsType) string { method ModelWithPrefix (line 130) | func (p *kimiProvider) ModelWithPrefix(opt pconfig.ProviderOptionsType... method Call (line 134) | func (p *kimiProvider) Call( method CallEx (line 145) | func (p *kimiProvider) CallEx( method CallWithTools (line 159) | func (p *kimiProvider) CallWithTools( method GetUsage (line 175) | func (p *kimiProvider) GetUsage(info map[string]any) pconfig.CallUsage { method GetToolCallIDTemplate (line 179) | func (p *kimiProvider) GetToolCallIDTemplate(ctx context.Context, prom... function New (line 66) | func New(cfg *config.Config, providerConfig *pconfig.ProviderConfig) (pr... FILE: backend/pkg/providers/kimi/kimi_test.go function TestConfigLoading (line 11) | func TestConfigLoading(t *testing.T) { function TestProviderType (line 57) | func TestProviderType(t *testing.T) { function TestModelsLoading (line 78) | func TestModelsLoading(t *testing.T) { function TestModelWithPrefix (line 108) | func TestModelWithPrefix(t *testing.T) { function TestModelWithoutPrefix (line 136) | func TestModelWithoutPrefix(t *testing.T) { function TestMissingAPIKey (line 163) | func TestMissingAPIKey(t *testing.T) { function TestGetUsage (line 179) | func TestGetUsage(t *testing.T) { FILE: backend/pkg/providers/ollama/ollama.go constant defaultPullTimeout (line 29) | defaultPullTimeout = 10 * time.Minute constant defaultAPICallTimeout (line 30) | defaultAPICallTimeout = 10 * time.Second function BuildProviderConfig (line 33) | func BuildProviderConfig(cfg *config.Config, configData []byte) (*pconfi... function DefaultProviderConfig (line 48) | func DefaultProviderConfig(cfg *config.Config) (*pconfig.ProviderConfig,... function newOllamaClient (line 66) | func newOllamaClient(serverURL string, httpClient *http.Client) (*api.Cl... function loadAvailableModelsFromServer (line 75) | func loadAvailableModelsFromServer(client *api.Client) (pconfig.ModelsCo... function getConfigModelsList (line 96) | func getConfigModelsList(baseModel string, providerConfig *pconfig.Provi... function ensureModelsAvailable (line 115) | func ensureModelsAvailable(ctx context.Context, client *api.Client, mode... type ollamaProvider (line 145) | type ollamaProvider struct method Type (line 217) | func (p *ollamaProvider) Type() provider.ProviderType { method GetRawConfig (line 221) | func (p *ollamaProvider) GetRawConfig() []byte { method GetProviderConfig (line 225) | func (p *ollamaProvider) GetProviderConfig() *pconfig.ProviderConfig { method GetPriceInfo (line 229) | func (p *ollamaProvider) GetPriceInfo(opt pconfig.ProviderOptionsType)... method GetModels (line 233) | func (p *ollamaProvider) GetModels() pconfig.ModelsConfig { method Model (line 237) | func (p *ollamaProvider) Model(opt pconfig.ProviderOptionsType) string { method ModelWithPrefix (line 247) | func (p *ollamaProvider) ModelWithPrefix(opt pconfig.ProviderOptionsTy... method Call (line 252) | func (p *ollamaProvider) Call( method CallEx (line 263) | func (p *ollamaProvider) CallEx( method CallWithTools (line 277) | func (p *ollamaProvider) CallWithTools( method GetUsage (line 293) | func (p *ollamaProvider) GetUsage(info map[string]any) pconfig.CallUsa... method GetToolCallIDTemplate (line 297) | func (p *ollamaProvider) GetToolCallIDTemplate(ctx context.Context, pr... function New (line 152) | func New(cfg *config.Config, providerConfig *pconfig.ProviderConfig) (pr... FILE: backend/pkg/providers/ollama/ollama_test.go constant defaultModel (line 13) | defaultModel = "llama3.1:8b-instruct-q8_0" function TestBuildProviderConfig (line 15) | func TestBuildProviderConfig(t *testing.T) { function TestDefaultProviderConfig (line 37) | func TestDefaultProviderConfig(t *testing.T) { function TestNew (line 61) | func TestNew(t *testing.T) { function TestOllamaProviderWithProxy (line 93) | func TestOllamaProviderWithProxy(t *testing.T) { function TestOllamaProviderWithCustomConfig (line 107) | func TestOllamaProviderWithCustomConfig(t *testing.T) { function TestOllamaProviderPricing (line 132) | func TestOllamaProviderPricing(t *testing.T) { function TestGetUsageEdgeCases (line 158) | func TestGetUsageEdgeCases(t *testing.T) { FILE: backend/pkg/providers/openai/openai.go constant OpenAIAgentModel (line 21) | OpenAIAgentModel = "o4-mini" constant OpenAIToolCallIDTemplate (line 23) | OpenAIToolCallIDTemplate = "call_{r:24:b}" function BuildProviderConfig (line 25) | func BuildProviderConfig(configData []byte) (*pconfig.ProviderConfig, er... function DefaultProviderConfig (line 40) | func DefaultProviderConfig() (*pconfig.ProviderConfig, error) { function DefaultModels (line 49) | func DefaultModels() (pconfig.ModelsConfig, error) { type openaiProvider (line 58) | type openaiProvider struct method Type (line 93) | func (p *openaiProvider) Type() provider.ProviderType { method GetRawConfig (line 97) | func (p *openaiProvider) GetRawConfig() []byte { method GetProviderConfig (line 101) | func (p *openaiProvider) GetProviderConfig() *pconfig.ProviderConfig { method GetPriceInfo (line 105) | func (p *openaiProvider) GetPriceInfo(opt pconfig.ProviderOptionsType)... method GetModels (line 109) | func (p *openaiProvider) GetModels() pconfig.ModelsConfig { method Model (line 113) | func (p *openaiProvider) Model(opt pconfig.ProviderOptionsType) string { method ModelWithPrefix (line 123) | func (p *openaiProvider) ModelWithPrefix(opt pconfig.ProviderOptionsTy... method Call (line 128) | func (p *openaiProvider) Call( method CallEx (line 139) | func (p *openaiProvider) CallEx( method CallWithTools (line 153) | func (p *openaiProvider) CallWithTools( method GetUsage (line 169) | func (p *openaiProvider) GetUsage(info map[string]any) pconfig.CallUsa... method GetToolCallIDTemplate (line 173) | func (p *openaiProvider) GetToolCallIDTemplate(ctx context.Context, pr... function New (line 64) | func New(cfg *config.Config, providerConfig *pconfig.ProviderConfig) (pr... FILE: backend/pkg/providers/openai/openai_test.go function TestConfigLoading (line 11) | func TestConfigLoading(t *testing.T) { function TestProviderType (line 57) | func TestProviderType(t *testing.T) { function TestModelsLoading (line 78) | func TestModelsLoading(t *testing.T) { FILE: backend/pkg/providers/pconfig/config.go type CallUsage (line 15) | type CallUsage struct method getInt64 (line 31) | func (c *CallUsage) getInt64(info map[string]any, key string) int64 { method getFloat64 (line 52) | func (c *CallUsage) getFloat64(info map[string]any, key string) float64 { method Fill (line 67) | func (c *CallUsage) Fill(info map[string]any) { method Merge (line 76) | func (c *CallUsage) Merge(other CallUsage) { method UpdateCost (line 97) | func (c *CallUsage) UpdateCost(price *PriceInfo) { method IsZero (line 123) | func (c *CallUsage) IsZero() bool { method String (line 132) | func (c *CallUsage) String() string { function NewCallUsage (line 24) | func NewCallUsage(info map[string]any) CallUsage { type ProviderOptionsType (line 137) | type ProviderOptionsType constant OptionsTypePrimaryAgent (line 140) | OptionsTypePrimaryAgent ProviderOptionsType = "primary_agent" constant OptionsTypeAssistant (line 141) | OptionsTypeAssistant ProviderOptionsType = "assistant" constant OptionsTypeSimple (line 142) | OptionsTypeSimple ProviderOptionsType = "simple" constant OptionsTypeSimpleJSON (line 143) | OptionsTypeSimpleJSON ProviderOptionsType = "simple_json" constant OptionsTypeAdviser (line 144) | OptionsTypeAdviser ProviderOptionsType = "adviser" constant OptionsTypeGenerator (line 145) | OptionsTypeGenerator ProviderOptionsType = "generator" constant OptionsTypeRefiner (line 146) | OptionsTypeRefiner ProviderOptionsType = "refiner" constant OptionsTypeSearcher (line 147) | OptionsTypeSearcher ProviderOptionsType = "searcher" constant OptionsTypeEnricher (line 148) | OptionsTypeEnricher ProviderOptionsType = "enricher" constant OptionsTypeCoder (line 149) | OptionsTypeCoder ProviderOptionsType = "coder" constant OptionsTypeInstaller (line 150) | OptionsTypeInstaller ProviderOptionsType = "installer" constant OptionsTypePentester (line 151) | OptionsTypePentester ProviderOptionsType = "pentester" constant OptionsTypeReflector (line 152) | OptionsTypeReflector ProviderOptionsType = "reflector" type ModelConfig (line 171) | type ModelConfig struct method UnmarshalJSON (line 313) | func (mc *ModelConfig) UnmarshalJSON(data []byte) error { method UnmarshalYAML (line 356) | func (mc *ModelConfig) UnmarshalYAML(value *yaml.Node) error { method MarshalJSON (line 408) | func (mc ModelConfig) MarshalJSON() ([]byte, error) { method MarshalYAML (line 431) | func (mc ModelConfig) MarshalYAML() (any, error) { type ModelsConfig (line 179) | type ModelsConfig type PriceInfo (line 181) | type PriceInfo struct type ReasoningConfig (line 188) | type ReasoningConfig struct type AgentConfig (line 194) | type AgentConfig struct method UnmarshalJSON (line 487) | func (ac *AgentConfig) UnmarshalJSON(data []byte) error { method ClearRaw (line 504) | func (ac *AgentConfig) ClearRaw() { method UnmarshalYAML (line 510) | func (ac *AgentConfig) UnmarshalYAML(value *yaml.Node) error { method BuildOptions (line 526) | func (ac *AgentConfig) BuildOptions() []llms.CallOption { method marshalMap (line 592) | func (ac *AgentConfig) marshalMap() map[string]any { method MarshalJSON (line 659) | func (ac *AgentConfig) MarshalJSON() ([]byte, error) { method MarshalYAML (line 666) | func (ac *AgentConfig) MarshalYAML() (any, error) { type ProviderConfig (line 216) | type ProviderConfig struct method SetDefaultOptions (line 673) | func (pc *ProviderConfig) SetDefaultOptions(defaultOptions []llms.Call... method GetDefaultOptions (line 680) | func (pc *ProviderConfig) GetDefaultOptions() []llms.CallOption { method SetRawConfig (line 687) | func (pc *ProviderConfig) SetRawConfig(rawConfig []byte) { method GetRawConfig (line 694) | func (pc *ProviderConfig) GetRawConfig() []byte { method GetModelsMap (line 701) | func (pc *ProviderConfig) GetModelsMap() map[ProviderOptionsType]string { method GetOptionsForType (line 725) | func (pc *ProviderConfig) GetOptionsForType(optType ProviderOptionsTyp... method GetPriceInfoForType (line 771) | func (pc *ProviderConfig) GetPriceInfoForType(optType ProviderOptionsT... method BuildOptionsMap (line 823) | func (pc *ProviderConfig) BuildOptionsMap() map[ProviderOptionsType][]... method buildSimpleJSONOptions (line 847) | func (pc *ProviderConfig) buildSimpleJSONOptions() []llms.CallOption { method buildAssistantOptions (line 873) | func (pc *ProviderConfig) buildAssistantOptions() []llms.CallOption { constant EmptyProviderConfigRaw (line 234) | EmptyProviderConfigRaw = `{ function LoadConfig (line 250) | func LoadConfig(configPath string, defaultOptions []llms.CallOption) (*P... function LoadConfigData (line 284) | func LoadConfigData(configData []byte, defaultOptions []llms.CallOption)... function LoadModelsConfigData (line 302) | func LoadModelsConfigData(configData []byte) (ModelsConfig, error) { function handleLegacyConfig (line 455) | func handleLegacyConfig(config *ProviderConfig, data []byte) { FILE: backend/pkg/providers/pconfig/config_test.go function TestReasoningConfig_UnmarshalJSON (line 16) | func TestReasoningConfig_UnmarshalJSON(t *testing.T) { function TestReasoningConfig_UnmarshalYAML (line 74) | func TestReasoningConfig_UnmarshalYAML(t *testing.T) { function TestLoadConfig (line 135) | func TestLoadConfig(t *testing.T) { function TestLoadConfig_BackwardCompatibility (line 381) | func TestLoadConfig_BackwardCompatibility(t *testing.T) { function TestLoadConfigData_BackwardCompatibility (line 537) | func TestLoadConfigData_BackwardCompatibility(t *testing.T) { function TestAgentConfig_UnmarshalJSON (line 603) | func TestAgentConfig_UnmarshalJSON(t *testing.T) { function TestAgentConfig_UnmarshalYAML (line 711) | func TestAgentConfig_UnmarshalYAML(t *testing.T) { function TestAgentConfig_BuildOptions (line 818) | func TestAgentConfig_BuildOptions(t *testing.T) { function TestProvidersConfig_GetOptionsForType (line 1029) | func TestProvidersConfig_GetOptionsForType(t *testing.T) { function TestAgentConfig_MarshalJSON (line 1083) | func TestAgentConfig_MarshalJSON(t *testing.T) { function TestAgentConfig_MarshalYAML (line 1172) | func TestAgentConfig_MarshalYAML(t *testing.T) { function TestLoadConfig_WithDefaultOptions (line 1290) | func TestLoadConfig_WithDefaultOptions(t *testing.T) { function TestProvidersConfig_GetOptionsForType_WithDefaults (line 1402) | func TestProvidersConfig_GetOptionsForType_WithDefaults(t *testing.T) { function TestLoadModelsConfigData (line 1470) | func TestLoadModelsConfigData(t *testing.T) { function TestModelConfig_UnmarshalJSON (line 1577) | func TestModelConfig_UnmarshalJSON(t *testing.T) { function TestModelConfig_UnmarshalYAML (line 1687) | func TestModelConfig_UnmarshalYAML(t *testing.T) { function stringPtr (line 1745) | func stringPtr(s string) *string { function boolPtr (line 1749) | func boolPtr(b bool) *bool { function timePtr (line 1753) | func timePtr(t time.Time) *time.Time { function TestModelConfig_MarshalJSON (line 1757) | func TestModelConfig_MarshalJSON(t *testing.T) { function TestModelConfig_MarshalYAML (line 1816) | func TestModelConfig_MarshalYAML(t *testing.T) { FILE: backend/pkg/providers/performer.go constant maxRetriesToCallSimpleChain (line 29) | maxRetriesToCallSimpleChain = 3 constant maxRetriesToCallAgentChain (line 30) | maxRetriesToCallAgentChain = 3 constant maxRetriesToCallFunction (line 31) | maxRetriesToCallFunction = 3 constant maxReflectorCallsPerChain (line 32) | maxReflectorCallsPerChain = 3 constant maxGeneralAgentChainIterations (line 33) | maxGeneralAgentChainIterations = 100 constant maxLimitedAgentChainIterations (line 34) | maxLimitedAgentChainIterations = 20 constant maxAgentShutdownIterations (line 35) | maxAgentShutdownIterations = 3 constant maxSoftDetectionsBeforeAbort (line 36) | maxSoftDetectionsBeforeAbort = 4 constant delayBetweenRetries (line 37) | delayBetweenRetries = 5 * time.Second type callResult (line 40) | type callResult struct method performAgentChain (line 48) | func (fp *flowProvider) performAgentChain( method execToolCall (line 261) | func (fp *flowProvider) execToolCall( method callWithRetries (line 386) | func (fp *flowProvider) callWithRetries( method performReflector (line 547) | func (fp *flowProvider) performReflector( method performCallerReflector (line 708) | func (fp *flowProvider) performCallerReflector( method getLastHumanMessage (line 763) | func (fp *flowProvider) getLastHumanMessage(chain []llms.MessageContent)... method processAssistantResult (line 785) | func (fp *flowProvider) processAssistantResult( method updateMsgChain (line 850) | func (fp *flowProvider) updateMsgChain( method updateMsgChainUsage (line 873) | func (fp *flowProvider) updateMsgChainUsage( method storeToGraphiti (line 908) | func (fp *flowProvider) storeToGraphiti( method storeAgentResponseToGraphiti (line 940) | func (fp *flowProvider) storeAgentResponseToGraphiti( method storeToolExecutionToGraphiti (line 1021) | func (fp *flowProvider) storeToolExecutionToGraphiti( FILE: backend/pkg/providers/performers.go method performTaskResultReporter (line 23) | func (fp *flowProvider) performTaskResultReporter( method performSubtasksGenerator (line 94) | func (fp *flowProvider) performSubtasksGenerator( method performSubtasksRefiner (line 175) | func (fp *flowProvider) performSubtasksRefiner( method performCoder (line 364) | func (fp *flowProvider) performCoder( method performInstaller (line 455) | func (fp *flowProvider) performInstaller( method performMemorist (line 540) | func (fp *flowProvider) performMemorist( method performPentester (line 596) | func (fp *flowProvider) performPentester( method performSearcher (line 693) | func (fp *flowProvider) performSearcher( method performEnricher (line 755) | func (fp *flowProvider) performEnricher( method performPlanner (line 812) | func (fp *flowProvider) performPlanner( method performMentor (line 874) | func (fp *flowProvider) performMentor( method performSimpleChain (line 957) | func (fp *flowProvider) performSimpleChain( FILE: backend/pkg/providers/provider.go constant ToolPlaceholder (line 29) | ToolPlaceholder = "Always use your function calling functionality, inste... constant TasksNumberLimit (line 31) | TasksNumberLimit = 15 constant msgGeneratorSizeLimit (line 34) | msgGeneratorSizeLimit = 150 * 1024 constant msgRefinerSizeLimit (line 35) | msgRefinerSizeLimit = 100 * 1024 constant msgReporterSizeLimit (line 36) | msgReporterSizeLimit = 100 * 1024 constant msgSummarizerLimit (line 37) | msgSummarizerLimit = 16 * 1024 constant textTruncateMessage (line 40) | textTruncateMessage = "\n\n[...truncated]" type PerformResult (line 42) | type PerformResult constant PerformResultError (line 45) | PerformResultError PerformResult = iota constant PerformResultWaiting (line 46) | PerformResultWaiting constant PerformResultDone (line 47) | PerformResultDone type StreamMessageChunkType (line 50) | type StreamMessageChunkType constant StreamMessageChunkTypeThinking (line 53) | StreamMessageChunkTypeThinking StreamMessageChunkType = "thinking" constant StreamMessageChunkTypeContent (line 54) | StreamMessageChunkTypeContent StreamMessageChunkType = "content" constant StreamMessageChunkTypeResult (line 55) | StreamMessageChunkTypeResult StreamMessageChunkType = "result" constant StreamMessageChunkTypeFlush (line 56) | StreamMessageChunkTypeFlush StreamMessageChunkType = "flush" constant StreamMessageChunkTypeUpdate (line 57) | StreamMessageChunkTypeUpdate StreamMessageChunkType = "update" type StreamMessageChunk (line 60) | type StreamMessageChunk struct type StreamMessageHandler (line 70) | type StreamMessageHandler type FlowProvider (line 72) | type FlowProvider interface type FlowProviderHandlers (line 102) | type FlowProviderHandlers interface type tasksInfo (line 113) | type tasksInfo struct type subtasksInfo (line 119) | type subtasksInfo struct type flowProvider (line 125) | type flowProvider struct method SetAgentLogProvider (line 160) | func (fp *flowProvider) SetAgentLogProvider(agentLog tools.AgentLogPro... method SetMsgLogProvider (line 167) | func (fp *flowProvider) SetMsgLogProvider(msgLog tools.MsgLogProvider) { method ID (line 174) | func (fp *flowProvider) ID() int64 { method DB (line 181) | func (fp *flowProvider) DB() database.Querier { method Image (line 188) | func (fp *flowProvider) Image() string { method Title (line 195) | func (fp *flowProvider) Title() string { method SetTitle (line 202) | func (fp *flowProvider) SetTitle(title string) { method Language (line 209) | func (fp *flowProvider) Language() string { method ToolCallIDTemplate (line 216) | func (fp *flowProvider) ToolCallIDTemplate() string { method Embedder (line 223) | func (fp *flowProvider) Embedder() embeddings.Embedder { method Executor (line 230) | func (fp *flowProvider) Executor() tools.FlowToolsExecutor { method Prompter (line 237) | func (fp *flowProvider) Prompter() templates.Prompter { method GetTaskTitle (line 244) | func (fp *flowProvider) GetTaskTitle(ctx context.Context, input string... method GenerateSubtasks (line 281) | func (fp *flowProvider) GenerateSubtasks(ctx context.Context, taskID i... method RefineSubtasks (line 362) | func (fp *flowProvider) RefineSubtasks(ctx context.Context, taskID int... method GetTaskResult (line 467) | func (fp *flowProvider) GetTaskResult(ctx context.Context, taskID int6... method PrepareAgentChain (line 558) | func (fp *flowProvider) PrepareAgentChain(ctx context.Context, taskID,... method PerformAgentChain (line 628) | func (fp *flowProvider) PerformAgentChain(ctx context.Context, taskID,... method PutInputToAgentChain (line 846) | func (fp *flowProvider) PutInputToAgentChain(ctx context.Context, msgC... method EnsureChainConsistency (line 864) | func (fp *flowProvider) EnsureChainConsistency(ctx context.Context, ms... method putMsgLog (line 879) | func (fp *flowProvider) putMsgLog( method updateMsgLogResult (line 897) | func (fp *flowProvider) updateMsgLogResult( method putAgentLog (line 914) | func (fp *flowProvider) putAgentLog( FILE: backend/pkg/providers/provider/agents.go constant maxRetries (line 22) | maxRetries = 5 constant sampleCount (line 23) | sampleCount = 5 constant testFunctionName (line 24) | testFunctionName = "get_number" constant patternFunctionName (line 25) | patternFunctionName = "submit_pattern" type attemptRecord (line 31) | type attemptRecord struct function lookupInCache (line 36) | func lookupInCache(provider Provider) (string, bool) { function storeInCache (line 45) | func storeInCache(provider Provider, template string) { function testTemplate (line 53) | func testTemplate( function DetermineToolCallIDTemplate (line 89) | func DetermineToolCallIDTemplate( function collectToolCallIDSamples (line 189) | func collectToolCallIDSamples( function runToolCallIDCollector (line 252) | func runToolCallIDCollector( function detectPatternWithAI (line 340) | func detectPatternWithAI( function fallbackHeuristicDetection (line 437) | func fallbackHeuristicDetection(samples []templates.PatternSample) string { function determineCommonCharset (line 541) | func determineCommonCharset(allCharsPerPosition [][]byte) string { function determineMinimalCharset (line 648) | func determineMinimalCharset(chars []byte) string { FILE: backend/pkg/providers/provider/agents_test.go function TestFallbackHeuristicDetection (line 9) | func TestFallbackHeuristicDetection(t *testing.T) { function TestDetermineMinimalCharset (line 102) | func TestDetermineMinimalCharset(t *testing.T) { function TestDetermineCommonCharset (line 170) | func TestDetermineCommonCharset(t *testing.T) { FILE: backend/pkg/providers/provider/litellm.go function ApplyModelPrefix (line 19) | func ApplyModelPrefix(modelName, prefix string) string { function RemoveModelPrefix (line 28) | func RemoveModelPrefix(modelName, prefix string) string { type modelsResponse (line 36) | type modelsResponse struct type modelInfo (line 41) | type modelInfo struct type fallbackModelInfo (line 50) | type fallbackModelInfo struct type fallbackModelsResponse (line 55) | type fallbackModelsResponse struct type pricingInfo (line 60) | type pricingInfo struct function LoadModelsFromHTTP (line 70) | func LoadModelsFromHTTP(baseURL, apiKey string, httpClient *http.Client,... function parseFallbackModels (line 117) | func parseFallbackModels(models []fallbackModelInfo, prefix string) pcon... function parseFullModels (line 141) | func parseFullModels(models []modelInfo, prefix string) pconfig.ModelsCo... FILE: backend/pkg/providers/provider/litellm_test.go function TestApplyModelPrefix (line 13) | func TestApplyModelPrefix(t *testing.T) { function TestRemoveModelPrefix (line 57) | func TestRemoveModelPrefix(t *testing.T) { function TestLoadModelsFromYAML (line 107) | func TestLoadModelsFromYAML(t *testing.T) { function TestLoadModelsFromHTTP_WithoutPrefix (line 218) | func TestLoadModelsFromHTTP_WithoutPrefix(t *testing.T) { function TestLoadModelsFromHTTP_WithPrefix (line 290) | func TestLoadModelsFromHTTP_WithPrefix(t *testing.T) { function TestLoadModelsFromHTTP_FallbackParsing (line 375) | func TestLoadModelsFromHTTP_FallbackParsing(t *testing.T) { function TestLoadModelsFromHTTP_SkipModelsWithoutTools (line 407) | func TestLoadModelsFromHTTP_SkipModelsWithoutTools(t *testing.T) { function TestLoadModelsFromHTTP_Errors (line 449) | func TestLoadModelsFromHTTP_Errors(t *testing.T) { function TestEndToEndProviderSimulation (line 495) | func TestEndToEndProviderSimulation(t *testing.T) { FILE: backend/pkg/providers/provider/provider.go type ProviderType (line 16) | type ProviderType method String (line 18) | func (p ProviderType) String() string { constant ProviderOpenAI (line 23) | ProviderOpenAI ProviderType = "openai" constant ProviderAnthropic (line 24) | ProviderAnthropic ProviderType = "anthropic" constant ProviderGemini (line 25) | ProviderGemini ProviderType = "gemini" constant ProviderBedrock (line 26) | ProviderBedrock ProviderType = "bedrock" constant ProviderOllama (line 27) | ProviderOllama ProviderType = "ollama" constant ProviderCustom (line 28) | ProviderCustom ProviderType = "custom" constant ProviderDeepSeek (line 29) | ProviderDeepSeek ProviderType = "deepseek" constant ProviderGLM (line 30) | ProviderGLM ProviderType = "glm" constant ProviderKimi (line 31) | ProviderKimi ProviderType = "kimi" constant ProviderQwen (line 32) | ProviderQwen ProviderType = "qwen" type ProviderName (line 35) | type ProviderName method String (line 37) | func (p ProviderName) String() string { constant DefaultProviderNameOpenAI (line 42) | DefaultProviderNameOpenAI ProviderName = ProviderName(ProviderOpenAI) constant DefaultProviderNameAnthropic (line 43) | DefaultProviderNameAnthropic ProviderName = ProviderName(ProviderAnthropic) constant DefaultProviderNameGemini (line 44) | DefaultProviderNameGemini ProviderName = ProviderName(ProviderGemini) constant DefaultProviderNameBedrock (line 45) | DefaultProviderNameBedrock ProviderName = ProviderName(ProviderBedrock) constant DefaultProviderNameOllama (line 46) | DefaultProviderNameOllama ProviderName = ProviderName(ProviderOllama) constant DefaultProviderNameCustom (line 47) | DefaultProviderNameCustom ProviderName = ProviderName(ProviderCustom) constant DefaultProviderNameDeepSeek (line 48) | DefaultProviderNameDeepSeek ProviderName = ProviderName(ProviderDeepSeek) constant DefaultProviderNameGLM (line 49) | DefaultProviderNameGLM ProviderName = ProviderName(ProviderGLM) constant DefaultProviderNameKimi (line 50) | DefaultProviderNameKimi ProviderName = ProviderName(ProviderKimi) constant DefaultProviderNameQwen (line 51) | DefaultProviderNameQwen ProviderName = ProviderName(ProviderQwen) type Provider (line 54) | type Provider interface type ProvidersListNames (line 92) | type ProvidersListNames method Contains (line 98) | func (pln ProvidersListNames) Contains(pname ProviderName) bool { type ProvidersListTypes (line 93) | type ProvidersListTypes method Contains (line 107) | func (plt ProvidersListTypes) Contains(ptype ProviderType) bool { type Providers (line 94) | type Providers method Get (line 116) | func (p Providers) Get(pname ProviderName) (Provider, error) { method ListNames (line 125) | func (p Providers) ListNames() ProvidersListNames { method ListTypes (line 138) | func (p Providers) ListTypes() ProvidersListTypes { type ProvidersConfig (line 95) | type ProvidersConfig FILE: backend/pkg/providers/provider/wrapper.go constant MaxTooManyRequestsRetries (line 22) | MaxTooManyRequestsRetries = 10 constant TooManyRequestsRetryDelay (line 23) | TooManyRequestsRetryDelay = 5 * time.Second type GenerateContentFunc (line 26) | type GenerateContentFunc function buildMetadata (line 32) | func buildMetadata( function wrapMetadataWithStopReason (line 102) | func wrapMetadataWithStopReason(metadata langfuse.Metadata, resp *llms.C... function WrapGenerateFromSinglePrompt (line 119) | func WrapGenerateFromSinglePrompt( function WrapGenerateContent (line 247) | func WrapGenerateContent( function isTooManyRequestsError (line 362) | func isTooManyRequestsError(err error) bool { function getUsageCost (line 387) | func getUsageCost(usage float64) *float64 { function extractToolsFromOptions (line 395) | func extractToolsFromOptions(options ...llms.CallOption) []llms.Tool { FILE: backend/pkg/providers/providers.go constant deltaCallCounter (line 41) | deltaCallCounter = 10000 constant defaultTestParallelWorkersNumber (line 43) | defaultTestParallelWorkersNumber = 16 constant pentestDockerImage (line 45) | pentestDockerImage = "vxcontrol/kali-linux" type ProviderController (line 47) | type ProviderController interface type providerController (line 133) | type providerController struct method NewFlowProvider (line 376) | func (pc *providerController) NewFlowProvider( method LoadFlowProvider (line 474) | func (pc *providerController) LoadFlowProvider( method Embedder (line 523) | func (pc *providerController) Embedder() embeddings.Embedder { method GraphitiClient (line 527) | func (pc *providerController) GraphitiClient() *graphiti.Client { method NewAssistantProvider (line 531) | func (pc *providerController) NewAssistantProvider( method LoadAssistantProvider (line 617) | func (pc *providerController) LoadAssistantProvider( method DefaultProviders (line 669) | func (pc *providerController) DefaultProviders() provider.Providers { method DefaultProvidersConfig (line 673) | func (pc *providerController) DefaultProvidersConfig() provider.Provid... method GetProvider (line 677) | func (pc *providerController) GetProvider( method GetProviders (line 718) | func (pc *providerController) GetProviders( method NewProvider (line 746) | func (pc *providerController) NewProvider(prv database.Provider) (prov... method CreateProvider (line 823) | func (pc *providerController) CreateProvider( method UpdateProvider (line 860) | func (pc *providerController) UpdateProvider( method DeleteProvider (line 906) | func (pc *providerController) DeleteProvider( method TestAgent (line 925) | func (pc *providerController) TestAgent( method TestProvider (line 1030) | func (pc *providerController) TestProvider( method patchProviderConfig (line 1066) | func (pc *providerController) patchProviderConfig( method buildProviderFromConfig (line 1128) | func (pc *providerController) buildProviderFromConfig( function NewProviderController (line 153) | func NewProviderController( function newAtomicInt64 (line 1158) | func newAtomicInt64(seed int64) *atomic.Int64 { FILE: backend/pkg/providers/qwen/qwen.go constant QwenAgentModel (line 22) | QwenAgentModel = "qwen-plus" constant QwenToolCallIDTemplate (line 24) | QwenToolCallIDTemplate = "call_{r:24:h}" function BuildProviderConfig (line 26) | func BuildProviderConfig(configData []byte) (*pconfig.ProviderConfig, er... function DefaultProviderConfig (line 41) | func DefaultProviderConfig() (*pconfig.ProviderConfig, error) { function DefaultModels (line 50) | func DefaultModels() (pconfig.ModelsConfig, error) { type qwenProvider (line 59) | type qwenProvider struct method Type (line 99) | func (p *qwenProvider) Type() provider.ProviderType { method GetRawConfig (line 103) | func (p *qwenProvider) GetRawConfig() []byte { method GetProviderConfig (line 107) | func (p *qwenProvider) GetProviderConfig() *pconfig.ProviderConfig { method GetPriceInfo (line 111) | func (p *qwenProvider) GetPriceInfo(opt pconfig.ProviderOptionsType) *... method GetModels (line 115) | func (p *qwenProvider) GetModels() pconfig.ModelsConfig { method Model (line 119) | func (p *qwenProvider) Model(opt pconfig.ProviderOptionsType) string { method ModelWithPrefix (line 129) | func (p *qwenProvider) ModelWithPrefix(opt pconfig.ProviderOptionsType... method Call (line 133) | func (p *qwenProvider) Call( method CallEx (line 144) | func (p *qwenProvider) CallEx( method CallWithTools (line 158) | func (p *qwenProvider) CallWithTools( method GetUsage (line 174) | func (p *qwenProvider) GetUsage(info map[string]any) pconfig.CallUsage { method GetToolCallIDTemplate (line 178) | func (p *qwenProvider) GetToolCallIDTemplate(ctx context.Context, prom... function New (line 66) | func New(cfg *config.Config, providerConfig *pconfig.ProviderConfig) (pr... FILE: backend/pkg/providers/qwen/qwen_test.go function TestConfigLoading (line 11) | func TestConfigLoading(t *testing.T) { function TestProviderType (line 57) | func TestProviderType(t *testing.T) { function TestModelsLoading (line 78) | func TestModelsLoading(t *testing.T) { function TestModelWithPrefix (line 108) | func TestModelWithPrefix(t *testing.T) { function TestModelWithoutPrefix (line 136) | func TestModelWithoutPrefix(t *testing.T) { function TestMissingAPIKey (line 163) | func TestMissingAPIKey(t *testing.T) { function TestGetUsage (line 179) | func TestGetUsage(t *testing.T) { FILE: backend/pkg/providers/subtask_patch.go function applySubtaskOperations (line 16) | func applySubtaskOperations( function convertSubtaskInfoPatch (line 201) | func convertSubtaskInfoPatch(subtasks []tools.SubtaskInfoPatch) []tools.... function buildIndexMap (line 215) | func buildIndexMap(subtasks []tools.SubtaskInfoPatch) map[int64]int { function calculateInsertIndex (line 226) | func calculateInsertIndex(afterID *int64, idToIdx map[int64]int, length ... function fixSubtaskPatch (line 239) | func fixSubtaskPatch(planned []database.Subtask, patch tools.SubtaskPatc... function ValidateSubtaskPatch (line 340) | func ValidateSubtaskPatch(patch tools.SubtaskPatch) error { FILE: backend/pkg/providers/subtask_patch_test.go function newTestLogger (line 15) | func newTestLogger() *logrus.Entry { function TestApplySubtaskOperations_EmptyPatch (line 21) | func TestApplySubtaskOperations_EmptyPatch(t *testing.T) { function TestApplySubtaskOperations_RemoveOperation (line 43) | func TestApplySubtaskOperations_RemoveOperation(t *testing.T) { function TestApplySubtaskOperations_RemoveMultiple (line 66) | func TestApplySubtaskOperations_RemoveMultiple(t *testing.T) { function TestApplySubtaskOperations_RemoveNonExistent (line 91) | func TestApplySubtaskOperations_RemoveNonExistent(t *testing.T) { function TestApplySubtaskOperations_ModifyTitle (line 111) | func TestApplySubtaskOperations_ModifyTitle(t *testing.T) { function TestApplySubtaskOperations_ModifyDescription (line 134) | func TestApplySubtaskOperations_ModifyDescription(t *testing.T) { function TestApplySubtaskOperations_ModifyBoth (line 155) | func TestApplySubtaskOperations_ModifyBoth(t *testing.T) { function TestApplySubtaskOperations_AddAtBeginning (line 176) | func TestApplySubtaskOperations_AddAtBeginning(t *testing.T) { function TestApplySubtaskOperations_AddAfterSpecific (line 199) | func TestApplySubtaskOperations_AddAfterSpecific(t *testing.T) { function TestApplySubtaskOperations_AddAfterNonExistent (line 224) | func TestApplySubtaskOperations_AddAfterNonExistent(t *testing.T) { function TestApplySubtaskOperations_ReorderToBeginning (line 246) | func TestApplySubtaskOperations_ReorderToBeginning(t *testing.T) { function TestApplySubtaskOperations_ReorderAfterSpecific (line 270) | func TestApplySubtaskOperations_ReorderAfterSpecific(t *testing.T) { function TestApplySubtaskOperations_ComplexScenario (line 294) | func TestApplySubtaskOperations_ComplexScenario(t *testing.T) { function TestApplySubtaskOperations_RemoveAllTasks (line 333) | func TestApplySubtaskOperations_RemoveAllTasks(t *testing.T) { function TestApplySubtaskOperations_EmptyPlanned (line 355) | func TestApplySubtaskOperations_EmptyPlanned(t *testing.T) { function TestApplySubtaskOperations_RemoveMissingID (line 372) | func TestApplySubtaskOperations_RemoveMissingID(t *testing.T) { function TestApplySubtaskOperations_ModifyMissingID (line 391) | func TestApplySubtaskOperations_ModifyMissingID(t *testing.T) { function TestApplySubtaskOperations_ModifyMissingTitleAndDescription (line 413) | func TestApplySubtaskOperations_ModifyMissingTitleAndDescription(t *test... function TestApplySubtaskOperations_ModifyNonExistent (line 432) | func TestApplySubtaskOperations_ModifyNonExistent(t *testing.T) { function TestApplySubtaskOperations_AddMissingTitle (line 455) | func TestApplySubtaskOperations_AddMissingTitle(t *testing.T) { function TestApplySubtaskOperations_AddMissingDescription (line 474) | func TestApplySubtaskOperations_AddMissingDescription(t *testing.T) { function TestApplySubtaskOperations_ReorderMissingID (line 493) | func TestApplySubtaskOperations_ReorderMissingID(t *testing.T) { function TestApplySubtaskOperations_ReorderNonExistent (line 512) | func TestApplySubtaskOperations_ReorderNonExistent(t *testing.T) { function TestApplySubtaskOperations_MultipleAddsWithPositioning (line 532) | func TestApplySubtaskOperations_MultipleAddsWithPositioning(t *testing.T) { function TestValidateSubtaskPatch_ValidOperations (line 558) | func TestValidateSubtaskPatch_ValidOperations(t *testing.T) { function TestValidateSubtaskPatch_InvalidOperations (line 621) | func TestValidateSubtaskPatch_InvalidOperations(t *testing.T) { function TestFixSubtaskPatch (line 704) | func TestFixSubtaskPatch(t *testing.T) { function int64Ptr (line 1022) | func int64Ptr(v int64) *int64 { function TestApplySubtaskOperations_EdgeCases (line 1027) | func TestApplySubtaskOperations_EdgeCases(t *testing.T) { FILE: backend/pkg/providers/tester/config.go type testConfig (line 9) | type testConfig struct type TestOption (line 19) | type TestOption function WithAgentTypes (line 22) | func WithAgentTypes(types ...pconfig.ProviderOptionsType) TestOption { function WithGroups (line 29) | func WithGroups(groups ...testdata.TestGroup) TestOption { function WithStreamingMode (line 36) | func WithStreamingMode(enabled bool) TestOption { function WithVerbose (line 43) | func WithVerbose(enabled bool) TestOption { function WithParallelWorkers (line 50) | func WithParallelWorkers(workers int) TestOption { function WithCustomRegistry (line 59) | func WithCustomRegistry(registry *testdata.TestRegistry) TestOption { function defaultConfig (line 66) | func defaultConfig() *testConfig { function applyOptions (line 77) | func applyOptions(opts []TestOption) *testConfig { FILE: backend/pkg/providers/tester/mock/provider.go type Provider (line 19) | type Provider struct method SetResponses (line 45) | func (p *Provider) SetResponses(configs []ResponseConfig) { method SetDefaultResponse (line 52) | func (p *Provider) SetDefaultResponse(response string) { method SetStreamingDelay (line 57) | func (p *Provider) SetStreamingDelay(delay time.Duration) { method Type (line 62) | func (p *Provider) Type() provider.ProviderType { method Model (line 67) | func (p *Provider) Model(opt pconfig.ProviderOptionsType) string { method ModelWithPrefix (line 72) | func (p *Provider) ModelWithPrefix(opt pconfig.ProviderOptionsType) st... method GetUsage (line 77) | func (p *Provider) GetUsage(info map[string]any) pconfig.CallUsage { method GetModels (line 82) | func (p *Provider) GetModels() pconfig.ModelsConfig { method GetToolCallIDTemplate (line 87) | func (p *Provider) GetToolCallIDTemplate(ctx context.Context, prompter... method Call (line 92) | func (p *Provider) Call(ctx context.Context, opt pconfig.ProviderOptio... method CallEx (line 109) | func (p *Provider) CallEx( method CallWithTools (line 153) | func (p *Provider) CallWithTools( method GetRawConfig (line 210) | func (p *Provider) GetRawConfig() []byte { method GetProviderConfig (line 215) | func (p *Provider) GetProviderConfig() *pconfig.ProviderConfig { method GetPriceInfo (line 220) | func (p *Provider) GetPriceInfo(opt pconfig.ProviderOptionsType) *pcon... method handleResponse (line 228) | func (p *Provider) handleResponse(resp interface{}) (string, error) { method handleContentResponse (line 245) | func (p *Provider) handleContentResponse(resp interface{}) (*llms.Cont... method handleStreamingResponse (line 271) | func (p *Provider) handleStreamingResponse( type ResponseConfig (line 28) | type ResponseConfig struct function NewProvider (line 34) | func NewProvider(providerType provider.ProviderType, modelName string) *... FILE: backend/pkg/providers/tester/result.go type AgentTestResults (line 7) | type AgentTestResults type ProviderTestResults (line 9) | type ProviderTestResults struct FILE: backend/pkg/providers/tester/runner.go type testRequest (line 16) | type testRequest struct type testResponse (line 23) | type testResponse struct function TestProvider (line 30) | func TestProvider(ctx context.Context, prv provider.Provider, opts ...Te... function collectTestRequests (line 60) | func collectTestRequests(registry *testdata.TestRegistry, prv provider.P... function executeTestsParallel (line 109) | func executeTestsParallel(ctx context.Context, requests []testRequest, c... function testWorker (line 144) | func testWorker(ctx context.Context, requests <-chan testRequest, respon... function executeTest (line 176) | func executeTest(ctx context.Context, req testRequest) (testdata.TestRes... function groupResults (line 227) | func groupResults(responses []testResponse) ProviderTestResults { function isTestCompatibleWithAgent (line 265) | func isTestCompatibleWithAgent(testType testdata.TestType, agentType pco... FILE: backend/pkg/providers/tester/runner_test.go function TestTestProvider (line 16) | func TestTestProvider(t *testing.T) { function TestTestProviderWithOptions (line 65) | func TestTestProviderWithOptions(t *testing.T) { function TestTestProviderStreamingMode (line 100) | func TestTestProviderStreamingMode(t *testing.T) { function TestTestProviderJSONTests (line 141) | func TestTestProviderJSONTests(t *testing.T) { function TestTestProviderToolTests (line 179) | func TestTestProviderToolTests(t *testing.T) { function TestTestProviderErrorHandling (line 234) | func TestTestProviderErrorHandling(t *testing.T) { function TestTestProviderGroups (line 271) | func TestTestProviderGroups(t *testing.T) { function TestApplyOptions (line 328) | func TestApplyOptions(t *testing.T) { FILE: backend/pkg/providers/tester/testdata/completion.go type testCaseCompletion (line 14) | type testCaseCompletion struct method ID (line 44) | func (t *testCaseCompletion) ID() string { return... method Name (line 45) | func (t *testCaseCompletion) Name() string { return... method Type (line 46) | func (t *testCaseCompletion) Type() TestType { return... method Group (line 47) | func (t *testCaseCompletion) Group() TestGroup { return... method Streaming (line 48) | func (t *testCaseCompletion) Streaming() bool { return... method Prompt (line 49) | func (t *testCaseCompletion) Prompt() string { return... method Messages (line 50) | func (t *testCaseCompletion) Messages() []llms.MessageContent { return... method Tools (line 51) | func (t *testCaseCompletion) Tools() []llms.Tool { return... method StreamingCallback (line 53) | func (t *testCaseCompletion) StreamingCallback() streaming.Callback { method Execute (line 70) | func (t *testCaseCompletion) Execute(response any, latency time.Durati... function newCompletionTestCase (line 25) | func newCompletionTestCase(def TestDefinition) (TestCase, error) { function containsString (line 135) | func containsString(response, expected string) bool { type stringModifier (line 149) | type stringModifier function tryAllModifierCombinations (line 162) | func tryAllModifierCombinations(response, expected string, startIdx int,... function testWithModifiers (line 180) | func testWithModifiers(response, expected string, modifiers []stringModi... function applyModifiers (line 190) | func applyModifiers(input string, modifiers []stringModifier) string { function contains (line 199) | func contains(haystack, needle string) bool { function normalizeCase (line 205) | func normalizeCase(s string) string { function removeWhitespace (line 209) | func removeWhitespace(s string) string { function removeMarkdown (line 220) | func removeMarkdown(s string) string { function removePunctuation (line 252) | func removePunctuation(s string) string { function removeQuotes (line 283) | func removeQuotes(s string) string { function normalizeNumbers (line 294) | func normalizeNumbers(s string) string { FILE: backend/pkg/providers/tester/testdata/completion_test.go function TestCompletionTestCase (line 11) | func TestCompletionTestCase(t *testing.T) { function TestContainsString (line 104) | func TestContainsString(t *testing.T) { function TestStringModifiers (line 203) | func TestStringModifiers(t *testing.T) { function TestModifierCombinations (line 254) | func TestModifierCombinations(t *testing.T) { FILE: backend/pkg/providers/tester/testdata/json.go type testCaseJSON (line 15) | type testCaseJSON struct method ID (line 50) | func (t *testCaseJSON) ID() string { return t.def... method Name (line 51) | func (t *testCaseJSON) Name() string { return t.def... method Type (line 52) | func (t *testCaseJSON) Type() TestType { return t.def... method Group (line 53) | func (t *testCaseJSON) Group() TestGroup { return t.def... method Streaming (line 54) | func (t *testCaseJSON) Streaming() bool { return t.def... method Prompt (line 55) | func (t *testCaseJSON) Prompt() string { return "" } method Messages (line 56) | func (t *testCaseJSON) Messages() []llms.MessageContent { return t.mes... method Tools (line 57) | func (t *testCaseJSON) Tools() []llms.Tool { return nil } method StreamingCallback (line 59) | func (t *testCaseJSON) StreamingCallback() streaming.Callback { method Execute (line 76) | func (t *testCaseJSON) Execute(response any, latency time.Duration) Te... function newJSONTestCase (line 26) | func newJSONTestCase(def TestDefinition) (TestCase, error) { function extractJSON (line 140) | func extractJSON(content string) string { FILE: backend/pkg/providers/tester/testdata/json_test.go function TestJSONTestCase (line 10) | func TestJSONTestCase(t *testing.T) { function TestJSONValueValidation (line 69) | func TestJSONValueValidation(t *testing.T) { FILE: backend/pkg/providers/tester/testdata/models.go type TestType (line 13) | type TestType constant TestTypeCompletion (line 16) | TestTypeCompletion TestType = "completion" constant TestTypeJSON (line 17) | TestTypeJSON TestType = "json" constant TestTypeTool (line 18) | TestTypeTool TestType = "tool" type TestGroup (line 21) | type TestGroup constant TestGroupBasic (line 24) | TestGroupBasic TestGroup = "basic" constant TestGroupAdvanced (line 25) | TestGroupAdvanced TestGroup = "advanced" constant TestGroupJSON (line 26) | TestGroupJSON TestGroup = "json" constant TestGroupKnowledge (line 27) | TestGroupKnowledge TestGroup = "knowledge" type MessagesData (line 31) | type MessagesData method ToMessageContent (line 34) | func (md MessagesData) ToMessageContent() ([]llms.MessageContent, erro... type TestDefinition (line 101) | type TestDefinition struct type MessageData (line 113) | type MessageData struct type ToolCallData (line 121) | type ToolCallData struct type FunctionCallData (line 127) | type FunctionCallData struct type ToolData (line 132) | type ToolData struct type ExpectedToolCall (line 138) | type ExpectedToolCall struct type TestCase (line 144) | type TestCase interface type TestSuite (line 162) | type TestSuite struct FILE: backend/pkg/providers/tester/testdata/registry.go type TestRegistry (line 14) | type TestRegistry struct method GetTestSuite (line 38) | func (r *TestRegistry) GetTestSuite(group TestGroup) (*TestSuite, erro... method GetTestsByGroup (line 57) | func (r *TestRegistry) GetTestsByGroup(group TestGroup) []TestDefiniti... method GetTestsByType (line 68) | func (r *TestRegistry) GetTestsByType(testType TestType) []TestDefinit... method GetAllTests (line 79) | func (r *TestRegistry) GetAllTests() []TestDefinition { method createTestCase (line 84) | func (r *TestRegistry) createTestCase(def TestDefinition) (TestCase, e... function LoadBuiltinRegistry (line 19) | func LoadBuiltinRegistry() (*TestRegistry, error) { function LoadRegistryFromYAML (line 28) | func LoadRegistryFromYAML(data []byte) (*TestRegistry, error) { FILE: backend/pkg/providers/tester/testdata/registry_test.go function TestRegistryLoad (line 9) | func TestRegistryLoad(t *testing.T) { function TestTestSuiteCreation (line 102) | func TestTestSuiteCreation(t *testing.T) { function TestRegistryErrors (line 191) | func TestRegistryErrors(t *testing.T) { function TestBuiltinRegistry (line 243) | func TestBuiltinRegistry(t *testing.T) { function TestRegistryExtendedMessageTests (line 265) | func TestRegistryExtendedMessageTests(t *testing.T) { FILE: backend/pkg/providers/tester/testdata/result.go type TestResult (line 6) | type TestResult struct FILE: backend/pkg/providers/tester/testdata/tool.go type testCaseTool (line 15) | type testCaseTool struct method ID (line 85) | func (t *testCaseTool) ID() string { return t.def... method Name (line 86) | func (t *testCaseTool) Name() string { return t.def... method Type (line 87) | func (t *testCaseTool) Type() TestType { return t.def... method Group (line 88) | func (t *testCaseTool) Group() TestGroup { return t.def... method Streaming (line 89) | func (t *testCaseTool) Streaming() bool { return t.def... method Prompt (line 90) | func (t *testCaseTool) Prompt() string { return "" } method Messages (line 91) | func (t *testCaseTool) Messages() []llms.MessageContent { return t.mes... method Tools (line 92) | func (t *testCaseTool) Tools() []llms.Tool { return t.too... method StreamingCallback (line 94) | func (t *testCaseTool) StreamingCallback() streaming.Callback { method Execute (line 111) | func (t *testCaseTool) Execute(response any, latency time.Duration) Te... method validateExpectedToolCalls (line 174) | func (t *testCaseTool) validateExpectedToolCalls(toolCalls []llms.Tool... method findMatchingToolCall (line 184) | func (t *testCaseTool) findMatchingToolCall(toolCalls []llms.ToolCall,... method validateFunctionArguments (line 210) | func (t *testCaseTool) validateFunctionArguments(args map[string]any, ... function newToolTestCase (line 27) | func newToolTestCase(def TestDefinition) (TestCase, error) { function validateArgumentValue (line 225) | func validateArgumentValue(key string, actual, expected any) error { function compareNumeric (line 258) | func compareNumeric(actual, expected any) error { function compareFloat (line 285) | func compareFloat(actual, expected any) error { function compareString (line 311) | func compareString(actual, expected any) error { function compareBool (line 343) | func compareBool(actual, expected any) error { function compareSlice (line 364) | func compareSlice(actual any, expected []any) error { function compareMap (line 396) | func compareMap(actual, expected any) error { FILE: backend/pkg/providers/tester/testdata/tool_test.go function TestToolTestCase (line 14) | func TestToolTestCase(t *testing.T) { function TestToolTestCaseMultipleFunctions (line 180) | func TestToolTestCaseMultipleFunctions(t *testing.T) { function TestValidateArgumentValue (line 276) | func TestValidateArgumentValue(t *testing.T) { function TestCompareNumeric (line 353) | func TestCompareNumeric(t *testing.T) { function TestCompareFloat (line 381) | func TestCompareFloat(t *testing.T) { function TestCompareString (line 408) | func TestCompareString(t *testing.T) { function TestCompareBool (line 436) | func TestCompareBool(t *testing.T) { function TestCompareSlice (line 465) | func TestCompareSlice(t *testing.T) { function TestCompareMap (line 492) | func TestCompareMap(t *testing.T) { function TestToolCallEnhancedValidation (line 524) | func TestToolCallEnhancedValidation(t *testing.T) { FILE: backend/pkg/queue/queue.go constant defaultWorkersAmount (line 13) | defaultWorkersAmount = 10 type Queue (line 20) | type Queue interface type message (line 27) | type message struct type queue (line 33) | type queue struct function NewQueue (line 48) | func NewQueue[I, O any](input <-chan I, output chan O, workers int, proc... method Instance (line 72) | func (q *queue[I, O]) Instance() uuid.UUID { method Running (line 76) | func (q *queue[I, O]) Running() bool { method Start (line 83) | func (q *queue[I, O]) Start() error { method Stop (line 112) | func (q *queue[I, O]) Stop() error { method inputType (line 127) | func (q *queue[I, O]) inputType() string { method outputType (line 131) | func (q *queue[I, O]) outputType() string { method worker (line 135) | func (q *queue[I, O]) worker(wid int) { method reader (line 165) | func (q *queue[I, O]) reader() { FILE: backend/pkg/queue/queue_test.go function TestQueue_StartStop (line 11) | func TestQueue_StartStop(t *testing.T) { function TestQueue_CloseInputChannel (line 41) | func TestQueue_CloseInputChannel(t *testing.T) { function TestQueue_Process (line 70) | func TestQueue_Process(t *testing.T) { function TestQueue_ProcessOrdering (line 96) | func TestQueue_ProcessOrdering(t *testing.T) { function BenchmarkQueue_DefaultWorkers (line 132) | func BenchmarkQueue_DefaultWorkers(b *testing.B) { function BenchmarkQueue_EightWorkers (line 136) | func BenchmarkQueue_EightWorkers(b *testing.B) { function BenchmarkQueue_FourWorkers (line 140) | func BenchmarkQueue_FourWorkers(b *testing.B) { function BenchmarkQueue_ThreeWorkers (line 144) | func BenchmarkQueue_ThreeWorkers(b *testing.B) { function BenchmarkQueue_TwoWorkers (line 148) | func BenchmarkQueue_TwoWorkers(b *testing.B) { function BenchmarkQueue_OneWorker (line 152) | func BenchmarkQueue_OneWorker(b *testing.B) { function BenchmarkQueue_OriginalSingleGoroutine (line 156) | func BenchmarkQueue_OriginalSingleGoroutine(b *testing.B) { function simpleBenchmark (line 193) | func simpleBenchmark(b *testing.B, workers int) { FILE: backend/pkg/schema/schema.go type IValid (line 18) | type IValid interface function scanFromJSON (line 22) | func scanFromJSON(input interface{}, output interface{}) error { function deepValidator (line 34) | func deepValidator() validator.Func { function init (line 46) | func init() { type Schema (line 56) | type Schema struct method getValidator (line 62) | func (sh Schema) getValidator() (*gojsonschema.Schema, error) { method validate (line 76) | func (sh Schema) validate(l gojsonschema.JSONLoader) (*gojsonschema.Re... method GetValidator (line 87) | func (sh Schema) GetValidator() (*gojsonschema.Schema, error) { method ValidateString (line 92) | func (sh Schema) ValidateString(doc string) (*gojsonschema.Result, err... method ValidateBytes (line 98) | func (sh Schema) ValidateBytes(doc []byte) (*gojsonschema.Result, erro... method ValidateGo (line 104) | func (sh Schema) ValidateGo(doc interface{}) (*gojsonschema.Result, er... method Valid (line 110) | func (sh Schema) Valid() error { method Value (line 121) | func (sh Schema) Value() (driver.Value, error) { method Scan (line 127) | func (sh *Schema) Scan(input interface{}) error { type Definitions (line 134) | type Definitions type Type (line 137) | type Type struct method MarshalJSON (line 183) | func (t Type) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 207) | func (t *Type) UnmarshalJSON(input []byte) error { FILE: backend/pkg/server/auth/api_token_cache.go type tokenCacheEntry (line 13) | type tokenCacheEntry struct type TokenCache (line 21) | type TokenCache struct method SetTTL (line 36) | func (tc *TokenCache) SetTTL(ttl time.Duration) { method GetStatus (line 41) | func (tc *TokenCache) GetStatus(tokenID string) (models.TokenStatus, [... method Invalidate (line 97) | func (tc *TokenCache) Invalidate(tokenID string) { method InvalidateUser (line 102) | func (tc *TokenCache) InvalidateUser(userID uint64) { method InvalidateAll (line 116) | func (tc *TokenCache) InvalidateAll() { function NewTokenCache (line 28) | func NewTokenCache(db *gorm.DB) *TokenCache { FILE: backend/pkg/server/auth/api_token_cache_test.go function TestTokenCache_GetStatus (line 15) | func TestTokenCache_GetStatus(t *testing.T) { function TestTokenCache_Invalidate (line 55) | func TestTokenCache_Invalidate(t *testing.T) { function TestTokenCache_InvalidateUser (line 98) | func TestTokenCache_InvalidateUser(t *testing.T) { function TestTokenCache_Expiration (line 149) | func TestTokenCache_Expiration(t *testing.T) { function TestTokenCache_PrivilegesByRole (line 189) | func TestTokenCache_PrivilegesByRole(t *testing.T) { function TestTokenCache_NegativeCaching (line 245) | func TestTokenCache_NegativeCaching(t *testing.T) { function TestTokenCache_NegativeCachingExpiration (line 289) | func TestTokenCache_NegativeCachingExpiration(t *testing.T) { FILE: backend/pkg/server/auth/api_token_id.go constant Base62Chars (line 10) | Base62Chars = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrs... constant TokenIDLength (line 11) | TokenIDLength = 10 function GenerateTokenID (line 15) | func GenerateTokenID() (string, error) { FILE: backend/pkg/server/auth/api_token_id_test.go function TestGenerateTokenID (line 12) | func TestGenerateTokenID(t *testing.T) { function TestGenerateTokenIDFormat (line 34) | func TestGenerateTokenIDFormat(t *testing.T) { FILE: backend/pkg/server/auth/api_token_jwt.go function MakeAPIToken (line 13) | func MakeAPIToken(globalSalt string, claims jwt.Claims) (string, error) { function MakeAPITokenClaims (line 23) | func MakeAPITokenClaims(tokenID, uhash string, uid, rid, ttl uint64) jwt... function ValidateAPIToken (line 38) | func ValidateAPIToken(tokenString, globalSalt string) (*models.APITokenC... FILE: backend/pkg/server/auth/api_token_test.go function setupTestDB (line 19) | func setupTestDB(t *testing.T) *gorm.DB { function TestValidateAPIToken (line 137) | func TestValidateAPIToken(t *testing.T) { function TestAPITokenAuthentication_CacheExpiration (line 240) | func TestAPITokenAuthentication_CacheExpiration(t *testing.T) { function TestAPITokenAuthentication_DefaultSalt (line 298) | func TestAPITokenAuthentication_DefaultSalt(t *testing.T) { function TestAPITokenAuthentication_SoftDelete (line 364) | func TestAPITokenAuthentication_SoftDelete(t *testing.T) { function TestAPITokenAuthentication_AlgNoneAttack (line 416) | func TestAPITokenAuthentication_AlgNoneAttack(t *testing.T) { function TestAPITokenAuthentication_LegacyProtoToken (line 452) | func TestAPITokenAuthentication_LegacyProtoToken(t *testing.T) { FILE: backend/pkg/server/auth/auth_middleware.go type authResult (line 19) | type authResult constant authResultOk (line 22) | authResultOk authResult = iota constant authResultSkip (line 23) | authResultSkip constant authResultFail (line 24) | authResultFail constant authResultAbort (line 25) | authResultAbort type AuthMiddleware (line 28) | type AuthMiddleware struct method AuthUserRequired (line 42) | func (p *AuthMiddleware) AuthUserRequired(c *gin.Context) { method AuthTokenRequired (line 46) | func (p *AuthMiddleware) AuthTokenRequired(c *gin.Context) { method TryAuth (line 50) | func (p *AuthMiddleware) TryAuth(c *gin.Context) { method tryAuth (line 54) | func (p *AuthMiddleware) tryAuth( method tryUserCookieAuthentication (line 82) | func (p *AuthMiddleware) tryUserCookieAuthentication(c *gin.Context) (... method tryProtoTokenAuthentication (line 164) | func (p *AuthMiddleware) tryProtoTokenAuthentication(c *gin.Context) (... function NewAuthMiddleware (line 34) | func NewAuthMiddleware(baseURL, globalSalt string, tokenCache *TokenCach... constant PrivilegeAutomation (line 162) | PrivilegeAutomation = "pentagi.automation" FILE: backend/pkg/server/auth/auth_middleware_test.go function TestAuthTokenProtoRequiredAuthWithCookie (line 27) | func TestAuthTokenProtoRequiredAuthWithCookie(t *testing.T) { function TestAuthTokenProtoRequiredAuthWithToken (line 65) | func TestAuthTokenProtoRequiredAuthWithToken(t *testing.T) { function TestAuthRequiredAuthWithCookie (line 111) | func TestAuthRequiredAuthWithCookie(t *testing.T) { type testServer (line 139) | type testServer struct method Authorize (line 227) | func (s *testServer) Authorize(t *testing.T, privileges []string) { method GetToken (line 243) | func (s *testServer) GetToken(t *testing.T) string { method SetSessionCheckFunc (line 256) | func (s *testServer) SetSessionCheckFunc(f func(t *testing.T, c *gin.C... method Unauthorize (line 260) | func (s *testServer) Unauthorize(t *testing.T) { method TestCall (line 273) | func (s *testServer) TestCall(t *testing.T, token ...string) (string, ... method TestCallWithData (line 292) | func (s *testServer) TestCallWithData(t *testing.T, data string) (stri... method Called (line 308) | func (s *testServer) Called(id string) bool { method CallAndGetStatus (line 313) | func (s *testServer) CallAndGetStatus(t *testing.T, token ...string) b... function newTestServer (line 148) | func newTestServer(t *testing.T, testEndpoint string, db *gorm.DB, middl... function setTestSession (line 320) | func setTestSession(t *testing.T, c *gin.Context, privileges []string, e... FILE: backend/pkg/server/auth/integration_test.go function TestEndToEndAPITokenFlow (line 18) | func TestEndToEndAPITokenFlow(t *testing.T) { function TestAPIToken_RoleIsolation (line 88) | func TestAPIToken_RoleIsolation(t *testing.T) { function TestAPIToken_SignatureVerification (line 143) | func TestAPIToken_SignatureVerification(t *testing.T) { function TestAPIToken_CacheInvalidation (line 206) | func TestAPIToken_CacheInvalidation(t *testing.T) { function TestAPIToken_ConcurrentAccess (line 248) | func TestAPIToken_ConcurrentAccess(t *testing.T) { function TestAPIToken_JSONStructure (line 321) | func TestAPIToken_JSONStructure(t *testing.T) { function TestAPIToken_Expiration (line 355) | func TestAPIToken_Expiration(t *testing.T) { function TestDualAuthentication (line 413) | func TestDualAuthentication(t *testing.T) { function TestSecurityAudit_ClaimsInJWT (line 467) | func TestSecurityAudit_ClaimsInJWT(t *testing.T) { function TestSecurityAudit_TokenIDUniqueness (line 508) | func TestSecurityAudit_TokenIDUniqueness(t *testing.T) { function TestSecurityAudit_SaltIsolation (line 530) | func TestSecurityAudit_SaltIsolation(t *testing.T) { function TestAPIToken_ContextSetup (line 551) | func TestAPIToken_ContextSetup(t *testing.T) { function TestUserHashValidation_CookieAuth (line 629) | func TestUserHashValidation_CookieAuth(t *testing.T) { function TestUserHashValidation_TokenAuth (line 696) | func TestUserHashValidation_TokenAuth(t *testing.T) { function TestUserHashValidation_CrossInstallation (line 789) | func TestUserHashValidation_CrossInstallation(t *testing.T) { FILE: backend/pkg/server/auth/permissions.go function getPrms (line 12) | func getPrms(c *gin.Context) ([]string, error) { function PrivilegesRequired (line 20) | func PrivilegesRequired(privs ...string) gin.HandlerFunc { function LookupPerm (line 44) | func LookupPerm(prm []string, perm string) bool { FILE: backend/pkg/server/auth/permissions_test.go function TestPrivilegesRequired (line 11) | func TestPrivilegesRequired(t *testing.T) { FILE: backend/pkg/server/auth/session.go constant pbkdf2Iterations (line 17) | pbkdf2Iterations = 210000 constant jwtKeyLength (line 18) | jwtKeyLength = 32 constant authKeyLength (line 19) | authKeyLength = 64 constant encKeyLength (line 20) | encKeyLength = 32 function MakeCookieStoreKey (line 24) | func MakeCookieStoreKey(globalSalt string) [][]byte { function MakeJWTSigningKey (line 53) | func MakeJWTSigningKey(globalSalt string) []byte { FILE: backend/pkg/server/auth/session_test.go function TestMakeJWTSigningKey (line 10) | func TestMakeJWTSigningKey(t *testing.T) { function TestMakeCookieStoreKey (line 33) | func TestMakeCookieStoreKey(t *testing.T) { function TestMakeJWTSigningKeyDifferentFromCookieKey (line 52) | func TestMakeJWTSigningKeyDifferentFromCookieKey(t *testing.T) { FILE: backend/pkg/server/auth/users_cache.go type userCacheEntry (line 13) | type userCacheEntry struct type UserCache (line 21) | type UserCache struct method SetTTL (line 36) | func (uc *UserCache) SetTTL(ttl time.Duration) { method GetUserHash (line 41) | func (uc *UserCache) GetUserHash(userID uint64) (string, models.UserSt... method Invalidate (line 82) | func (uc *UserCache) Invalidate(userID uint64) { method InvalidateAll (line 87) | func (uc *UserCache) InvalidateAll() { function NewUserCache (line 28) | func NewUserCache(db *gorm.DB) *UserCache { FILE: backend/pkg/server/auth/users_cache_test.go function setupUserTestDB (line 18) | func setupUserTestDB(t *testing.T) *gorm.DB { function TestUserCache_GetUserHash (line 58) | func TestUserCache_GetUserHash(t *testing.T) { function TestUserCache_Invalidate (line 94) | func TestUserCache_Invalidate(t *testing.T) { function TestUserCache_Expiration (line 137) | func TestUserCache_Expiration(t *testing.T) { function TestUserCache_UserStatuses (line 176) | func TestUserCache_UserStatuses(t *testing.T) { function TestUserCache_DeletedUser (line 225) | func TestUserCache_DeletedUser(t *testing.T) { function TestUserCache_ConcurrentAccess (line 261) | func TestUserCache_ConcurrentAccess(t *testing.T) { function TestUserCache_InvalidateAll (line 325) | func TestUserCache_InvalidateAll(t *testing.T) { function TestUserCache_NegativeCaching (line 365) | func TestUserCache_NegativeCaching(t *testing.T) { function TestUserCache_NegativeCachingExpiration (line 409) | func TestUserCache_NegativeCachingExpiration(t *testing.T) { FILE: backend/pkg/server/context/context.go function GetInt64 (line 9) | func GetInt64(c *gin.Context, key string) (int64, bool) { function GetUint64 (line 20) | func GetUint64(c *gin.Context, key string) (uint64, bool) { function GetString (line 31) | func GetString(c *gin.Context, key string) (string, bool) { function GetStringArray (line 42) | func GetStringArray(c *gin.Context, key string) ([]string, bool) { function GetStringFromSession (line 52) | func GetStringFromSession(c *gin.Context, key string) (string, bool) { FILE: backend/pkg/server/context/context_test.go function init (line 14) | func init() { function TestGetInt64 (line 18) | func TestGetInt64(t *testing.T) { function TestGetUint64 (line 99) | func TestGetUint64(t *testing.T) { function TestGetString (line 173) | func TestGetString(t *testing.T) { function TestGetStringArray (line 247) | func TestGetStringArray(t *testing.T) { function TestGetStringFromSession (line 335) | func TestGetStringFromSession(t *testing.T) { function TestMultipleValuesInContext (line 443) | func TestMultipleValuesInContext(t *testing.T) { function TestContextOverwrite (line 471) | func TestContextOverwrite(t *testing.T) { function TestContextTypeChange (line 489) | func TestContextTypeChange(t *testing.T) { FILE: backend/pkg/server/docs/docs.go constant docTemplate (line 7) | docTemplate = `{ function init (line 7755) | func init() { FILE: backend/pkg/server/logger/logger.go function FromContext (line 15) | func FromContext(c *gin.Context) *logrus.Entry { function TraceEnabled (line 19) | func TraceEnabled() bool { function WithGinLogger (line 23) | func WithGinLogger(service string) gin.HandlerFunc { function WithGqlLogger (line 66) | func WithGqlLogger(service string) func(ctx context.Context, next graphq... FILE: backend/pkg/server/middleware.go function localUserRequired (line 11) | func localUserRequired() gin.HandlerFunc { function noCacheMiddleware (line 29) | func noCacheMiddleware() gin.HandlerFunc { FILE: backend/pkg/server/models/agentlogs.go type Agentlog (line 11) | type Agentlog struct method TableName (line 24) | func (ml *Agentlog) TableName() string { method Valid (line 29) | func (ml Agentlog) Valid() error { method Validate (line 34) | func (ml Agentlog) Validate(db *gorm.DB) { FILE: backend/pkg/server/models/analytics.go type UsageStatsPeriod (line 11) | type UsageStatsPeriod method String (line 19) | func (p UsageStatsPeriod) String() string { method Valid (line 24) | func (p UsageStatsPeriod) Valid() error { method Validate (line 36) | func (p UsageStatsPeriod) Validate(db *gorm.DB) { constant UsageStatsPeriodWeek (line 14) | UsageStatsPeriodWeek UsageStatsPeriod = "week" constant UsageStatsPeriodMonth (line 15) | UsageStatsPeriodMonth UsageStatsPeriod = "month" constant UsageStatsPeriodQuarter (line 16) | UsageStatsPeriodQuarter UsageStatsPeriod = "quarter" type UsageStats (line 46) | type UsageStats struct method Valid (line 56) | func (u UsageStats) Valid() error { method Validate (line 61) | func (u UsageStats) Validate(db *gorm.DB) { type ToolcallsStats (line 69) | type ToolcallsStats struct method Valid (line 75) | func (t ToolcallsStats) Valid() error { method Validate (line 80) | func (t ToolcallsStats) Validate(db *gorm.DB) { type FlowsStats (line 88) | type FlowsStats struct method Valid (line 96) | func (f FlowsStats) Valid() error { method Validate (line 101) | func (f FlowsStats) Validate(db *gorm.DB) { type FlowStats (line 109) | type FlowStats struct method Valid (line 116) | func (f FlowStats) Valid() error { method Validate (line 121) | func (f FlowStats) Validate(db *gorm.DB) { type DailyUsageStats (line 131) | type DailyUsageStats struct method Valid (line 137) | func (d DailyUsageStats) Valid() error { method Validate (line 148) | func (d DailyUsageStats) Validate(db *gorm.DB) { type DailyToolcallsStats (line 156) | type DailyToolcallsStats struct method Valid (line 162) | func (d DailyToolcallsStats) Valid() error { method Validate (line 173) | func (d DailyToolcallsStats) Validate(db *gorm.DB) { type DailyFlowsStats (line 181) | type DailyFlowsStats struct method Valid (line 187) | func (d DailyFlowsStats) Valid() error { method Validate (line 198) | func (d DailyFlowsStats) Validate(db *gorm.DB) { type ProviderUsageStats (line 208) | type ProviderUsageStats struct method Valid (line 214) | func (p ProviderUsageStats) Valid() error { method Validate (line 225) | func (p ProviderUsageStats) Validate(db *gorm.DB) { type ModelUsageStats (line 233) | type ModelUsageStats struct method Valid (line 240) | func (m ModelUsageStats) Valid() error { method Validate (line 251) | func (m ModelUsageStats) Validate(db *gorm.DB) { type AgentTypeUsageStats (line 259) | type AgentTypeUsageStats struct method Valid (line 265) | func (a AgentTypeUsageStats) Valid() error { method Validate (line 276) | func (a AgentTypeUsageStats) Validate(db *gorm.DB) { type FunctionToolcallsStats (line 284) | type FunctionToolcallsStats struct method Valid (line 293) | func (f FunctionToolcallsStats) Valid() error { method Validate (line 298) | func (f FunctionToolcallsStats) Validate(db *gorm.DB) { type SubtaskExecutionStats (line 308) | type SubtaskExecutionStats struct method Valid (line 316) | func (s SubtaskExecutionStats) Valid() error { method Validate (line 321) | func (s SubtaskExecutionStats) Validate(db *gorm.DB) { type TaskExecutionStats (line 329) | type TaskExecutionStats struct method Valid (line 338) | func (t TaskExecutionStats) Valid() error { method Validate (line 351) | func (t TaskExecutionStats) Validate(db *gorm.DB) { type FlowExecutionStats (line 359) | type FlowExecutionStats struct method Valid (line 369) | func (f FlowExecutionStats) Valid() error { method Validate (line 382) | func (f FlowExecutionStats) Validate(db *gorm.DB) { type SystemUsageResponse (line 392) | type SystemUsageResponse struct method Valid (line 403) | func (s SystemUsageResponse) Valid() error { method Validate (line 446) | func (s SystemUsageResponse) Validate(db *gorm.DB) { type PeriodUsageResponse (line 454) | type PeriodUsageResponse struct method Valid (line 463) | func (p PeriodUsageResponse) Valid() error { method Validate (line 491) | func (p PeriodUsageResponse) Validate(db *gorm.DB) { type FlowUsageResponse (line 499) | type FlowUsageResponse struct method Valid (line 509) | func (f FlowUsageResponse) Valid() error { method Validate (line 542) | func (f FlowUsageResponse) Validate(db *gorm.DB) { FILE: backend/pkg/server/models/api_tokens.go type TokenStatus (line 12) | type TokenStatus method String (line 20) | func (s TokenStatus) String() string { method Valid (line 25) | func (s TokenStatus) Valid() error { method Validate (line 35) | func (s TokenStatus) Validate(db *gorm.DB) { constant TokenStatusActive (line 15) | TokenStatusActive TokenStatus = "active" constant TokenStatusRevoked (line 16) | TokenStatusRevoked TokenStatus = "revoked" constant TokenStatusExpired (line 17) | TokenStatusExpired TokenStatus = "expired" type APIToken (line 43) | type APIToken struct method TableName (line 57) | func (at *APIToken) TableName() string { method Valid (line 62) | func (at APIToken) Valid() error { method Validate (line 70) | func (at APIToken) Validate(db *gorm.DB) { type APITokenWithSecret (line 78) | type APITokenWithSecret struct method Valid (line 84) | func (ats APITokenWithSecret) Valid() error { type CreateAPITokenRequest (line 93) | type CreateAPITokenRequest struct method Valid (line 99) | func (catr CreateAPITokenRequest) Valid() error { type UpdateAPITokenRequest (line 105) | type UpdateAPITokenRequest struct method Valid (line 111) | func (uatr UpdateAPITokenRequest) Valid() error { type APITokenClaims (line 122) | type APITokenClaims struct method Valid (line 131) | func (atc APITokenClaims) Valid() error { FILE: backend/pkg/server/models/assistantlogs.go type Assistantlog (line 11) | type Assistantlog struct method TableName (line 24) | func (al *Assistantlog) TableName() string { method Valid (line 29) | func (al Assistantlog) Valid() error { method Validate (line 34) | func (al Assistantlog) Validate(db *gorm.DB) { FILE: backend/pkg/server/models/assistants.go type AssistantStatus (line 11) | type AssistantStatus method String (line 21) | func (s AssistantStatus) String() string { method Valid (line 26) | func (s AssistantStatus) Valid() error { method Validate (line 40) | func (s AssistantStatus) Validate(db *gorm.DB) { constant AssistantStatusCreated (line 14) | AssistantStatusCreated AssistantStatus = "created" constant AssistantStatusRunning (line 15) | AssistantStatusRunning AssistantStatus = "running" constant AssistantStatusWaiting (line 16) | AssistantStatusWaiting AssistantStatus = "waiting" constant AssistantStatusFinished (line 17) | AssistantStatusFinished AssistantStatus = "finished" constant AssistantStatusFailed (line 18) | AssistantStatusFailed AssistantStatus = "failed" type Assistant (line 48) | type Assistant struct method TableName (line 68) | func (a *Assistant) TableName() string { method Valid (line 73) | func (a Assistant) Valid() error { method Validate (line 78) | func (a Assistant) Validate(db *gorm.DB) { type CreateAssistant (line 86) | type CreateAssistant struct method Valid (line 94) | func (ca CreateAssistant) Valid() error { type PatchAssistant (line 100) | type PatchAssistant struct method Valid (line 107) | func (pa PatchAssistant) Valid() error { type AssistantFlow (line 113) | type AssistantFlow struct method Valid (line 119) | func (af AssistantFlow) Valid() error { method Validate (line 127) | func (af AssistantFlow) Validate(db *gorm.DB) { FILE: backend/pkg/server/models/containers.go type ContainerStatus (line 10) | type ContainerStatus method String (line 20) | func (s ContainerStatus) String() string { method Valid (line 25) | func (s ContainerStatus) Valid() error { method Validate (line 39) | func (s ContainerStatus) Validate(db *gorm.DB) { constant ContainerStatusStarting (line 13) | ContainerStatusStarting ContainerStatus = "starting" constant ContainerStatusRunning (line 14) | ContainerStatusRunning ContainerStatus = "running" constant ContainerStatusStopped (line 15) | ContainerStatusStopped ContainerStatus = "stopped" constant ContainerStatusDeleted (line 16) | ContainerStatusDeleted ContainerStatus = "deleted" constant ContainerStatusFailed (line 17) | ContainerStatusFailed ContainerStatus = "failed" type ContainerType (line 45) | type ContainerType method String (line 52) | func (t ContainerType) String() string { method Valid (line 57) | func (t ContainerType) Valid() error { method Validate (line 67) | func (t ContainerType) Validate(db *gorm.DB) { constant ContainerTypePrimary (line 48) | ContainerTypePrimary ContainerType = "primary" constant ContainerTypeSecondary (line 49) | ContainerTypeSecondary ContainerType = "secondary" type Container (line 75) | type Container struct method TableName (line 89) | func (c *Container) TableName() string { method Valid (line 94) | func (c Container) Valid() error { method Validate (line 99) | func (c Container) Validate(db *gorm.DB) { FILE: backend/pkg/server/models/flows.go type FlowStatus (line 12) | type FlowStatus method String (line 22) | func (s FlowStatus) String() string { method Valid (line 27) | func (s FlowStatus) Valid() error { method Validate (line 41) | func (s FlowStatus) Validate(db *gorm.DB) { constant FlowStatusCreated (line 15) | FlowStatusCreated FlowStatus = "created" constant FlowStatusRunning (line 16) | FlowStatusRunning FlowStatus = "running" constant FlowStatusWaiting (line 17) | FlowStatusWaiting FlowStatus = "waiting" constant FlowStatusFinished (line 18) | FlowStatusFinished FlowStatus = "finished" constant FlowStatusFailed (line 19) | FlowStatusFailed FlowStatus = "failed" type Flow (line 49) | type Flow struct method TableName (line 67) | func (f *Flow) TableName() string { method Valid (line 72) | func (f Flow) Valid() error { method Validate (line 77) | func (f Flow) Validate(db *gorm.DB) { type CreateFlow (line 85) | type CreateFlow struct method Valid (line 92) | func (cf CreateFlow) Valid() error { type PatchFlow (line 98) | type PatchFlow struct method Valid (line 105) | func (pf PatchFlow) Valid() error { type FlowTasksSubtasks (line 111) | type FlowTasksSubtasks struct method TableName (line 117) | func (fts *FlowTasksSubtasks) TableName() string { method Valid (line 122) | func (fts FlowTasksSubtasks) Valid() error { method Validate (line 132) | func (fts FlowTasksSubtasks) Validate(db *gorm.DB) { type FlowContainers (line 140) | type FlowContainers struct method TableName (line 146) | func (fc *FlowContainers) TableName() string { method Valid (line 151) | func (fc FlowContainers) Valid() error { method Validate (line 161) | func (fc FlowContainers) Validate(db *gorm.DB) { FILE: backend/pkg/server/models/init.go constant solidRegexString (line 15) | solidRegexString = "^[a-z0-9_\\-]+$" constant clDateRegexString (line 16) | clDateRegexString = "^[0-9]{2}[.-][0-9]{2}[.-][0-9]{4}$" constant semverRegexString (line 17) | semverRegexString = "^[0-9]+\\.[0-9]+(\\.[0-9]+)?$" constant semverexRegexString (line 18) | semverexRegexString = "^(v)?[0-9]+\\.[0-9]+(\\.[0-9]+)?(\\.[0-9]+)?(-[a-... function GetValidator (line 25) | func GetValidator() *validator.Validate { type IValid (line 30) | type IValid interface function templateValidatorString (line 34) | func templateValidatorString(regexpString string) validator.Func { function strongPasswordValidatorString (line 68) | func strongPasswordValidatorString() validator.Func { function emailValidatorString (line 90) | func emailValidatorString() validator.Func { function oauthMinScope (line 111) | func oauthMinScope() validator.Func { function deepValidator (line 134) | func deepValidator() validator.Func { function getMapKeys (line 146) | func getMapKeys(kvmap interface{}) string { function mismatchLenError (line 159) | func mismatchLenError(tag string, wants, current int) string { function keyIsNotExtistInMap (line 163) | func keyIsNotExtistInMap(tag, key string, kvmap interface{}) string { function keyIsNotExtistInSlice (line 167) | func keyIsNotExtistInSlice(tag, key string, klist interface{}) string { function keysAreNotExtistInSlice (line 172) | func keysAreNotExtistInSlice(tag, lkeys, rkeys interface{}) string { function contextError (line 178) | func contextError(tag string, id string, ctx interface{}) string { function caughtValidationError (line 183) | func caughtValidationError(tag string, err error) string { function caughtSchemaValidationError (line 187) | func caughtSchemaValidationError(tag string, errs []gojsonschema.ResultE... function scanFromJSON (line 196) | func scanFromJSON(input interface{}, output interface{}) error { function init (line 208) | func init() { FILE: backend/pkg/server/models/msgchains.go type MsgchainType (line 9) | type MsgchainType method Scan (line 29) | func (e *MsgchainType) Scan(src interface{}) error { method String (line 41) | func (s MsgchainType) String() string { method Valid (line 46) | func (ml MsgchainType) Valid() error { method Validate (line 63) | func (ml MsgchainType) Validate(db *gorm.DB) { constant MsgchainTypePrimaryAgent (line 12) | MsgchainTypePrimaryAgent MsgchainType = "primary_agent" constant MsgchainTypeReporter (line 13) | MsgchainTypeReporter MsgchainType = "reporter" constant MsgchainTypeGenerator (line 14) | MsgchainTypeGenerator MsgchainType = "generator" constant MsgchainTypeRefiner (line 15) | MsgchainTypeRefiner MsgchainType = "refiner" constant MsgchainTypeReflector (line 16) | MsgchainTypeReflector MsgchainType = "reflector" constant MsgchainTypeEnricher (line 17) | MsgchainTypeEnricher MsgchainType = "enricher" constant MsgchainTypeAdviser (line 18) | MsgchainTypeAdviser MsgchainType = "adviser" constant MsgchainTypeCoder (line 19) | MsgchainTypeCoder MsgchainType = "coder" constant MsgchainTypeMemorist (line 20) | MsgchainTypeMemorist MsgchainType = "memorist" constant MsgchainTypeSearcher (line 21) | MsgchainTypeSearcher MsgchainType = "searcher" constant MsgchainTypeInstaller (line 22) | MsgchainTypeInstaller MsgchainType = "installer" constant MsgchainTypePentester (line 23) | MsgchainTypePentester MsgchainType = "pentester" constant MsgchainTypeSummarizer (line 24) | MsgchainTypeSummarizer MsgchainType = "summarizer" constant MsgchainTypeToolCallFixer (line 25) | MsgchainTypeToolCallFixer MsgchainType = "tool_call_fixer" constant MsgchainTypeAssistant (line 26) | MsgchainTypeAssistant MsgchainType = "assistant" FILE: backend/pkg/server/models/msglogs.go type MsglogType (line 10) | type MsglogType method String (line 26) | func (s MsglogType) String() string { method Valid (line 31) | func (s MsglogType) Valid() error { method Validate (line 44) | func (s MsglogType) Validate(db *gorm.DB) { constant MsglogTypeAnswer (line 13) | MsglogTypeAnswer MsglogType = "answer" constant MsglogTypeReport (line 14) | MsglogTypeReport MsglogType = "report" constant MsglogTypeThoughts (line 15) | MsglogTypeThoughts MsglogType = "thoughts" constant MsglogTypeBrowser (line 16) | MsglogTypeBrowser MsglogType = "browser" constant MsglogTypeTerminal (line 17) | MsglogTypeTerminal MsglogType = "terminal" constant MsglogTypeFile (line 18) | MsglogTypeFile MsglogType = "file" constant MsglogTypeSearch (line 19) | MsglogTypeSearch MsglogType = "search" constant MsglogTypeAdvice (line 20) | MsglogTypeAdvice MsglogType = "advice" constant MsglogTypeAsk (line 21) | MsglogTypeAsk MsglogType = "ask" constant MsglogTypeInput (line 22) | MsglogTypeInput MsglogType = "input" constant MsglogTypeDone (line 23) | MsglogTypeDone MsglogType = "done" type MsglogResultFormat (line 50) | type MsglogResultFormat method String (line 58) | func (s MsglogResultFormat) String() string { method Valid (line 63) | func (s MsglogResultFormat) Valid() error { method Validate (line 75) | func (s MsglogResultFormat) Validate(db *gorm.DB) { constant MsglogResultFormatPlain (line 53) | MsglogResultFormatPlain MsglogResultFormat = "plain" constant MsglogResultFormatMarkdown (line 54) | MsglogResultFormatMarkdown MsglogResultFormat = "markdown" constant MsglogResultFormatTerminal (line 55) | MsglogResultFormatTerminal MsglogResultFormat = "terminal" type Msglog (line 83) | type Msglog struct method TableName (line 97) | func (ml *Msglog) TableName() string { method Valid (line 102) | func (ml Msglog) Valid() error { method Validate (line 107) | func (ml Msglog) Validate(db *gorm.DB) { FILE: backend/pkg/server/models/prompts.go type PromptType (line 13) | type PromptType method String (line 16) | func (s PromptType) String() string { method Valid (line 21) | func (s PromptType) Valid() error { method Validate (line 50) | func (s PromptType) Validate(db *gorm.DB) { type Prompt (line 58) | type Prompt struct method TableName (line 68) | func (p *Prompt) TableName() string { method Valid (line 73) | func (p Prompt) Valid() error { method Validate (line 78) | func (p Prompt) Validate(db *gorm.DB) { type PatchPrompt (line 85) | type PatchPrompt struct method Valid (line 90) | func (pp PatchPrompt) Valid() error { FILE: backend/pkg/server/models/providers.go type ProviderType (line 13) | type ProviderType method String (line 15) | func (s ProviderType) String() string { method Valid (line 20) | func (s ProviderType) Valid() error { method Validate (line 40) | func (s ProviderType) Validate(db *gorm.DB) { type Provider (line 48) | type Provider struct method TableName (line 60) | func (p *Provider) TableName() string { method Valid (line 65) | func (p Provider) Valid() error { method Validate (line 70) | func (p Provider) Validate(db *gorm.DB) { type CreateProvider (line 78) | type CreateProvider struct method Valid (line 83) | func (cp CreateProvider) Valid() error { type PatchProvider (line 89) | type PatchProvider struct method Valid (line 95) | func (pp PatchProvider) Valid() error { type ProviderInfo (line 101) | type ProviderInfo struct method Valid (line 107) | func (p ProviderInfo) Valid() error { FILE: backend/pkg/server/models/roles.go type Role (line 7) | type Role struct method TableName (line 13) | func (r *Role) TableName() string { method Valid (line 18) | func (r Role) Valid() error { method Validate (line 23) | func (r Role) Validate(db *gorm.DB) { type Privilege (line 31) | type Privilege struct method TableName (line 38) | func (p *Privilege) TableName() string { method Valid (line 43) | func (p Privilege) Valid() error { type RolePrivileges (line 49) | type RolePrivileges struct method TableName (line 55) | func (rp *RolePrivileges) TableName() string { method Valid (line 60) | func (rp RolePrivileges) Valid() error { method Validate (line 70) | func (rp RolePrivileges) Validate(db *gorm.DB) { FILE: backend/pkg/server/models/screenshots.go type Screenshot (line 11) | type Screenshot struct method TableName (line 22) | func (s *Screenshot) TableName() string { method Valid (line 27) | func (s Screenshot) Valid() error { method Validate (line 32) | func (s Screenshot) Validate(db *gorm.DB) { FILE: backend/pkg/server/models/searchlogs.go type SearchEngineType (line 10) | type SearchEngineType method String (line 22) | func (s SearchEngineType) String() string { method Valid (line 27) | func (s SearchEngineType) Valid() error { method Validate (line 43) | func (s SearchEngineType) Validate(db *gorm.DB) { constant SearchEngineTypeGoogle (line 13) | SearchEngineTypeGoogle SearchEngineType = "google" constant SearchEngineTypeDuckduckgo (line 14) | SearchEngineTypeDuckduckgo SearchEngineType = "duckduckgo" constant SearchEngineTypeTavily (line 15) | SearchEngineTypeTavily SearchEngineType = "tavily" constant SearchEngineTypeTraversaal (line 16) | SearchEngineTypeTraversaal SearchEngineType = "traversaal" constant SearchEngineTypePerplexity (line 17) | SearchEngineTypePerplexity SearchEngineType = "perplexity" constant SearchEngineTypeBrowser (line 18) | SearchEngineTypeBrowser SearchEngineType = "browser" constant SearchEngineTypeSploitus (line 19) | SearchEngineTypeSploitus SearchEngineType = "sploitus" type Searchlog (line 51) | type Searchlog struct method TableName (line 65) | func (ml *Searchlog) TableName() string { method Valid (line 70) | func (ml Searchlog) Valid() error { method Validate (line 75) | func (ml Searchlog) Validate(db *gorm.DB) { FILE: backend/pkg/server/models/subtasks.go type SubtaskStatus (line 10) | type SubtaskStatus method String (line 20) | func (s SubtaskStatus) String() string { method Valid (line 25) | func (s SubtaskStatus) Valid() error { method Validate (line 39) | func (s SubtaskStatus) Validate(db *gorm.DB) { constant SubtaskStatusCreated (line 13) | SubtaskStatusCreated SubtaskStatus = "created" constant SubtaskStatusRunning (line 14) | SubtaskStatusRunning SubtaskStatus = "running" constant SubtaskStatusWaiting (line 15) | SubtaskStatusWaiting SubtaskStatus = "waiting" constant SubtaskStatusFinished (line 16) | SubtaskStatusFinished SubtaskStatus = "finished" constant SubtaskStatusFailed (line 17) | SubtaskStatusFailed SubtaskStatus = "failed" type Subtask (line 47) | type Subtask struct method TableName (line 60) | func (s *Subtask) TableName() string { method Valid (line 65) | func (s Subtask) Valid() error { method Validate (line 70) | func (s Subtask) Validate(db *gorm.DB) { FILE: backend/pkg/server/models/tasks.go type TaskStatus (line 10) | type TaskStatus method String (line 20) | func (s TaskStatus) String() string { method Valid (line 25) | func (s TaskStatus) Valid() error { method Validate (line 39) | func (s TaskStatus) Validate(db *gorm.DB) { constant TaskStatusCreated (line 13) | TaskStatusCreated TaskStatus = "created" constant TaskStatusRunning (line 14) | TaskStatusRunning TaskStatus = "running" constant TaskStatusWaiting (line 15) | TaskStatusWaiting TaskStatus = "waiting" constant TaskStatusFinished (line 16) | TaskStatusFinished TaskStatus = "finished" constant TaskStatusFailed (line 17) | TaskStatusFailed TaskStatus = "failed" type Task (line 47) | type Task struct method TableName (line 59) | func (t *Task) TableName() string { method Valid (line 64) | func (t Task) Valid() error { method Validate (line 69) | func (t Task) Validate(db *gorm.DB) { type TaskSubtasks (line 77) | type TaskSubtasks struct method TableName (line 83) | func (ts *TaskSubtasks) TableName() string { method Valid (line 88) | func (ts TaskSubtasks) Valid() error { method Validate (line 98) | func (ts TaskSubtasks) Validate(db *gorm.DB) { FILE: backend/pkg/server/models/termlogs.go type TermlogType (line 10) | type TermlogType method String (line 18) | func (s TermlogType) String() string { method Valid (line 23) | func (s TermlogType) Valid() error { method Validate (line 33) | func (s TermlogType) Validate(db *gorm.DB) { constant TermlogTypeStdin (line 13) | TermlogTypeStdin TermlogType = "stdin" constant TermlogTypeStdout (line 14) | TermlogTypeStdout TermlogType = "stdout" constant TermlogTypeStderr (line 15) | TermlogTypeStderr TermlogType = "stderr" type Termlog (line 41) | type Termlog struct method TableName (line 53) | func (tl *Termlog) TableName() string { method Valid (line 58) | func (tl Termlog) Valid() error { method Validate (line 63) | func (tl Termlog) Validate(db *gorm.DB) { FILE: backend/pkg/server/models/users.go constant RoleUser (line 12) | RoleUser = 2 type UserStatus (line 14) | type UserStatus method String (line 22) | func (s UserStatus) String() string { method Valid (line 27) | func (s UserStatus) Valid() error { method Validate (line 37) | func (s UserStatus) Validate(db *gorm.DB) { constant UserStatusCreated (line 17) | UserStatusCreated UserStatus = "created" constant UserStatusActive (line 18) | UserStatusActive UserStatus = "active" constant UserStatusBlocked (line 19) | UserStatusBlocked UserStatus = "blocked" type UserType (line 43) | type UserType method String (line 51) | func (s UserType) String() string { method Valid (line 56) | func (s UserType) Valid() error { method Validate (line 66) | func (s UserType) Validate(db *gorm.DB) { constant UserTypeLocal (line 46) | UserTypeLocal UserType = "local" constant UserTypeOAuth (line 47) | UserTypeOAuth UserType = "oauth" constant UserTypeAPI (line 48) | UserTypeAPI UserType = "api" type User (line 74) | type User struct method TableName (line 88) | func (u *User) TableName() string { method Valid (line 93) | func (u User) Valid() error { method Validate (line 98) | func (u User) Validate(db *gorm.DB) { type UserPassword (line 105) | type UserPassword struct method TableName (line 111) | func (up *UserPassword) TableName() string { method Valid (line 116) | func (up UserPassword) Valid() error { method Validate (line 124) | func (up UserPassword) Validate(db *gorm.DB) { type Login (line 132) | type Login struct method TableName (line 138) | func (sin *Login) TableName() string { method Valid (line 143) | func (sin Login) Valid() error { method Validate (line 148) | func (sin Login) Validate(db *gorm.DB) { type AuthCallback (line 155) | type AuthCallback struct method Valid (line 163) | func (au AuthCallback) Valid() error { type Password (line 169) | type Password struct method TableName (line 176) | func (p *Password) TableName() string { method Valid (line 181) | func (p Password) Valid() error { method Validate (line 186) | func (p Password) Validate(db *gorm.DB) { type UserRole (line 194) | type UserRole struct method Valid (line 200) | func (ur UserRole) Valid() error { method Validate (line 208) | func (ur UserRole) Validate(db *gorm.DB) { type UserRolePrivileges (line 216) | type UserRolePrivileges struct method Valid (line 222) | func (urp UserRolePrivileges) Valid() error { method Validate (line 230) | func (urp UserRolePrivileges) Validate(db *gorm.DB) { type UserPreferencesOptions (line 237) | type UserPreferencesOptions struct method Value (line 242) | func (upo UserPreferencesOptions) Value() (driver.Value, error) { method Scan (line 247) | func (upo *UserPreferencesOptions) Scan(value any) error { type UserPreferences (line 262) | type UserPreferences struct method TableName (line 271) | func (up *UserPreferences) TableName() string { method Valid (line 276) | func (up UserPreferences) Valid() error { method Validate (line 284) | func (up UserPreferences) Validate(db *gorm.DB) { function NewUserPreferences (line 291) | func NewUserPreferences(userID uint64) *UserPreferences { type UserWithPreferences (line 301) | type UserWithPreferences struct FILE: backend/pkg/server/models/vecstorelogs.go type VecstoreActionType (line 10) | type VecstoreActionType method String (line 17) | func (s VecstoreActionType) String() string { method Valid (line 22) | func (s VecstoreActionType) Valid() error { method Validate (line 32) | func (s VecstoreActionType) Validate(db *gorm.DB) { constant VecstoreActionTypeRetrieve (line 13) | VecstoreActionTypeRetrieve VecstoreActionType = "retrieve" constant VecstoreActionTypeStore (line 14) | VecstoreActionTypeStore VecstoreActionType = "store" type Vecstorelog (line 40) | type Vecstorelog struct method TableName (line 55) | func (ml *Vecstorelog) TableName() string { method Valid (line 60) | func (ml Vecstorelog) Valid() error { method Validate (line 65) | func (ml Vecstorelog) Validate(db *gorm.DB) { FILE: backend/pkg/server/oauth/client.go type OAuthEmailResolver (line 10) | type OAuthEmailResolver type OAuthClient (line 12) | type OAuthClient interface type oauthClient (line 21) | type oauthClient struct method ProviderName (line 37) | func (o *oauthClient) ProviderName() string { method ResolveEmail (line 41) | func (o *oauthClient) ResolveEmail(ctx context.Context, nonce string, ... method TokenSource (line 48) | func (o *oauthClient) TokenSource(ctx context.Context, token *oauth2.T... method Exchange (line 52) | func (o *oauthClient) Exchange(ctx context.Context, code string, opts ... method RefreshToken (line 57) | func (o *oauthClient) RefreshToken(ctx context.Context, token string) ... method AuthCodeURL (line 61) | func (o *oauthClient) AuthCodeURL(state string, opts ...oauth2.AuthCod... function NewOAuthClient (line 28) | func NewOAuthClient(name string, conf *oauth2.Config, emailResolver OAut... FILE: backend/pkg/server/oauth/github.go type githubEmail (line 14) | type githubEmail struct function githubEmailResolver (line 21) | func githubEmailResolver(ctx context.Context, nonce string, token *oauth... function NewGithubOAuthClient (line 59) | func NewGithubOAuthClient(clientID, clientSecret, redirectURL string) OA... FILE: backend/pkg/server/oauth/google.go type googleTokenClaims (line 12) | type googleTokenClaims struct function newGoogleEmailResolver (line 18) | func newGoogleEmailResolver(clientID string) OAuthEmailResolver { function NewGoogleOAuthClient (line 65) | func NewGoogleOAuthClient(clientID, clientSecret, redirectURL string) OA... FILE: backend/pkg/server/rdb/table.go type TableFilter (line 20) | type TableFilter struct type TableSort (line 27) | type TableSort struct type TableQuery (line 35) | type TableQuery struct method Init (line 64) | func (q *TableQuery) Init(table string, sqlMappers map[string]any) err... method DoConditionFormat (line 101) | func (q *TableQuery) DoConditionFormat(cond string) string { method SetFilters (line 110) | func (q *TableQuery) SetFilters(sqlFilters []func(*gorm.DB) *gorm.DB) { method SetFind (line 115) | func (q *TableQuery) SetFind(find func(out any) func(*gorm.DB) *gorm.D... method SetOrders (line 120) | func (q *TableQuery) SetOrders(sqlOrders []func(*gorm.DB) *gorm.DB) { method Find (line 125) | func (q *TableQuery) Find(out any) func(*gorm.DB) *gorm.DB { method Mappers (line 130) | func (q *TableQuery) Mappers() map[string]any { method Table (line 135) | func (q *TableQuery) Table() string { method Ordering (line 140) | func (q *TableQuery) Ordering() func(db *gorm.DB) *gorm.DB { method Paginate (line 178) | func (q *TableQuery) Paginate() func(db *gorm.DB) *gorm.DB { method GroupBy (line 191) | func (q *TableQuery) GroupBy(total *uint64, result any) func(db *gorm.... method DataFilter (line 198) | func (q *TableQuery) DataFilter() func(db *gorm.DB) *gorm.DB { method Query (line 301) | func (q *TableQuery) Query(db *gorm.DB, result any, method QueryGrouped (line 314) | func (q *TableQuery) QueryGrouped(db *gorm.DB, result any, function ApplyToChainDB (line 329) | func ApplyToChainDB(db *gorm.DB, funcs ...func(*gorm.DB) *gorm.DB) (tx *... function EncryptPassword (line 337) | func EncryptPassword(password string) (hpass []byte, err error) { function MakeMD5Hash (line 343) | func MakeMD5Hash(value, salt string) string { function MakeUserHash (line 350) | func MakeUserHash(name string) string { function MakeUuidStrFromHash (line 356) | func MakeUuidStrFromHash(hash string) (string, error) { function isNumbericField (line 368) | func isNumbericField(field string) bool { FILE: backend/pkg/server/response/http.go type HttpError (line 13) | type HttpError struct method Code (line 19) | func (h *HttpError) Code() string { method HttpCode (line 23) | func (h *HttpError) HttpCode() int { method Msg (line 27) | func (h *HttpError) Msg() string { method Error (line 35) | func (h *HttpError) Error() string { function NewHttpError (line 31) | func NewHttpError(httpCode int, code, message string) *HttpError { function Error (line 39) | func Error(c *gin.Context, err *HttpError, original error) { function Success (line 59) | func Success(c *gin.Context, code int, data any) { type successResp (line 64) | type successResp struct type errorResp (line 70) | type errorResp struct FILE: backend/pkg/server/response/http_test.go function init (line 17) | func init() { function TestNewHttpError (line 21) | func TestNewHttpError(t *testing.T) { function TestHttpError_Error (line 30) | func TestHttpError_Error(t *testing.T) { function TestHttpError_ImplementsError (line 37) | func TestHttpError_ImplementsError(t *testing.T) { function TestPredefinedErrors (line 45) | func TestPredefinedErrors(t *testing.T) { function TestSuccessResponse (line 183) | func TestSuccessResponse(t *testing.T) { function TestSuccessResponse_Created (line 201) | func TestSuccessResponse_Created(t *testing.T) { function TestErrorResponse (line 212) | func TestErrorResponse(t *testing.T) { function TestErrorResponse_DevMode (line 231) | func TestErrorResponse_DevMode(t *testing.T) { function TestErrorResponse_ProductionMode (line 254) | func TestErrorResponse_ProductionMode(t *testing.T) { function TestErrorResponse_NilOriginalError (line 277) | func TestErrorResponse_NilOriginalError(t *testing.T) { function TestHttpError_MultipleInstancesIndependent (line 294) | func TestHttpError_MultipleInstancesIndependent(t *testing.T) { function TestSuccessResponse_EmptyData (line 306) | func TestSuccessResponse_EmptyData(t *testing.T) { function TestSuccessResponse_ComplexData (line 323) | func TestSuccessResponse_ComplexData(t *testing.T) { function TestErrorResponse_DifferentHttpCodes (line 355) | func TestErrorResponse_DifferentHttpCodes(t *testing.T) { function TestErrorResponse_ResponseStructure (line 385) | func TestErrorResponse_ResponseStructure(t *testing.T) { function TestSuccessResponse_StatusCodes (line 408) | func TestSuccessResponse_StatusCodes(t *testing.T) { FILE: backend/pkg/server/router.go constant baseURL (line 39) | baseURL = "/api/v1" constant corsAllowGoogleOAuth (line 41) | corsAllowGoogleOAuth = "https://accounts.google.com" function NewRouter (line 73) | func NewRouter( function setProvidersGroup (line 308) | func setProvidersGroup(parent *gin.RouterGroup, svc *services.ProviderSe... function setGraphqlGroup (line 315) | func setGraphqlGroup(parent *gin.RouterGroup, svc *services.GraphqlServi... function setSubtasksGroup (line 322) | func setSubtasksGroup(parent *gin.RouterGroup, svc *services.SubtaskServ... function setTasksGroup (line 335) | func setTasksGroup(parent *gin.RouterGroup, svc *services.TaskService) { function setFlowsGroup (line 344) | func setFlowsGroup(parent *gin.RouterGroup, svc *services.FlowService) { function setContainersGroup (line 368) | func setContainersGroup(parent *gin.RouterGroup, svc *services.Container... function setAssistantsGroup (line 381) | func setAssistantsGroup(parent *gin.RouterGroup, svc *services.Assistant... function setAgentlogsGroup (line 404) | func setAgentlogsGroup(parent *gin.RouterGroup, svc *services.AgentlogSe... function setAssistantlogsGroup (line 416) | func setAssistantlogsGroup(parent *gin.RouterGroup, svc *services.Assist... function setMsglogsGroup (line 428) | func setMsglogsGroup(parent *gin.RouterGroup, svc *services.MsglogServic... function setSearchlogsGroup (line 440) | func setSearchlogsGroup(parent *gin.RouterGroup, svc *services.Searchlog... function setTermlogsGroup (line 452) | func setTermlogsGroup(parent *gin.RouterGroup, svc *services.TermlogServ... function setVecstorelogsGroup (line 464) | func setVecstorelogsGroup(parent *gin.RouterGroup, svc *services.Vecstor... function setScreenshotsGroup (line 476) | func setScreenshotsGroup(parent *gin.RouterGroup, svc *services.Screensh... function setPromptsGroup (line 490) | func setPromptsGroup(parent *gin.RouterGroup, svc *services.PromptServic... function setRolesGroup (line 505) | func setRolesGroup(parent *gin.RouterGroup, svc *services.RoleService) { function setUsersGroup (line 513) | func setUsersGroup(parent *gin.RouterGroup, svc *services.UserService) { function setAnalyticsGroup (line 541) | func setAnalyticsGroup(parent *gin.RouterGroup, svc *services.AnalyticsS... function setTokensGroup (line 556) | func setTokensGroup(parent *gin.RouterGroup, svc *services.TokenService) { FILE: backend/pkg/server/services/agentlogs.go type agentlogs (line 18) | type agentlogs struct type agentlogsGrouped (line 23) | type agentlogsGrouped struct type AgentlogService (line 41) | type AgentlogService struct method GetAgentlogs (line 62) | func (s *AgentlogService) GetAgentlogs(c *gin.Context) { method GetFlowAgentlogs (line 144) | func (s *AgentlogService) GetFlowAgentlogs(c *gin.Context) { function NewAgentlogService (line 45) | func NewAgentlogService(db *gorm.DB) *AgentlogService { FILE: backend/pkg/server/services/analytics.go type AnalyticsService (line 19) | type AnalyticsService struct method GetSystemUsage (line 39) | func (s *AnalyticsService) GetSystemUsage(c *gin.Context) { method GetPeriodUsage (line 370) | func (s *AnalyticsService) GetPeriodUsage(c *gin.Context) { method GetFlowUsage (line 787) | func (s *AnalyticsService) GetFlowUsage(c *gin.Context) { function NewAnalyticsService (line 23) | func NewAnalyticsService(db *gorm.DB) *AnalyticsService { FILE: backend/pkg/server/services/api_tokens.go type tokens (line 19) | type tokens struct type TokenService (line 25) | type TokenService struct method CreateToken (line 58) | func (s *TokenService) CreateToken(c *gin.Context) { method ListTokens (line 159) | func (s *TokenService) ListTokens(c *gin.Context) { method GetToken (line 207) | func (s *TokenService) GetToken(c *gin.Context) { method UpdateToken (line 258) | func (s *TokenService) UpdateToken(c *gin.Context) { method DeleteToken (line 368) | func (s *TokenService) DeleteToken(c *gin.Context) { function NewTokenService (line 33) | func NewTokenService( function convertAPITokenToDatabase (line 411) | func convertAPITokenToDatabase(apiToken models.APIToken) database.ApiTok... FILE: backend/pkg/server/services/api_tokens_test.go function setupTestDB (line 23) | func setupTestDB(t *testing.T) *gorm.DB { function setupTestContext (line 136) | func setupTestContext(uid, rid uint64, uhash string, permissions []strin... function TestTokenService_CreateToken (line 149) | func TestTokenService_CreateToken(t *testing.T) { function TestTokenService_CreateToken_NameUniqueness (line 266) | func TestTokenService_CreateToken_NameUniqueness(t *testing.T) { function TestTokenService_ListTokens (line 302) | func TestTokenService_ListTokens(t *testing.T) { function TestTokenService_GetToken (line 373) | func TestTokenService_GetToken(t *testing.T) { function TestTokenService_UpdateToken (line 448) | func TestTokenService_UpdateToken(t *testing.T) { function TestTokenService_UpdateToken_NameUniqueness (line 546) | func TestTokenService_UpdateToken_NameUniqueness(t *testing.T) { function TestTokenService_DeleteToken (line 576) | func TestTokenService_DeleteToken(t *testing.T) { function TestTokenService_DeleteToken_InvalidatesCache (line 658) | func TestTokenService_DeleteToken_InvalidatesCache(t *testing.T) { function TestTokenService_UpdateToken_InvalidatesCache (line 688) | func TestTokenService_UpdateToken_InvalidatesCache(t *testing.T) { function TestTokenService_FullLifecycle (line 725) | func TestTokenService_FullLifecycle(t *testing.T) { function TestTokenService_AdminPermissions (line 816) | func TestTokenService_AdminPermissions(t *testing.T) { function TestTokenService_TokenPrivileges (line 894) | func TestTokenService_TokenPrivileges(t *testing.T) { function TestTokenService_SecurityChecks (line 999) | func TestTokenService_SecurityChecks(t *testing.T) { FILE: backend/pkg/server/services/assistantlogs.go type assistantlogs (line 18) | type assistantlogs struct type assistantlogsGrouped (line 23) | type assistantlogsGrouped struct type AssistantlogService (line 40) | type AssistantlogService struct method GetAssistantlogs (line 61) | func (s *AssistantlogService) GetAssistantlogs(c *gin.Context) { method GetFlowAssistantlogs (line 143) | func (s *AssistantlogService) GetFlowAssistantlogs(c *gin.Context) { function NewAssistantlogService (line 44) | func NewAssistantlogService(db *gorm.DB) *AssistantlogService { FILE: backend/pkg/server/services/assistants.go type assistants (line 24) | type assistants struct type assistantsGrouped (line 29) | type assistantsGrouped struct type AssistantService (line 49) | type AssistantService struct method GetFlowAssistants (line 82) | func (s *AssistantService) GetFlowAssistants(c *gin.Context) { method GetFlowAssistant (line 172) | func (s *AssistantService) GetFlowAssistant(c *gin.Context) { method CreateFlowAssistant (line 243) | func (s *AssistantService) CreateFlowAssistant(c *gin.Context) { method PatchAssistant (line 327) | func (s *AssistantService) PatchAssistant(c *gin.Context) { method DeleteAssistant (line 466) | func (s *AssistantService) DeleteAssistant(c *gin.Context) { function NewAssistantService (line 56) | func NewAssistantService( function convertAssistantToDatabase (line 562) | func convertAssistantToDatabase(assistant models.Assistant) (database.As... FILE: backend/pkg/server/services/auth.go constant authStateCookieName (line 36) | authStateCookieName = "state" constant authNonceCookieName (line 37) | authNonceCookieName = "nonce" constant authStateRequestTTL (line 38) | authStateRequestTTL = 5 * time.Minute type AuthServiceConfig (line 41) | type AuthServiceConfig struct type AuthService (line 47) | type AuthService struct method AuthLogin (line 90) | func (s *AuthService) AuthLogin(c *gin.Context) { method refreshCookie (line 185) | func (s *AuthService) refreshCookie(c *gin.Context, resp *info, privs ... method AuthAuthorize (line 236) | func (s *AuthService) AuthAuthorize(c *gin.Context) { method AuthLoginGetCallback (line 324) | func (s *AuthService) AuthLoginGetCallback(c *gin.Context) { method AuthLoginPostCallback (line 371) | func (s *AuthService) AuthLoginPostCallback(c *gin.Context) { method AuthLogoutCallback (line 413) | func (s *AuthService) AuthLogoutCallback(c *gin.Context) { method AuthLogout (line 425) | func (s *AuthService) AuthLogout(c *gin.Context) { method authLoginCallback (line 450) | func (s *AuthService) authLoginCallback(c *gin.Context, stateData map[... method parseState (line 643) | func (s *AuthService) parseState(c *gin.Context, state string) (map[st... method setCallbackCookie (line 712) | func (s *AuthService) setCallbackCookie( method resetSession (line 732) | func (s *AuthService) resetSession(c *gin.Context) { method Info (line 790) | func (s *AuthService) Info(c *gin.Context) { function NewAuthService (line 54) | func NewAuthService( function randBase64String (line 750) | func randBase64String(nByte int) (string, error) { function randBytes (line 759) | func randBytes(nByte int) ([]byte, error) { type info (line 767) | type info struct FILE: backend/pkg/server/services/containers.go type containers (line 18) | type containers struct type containersGrouped (line 23) | type containersGrouped struct type ContainerService (line 42) | type ContainerService struct method GetContainers (line 63) | func (s *ContainerService) GetContainers(c *gin.Context) { method GetFlowContainers (line 145) | func (s *ContainerService) GetFlowContainers(c *gin.Context) { method GetFlowContainer (line 235) | func (s *ContainerService) GetFlowContainer(c *gin.Context) { function NewContainerService (line 46) | func NewContainerService(db *gorm.DB) *ContainerService { FILE: backend/pkg/server/services/flows.go type flows (line 24) | type flows struct type flowsGrouped (line 29) | type flowsGrouped struct type FlowService (line 47) | type FlowService struct method GetFlows (line 79) | func (s *FlowService) GetFlows(c *gin.Context) { method GetFlow (line 157) | func (s *FlowService) GetFlow(c *gin.Context) { method GetFlowGraph (line 211) | func (s *FlowService) GetFlowGraph(c *gin.Context) { method CreateFlow (line 323) | func (s *FlowService) CreateFlow(c *gin.Context) { method PatchFlow (line 390) | func (s *FlowService) PatchFlow(c *gin.Context) { method DeleteFlow (line 516) | func (s *FlowService) DeleteFlow(c *gin.Context) { function NewFlowService (line 54) | func NewFlowService( function convertFlowToDatabase (line 602) | func convertFlowToDatabase(flow models.Flow) (database.Flow, error) { function convertContainerToDatabase (line 626) | func convertContainerToDatabase(container models.Container) database.Con... FILE: backend/pkg/server/services/graphql.go type GraphqlService (line 38) | type GraphqlService struct method ServeGraphql (line 130) | func (s *GraphqlService) ServeGraphql(c *gin.Context) { method ServeGraphqlPlayground (line 149) | func (s *GraphqlService) ServeGraphqlPlayground(c *gin.Context) { type originValidator (line 43) | type originValidator struct method validateOrigin (line 186) | func (ov *originValidator) validateOrigin(origin, host string) bool { function NewGraphqlService (line 50) | func NewGraphqlService( function newOriginValidator (line 153) | func newOriginValidator(origins []string) *originValidator { FILE: backend/pkg/server/services/msglogs.go type msglogs (line 18) | type msglogs struct type msglogsGrouped (line 23) | type msglogsGrouped struct type MsglogService (line 42) | type MsglogService struct method GetMsglogs (line 63) | func (s *MsglogService) GetMsglogs(c *gin.Context) { method GetFlowMsglogs (line 145) | func (s *MsglogService) GetFlowMsglogs(c *gin.Context) { function NewMsglogService (line 46) | func NewMsglogService(db *gorm.DB) *MsglogService { FILE: backend/pkg/server/services/prompts.go type prompts (line 18) | type prompts struct type promptsGrouped (line 23) | type promptsGrouped struct type PromptService (line 36) | type PromptService struct method GetPrompts (line 59) | func (s *PromptService) GetPrompts(c *gin.Context) { method GetPrompt (line 133) | func (s *PromptService) GetPrompt(c *gin.Context) { method PatchPrompt (line 191) | func (s *PromptService) PatchPrompt(c *gin.Context) { method ResetPrompt (line 272) | func (s *PromptService) ResetPrompt(c *gin.Context) { method DeletePrompt (line 349) | func (s *PromptService) DeletePrompt(c *gin.Context) { function NewPromptService (line 41) | func NewPromptService(db *gorm.DB) *PromptService { FILE: backend/pkg/server/services/providers.go type ProviderService (line 15) | type ProviderService struct method GetProviders (line 33) | func (s *ProviderService) GetProviders(c *gin.Context) { function NewProviderService (line 19) | func NewProviderService(providers providers.ProviderController) *Provide... FILE: backend/pkg/server/services/roles.go type roles (line 18) | type roles struct type RoleService (line 29) | type RoleService struct method GetRoles (line 49) | func (s *RoleService) GetRoles(c *gin.Context) { method GetRole (line 121) | func (s *RoleService) GetRole(c *gin.Context) { function NewRoleService (line 33) | func NewRoleService(db *gorm.DB) *RoleService { FILE: backend/pkg/server/services/screenshots.go type screenshots (line 20) | type screenshots struct type screenshotsGrouped (line 25) | type screenshotsGrouped struct type ScreenshotService (line 41) | type ScreenshotService struct method GetScreenshots (line 64) | func (s *ScreenshotService) GetScreenshots(c *gin.Context) { method GetFlowScreenshots (line 146) | func (s *ScreenshotService) GetFlowScreenshots(c *gin.Context) { method GetFlowScreenshot (line 236) | func (s *ScreenshotService) GetFlowScreenshot(c *gin.Context) { method GetFlowScreenshotFile (line 301) | func (s *ScreenshotService) GetFlowScreenshotFile(c *gin.Context) { function NewScreenshotService (line 46) | func NewScreenshotService(db *gorm.DB, dataDir string) *ScreenshotService { FILE: backend/pkg/server/services/searchlogs.go type searchlogs (line 18) | type searchlogs struct type searchlogsGrouped (line 23) | type searchlogsGrouped struct type SearchlogService (line 42) | type SearchlogService struct method GetSearchlogs (line 63) | func (s *SearchlogService) GetSearchlogs(c *gin.Context) { method GetFlowSearchlogs (line 145) | func (s *SearchlogService) GetFlowSearchlogs(c *gin.Context) { function NewSearchlogService (line 46) | func NewSearchlogService(db *gorm.DB) *SearchlogService { FILE: backend/pkg/server/services/subtasks.go type subtasks (line 18) | type subtasks struct type subtasksGrouped (line 23) | type subtasksGrouped struct type SubtaskService (line 41) | type SubtaskService struct method GetFlowSubtasks (line 63) | func (s *SubtaskService) GetFlowSubtasks(c *gin.Context) { method GetFlowTaskSubtasks (line 156) | func (s *SubtaskService) GetFlowTaskSubtasks(c *gin.Context) { method GetFlowTaskSubtask (line 256) | func (s *SubtaskService) GetFlowTaskSubtask(c *gin.Context) { function NewSubtaskService (line 45) | func NewSubtaskService(db *gorm.DB) *SubtaskService { FILE: backend/pkg/server/services/tasks.go type tasks (line 18) | type tasks struct type tasksGrouped (line 23) | type tasksGrouped struct type TaskService (line 40) | type TaskService struct method GetFlowTasks (line 62) | func (s *TaskService) GetFlowTasks(c *gin.Context) { method GetFlowTask (line 152) | func (s *TaskService) GetFlowTask(c *gin.Context) { method GetFlowTaskGraph (line 222) | func (s *TaskService) GetFlowTaskGraph(c *gin.Context) { function NewTaskService (line 44) | func NewTaskService(db *gorm.DB) *TaskService { FILE: backend/pkg/server/services/termlogs.go type termlogs (line 18) | type termlogs struct type termlogsGrouped (line 23) | type termlogsGrouped struct type TermlogService (line 40) | type TermlogService struct method GetTermlogs (line 61) | func (s *TermlogService) GetTermlogs(c *gin.Context) { method GetFlowTermlogs (line 143) | func (s *TermlogService) GetFlowTermlogs(c *gin.Context) { function NewTermlogService (line 44) | func NewTermlogService(db *gorm.DB) *TermlogService { FILE: backend/pkg/server/services/users.go type users (line 19) | type users struct type usersGrouped (line 24) | type usersGrouped struct type UserService (line 41) | type UserService struct method GetCurrentUser (line 62) | func (s *UserService) GetCurrentUser(c *gin.Context) { method ChangePasswordCurrentUser (line 121) | func (s *UserService) ChangePasswordCurrentUser(c *gin.Context) { method GetUsers (line 194) | func (s *UserService) GetUsers(c *gin.Context) { method GetUser (line 285) | func (s *UserService) GetUser(c *gin.Context) { method CreateUser (line 349) | func (s *UserService) CreateUser(c *gin.Context) { method PatchUser (line 471) | func (s *UserService) PatchUser(c *gin.Context) { method DeleteUser (line 595) | func (s *UserService) DeleteUser(c *gin.Context) { method GetUserPrivileges (line 655) | func (s *UserService) GetUserPrivileges(c *gin.Context, rid uint64) ([... method CheckPrivilege (line 677) | func (s *UserService) CheckPrivilege(c *gin.Context, privsCurrentUser,... function NewUserService (line 46) | func NewUserService(db *gorm.DB, userCache *auth.UserCache) *UserService { FILE: backend/pkg/server/services/users_test.go function TestCreateUser_CreatesUserPreferences (line 20) | func TestCreateUser_CreatesUserPreferences(t *testing.T) { function TestCreateUser_RollbackOnPreferencesError (line 77) | func TestCreateUser_RollbackOnPreferencesError(t *testing.T) { function TestCreateUser_InvalidPermissions (line 125) | func TestCreateUser_InvalidPermissions(t *testing.T) { function TestCreateUser_MultipleUsers (line 170) | func TestCreateUser_MultipleUsers(t *testing.T) { function TestCreateUser_InvalidJSON (line 257) | func TestCreateUser_InvalidJSON(t *testing.T) { function TestCreateUser_DuplicateEmail (line 282) | func TestCreateUser_DuplicateEmail(t *testing.T) { FILE: backend/pkg/server/services/vecstorelogs.go type vecstorelogs (line 18) | type vecstorelogs struct type vecstorelogsGrouped (line 23) | type vecstorelogsGrouped struct type VecstorelogService (line 43) | type VecstorelogService struct method GetVecstorelogs (line 64) | func (s *VecstorelogService) GetVecstorelogs(c *gin.Context) { method GetFlowVecstorelogs (line 146) | func (s *VecstorelogService) GetFlowVecstorelogs(c *gin.Context) { function NewVecstorelogService (line 47) | func NewVecstorelogService(db *gorm.DB) *VecstorelogService { FILE: backend/pkg/system/host_id.go function GetHostID (line 8) | func GetHostID() string { FILE: backend/pkg/system/utils.go constant defaultHTTPClientTimeout (line 18) | defaultHTTPClientTimeout = 10 * time.Minute function getHostname (line 21) | func getHostname() string { function getIPs (line 30) | func getIPs() []string { function GetSystemCertPool (line 50) | func GetSystemCertPool(cfg *config.Config) (*x509.CertPool, error) { function GetHTTPClient (line 70) | func GetHTTPClient(cfg *config.Config) (*http.Client, error) { FILE: backend/pkg/system/utils_darwin.go function getMachineID (line 16) | func getMachineID() (string, error) { function extractID (line 28) | func extractID(lines string) (string, error) { function execCmd (line 41) | func execCmd(scmd string, args ...string) (string, error) { FILE: backend/pkg/system/utils_linux.go type Feature (line 15) | type Feature constant _ (line 18) | _ Feature = iota constant SystemManufacturer (line 21) | SystemManufacturer constant SystemProductName (line 23) | SystemProductName constant SystemUUID (line 25) | SystemUUID function formatUUID (line 42) | func formatUUID(b []byte) (string, error) { function getSMBIOSAttr (line 46) | func getSMBIOSAttr(feat Feature) (string, error) { function readSMBIOSAttributes (line 56) | func readSMBIOSAttributes() error { function buildSMBIOSAttrIndex (line 81) | func buildSMBIOSAttrIndex() map[int][]*smbiosAttribute { type smbiosAttribute (line 90) | type smbiosAttribute struct method readValueString (line 100) | func (attr *smbiosAttribute) readValueString(s *smbios.Structure) (str... method getString (line 111) | func (attr *smbiosAttribute) getString(s *smbios.Structure) (string, e... function getMachineID (line 121) | func getMachineID() (string, error) { FILE: backend/pkg/system/utils_test.go type testCerts (line 25) | type testCerts struct function generateRSAKey (line 39) | func generateRSAKey() (*rsa.PrivateKey, error) { function generateSerialNumber (line 44) | func generateSerialNumber() (*big.Int, error) { function createCertificate (line 50) | func createCertificate(template, parent *x509.Certificate, pub, priv int... function generateTestCerts (line 70) | func generateTestCerts() (*testCerts, error) { function createTempFile (line 194) | func createTempFile(t *testing.T, content []byte) string { function createTestConfig (line 209) | func createTestConfig(caPath string, insecure bool, proxyURL string) *co... function createTLSTestServer (line 219) | func createTLSTestServer(t *testing.T, certs *testCerts, includeIntermed... function TestGetSystemCertPool_EmptyPath (line 254) | func TestGetSystemCertPool_EmptyPath(t *testing.T) { function TestGetSystemCertPool_NonExistentFile (line 267) | func TestGetSystemCertPool_NonExistentFile(t *testing.T) { function TestGetSystemCertPool_InvalidPEM (line 276) | func TestGetSystemCertPool_InvalidPEM(t *testing.T) { function TestGetSystemCertPool_SingleRootCA (line 288) | func TestGetSystemCertPool_SingleRootCA(t *testing.T) { function TestGetSystemCertPool_MultipleRootCAs (line 323) | func TestGetSystemCertPool_MultipleRootCAs(t *testing.T) { function TestGetSystemCertPool_WithIntermediateCerts (line 372) | func TestGetSystemCertPool_WithIntermediateCerts(t *testing.T) { function TestGetHTTPClient_NoProxy (line 406) | func TestGetHTTPClient_NoProxy(t *testing.T) { function TestGetHTTPClient_WithProxy (line 438) | func TestGetHTTPClient_WithProxy(t *testing.T) { function TestGetHTTPClient_InsecureSkipVerify (line 470) | func TestGetHTTPClient_InsecureSkipVerify(t *testing.T) { function TestHTTPClient_RealConnection_WithIntermediateInChain (line 488) | func TestHTTPClient_RealConnection_WithIntermediateInChain(t *testing.T) { function TestHTTPClient_RealConnection_WithoutIntermediateInChain (line 528) | func TestHTTPClient_RealConnection_WithoutIntermediateInChain(t *testing... function TestHTTPClient_RealConnection_WithIntermediateInRootPool (line 554) | func TestHTTPClient_RealConnection_WithIntermediateInRootPool(t *testing... function TestHTTPClient_RealConnection_MultipleRootCAs (line 587) | func TestHTTPClient_RealConnection_MultipleRootCAs(t *testing.T) { function TestGetHTTPClient_NilConfig (line 639) | func TestGetHTTPClient_NilConfig(t *testing.T) { function TestGetHTTPClient_DefaultTimeout (line 654) | func TestGetHTTPClient_DefaultTimeout(t *testing.T) { function TestGetHTTPClient_CustomTimeout (line 668) | func TestGetHTTPClient_CustomTimeout(t *testing.T) { function TestGetHTTPClient_ZeroTimeoutMeansNoTimeout (line 684) | func TestGetHTTPClient_ZeroTimeoutMeansNoTimeout(t *testing.T) { function TestGetHTTPClient_TimeoutWithProxy (line 699) | func TestGetHTTPClient_TimeoutWithProxy(t *testing.T) { function TestGetHTTPClient_NegativeTimeoutClampsToZero (line 716) | func TestGetHTTPClient_NegativeTimeoutClampsToZero(t *testing.T) { function TestGetHTTPClient_LargeTimeout (line 732) | func TestGetHTTPClient_LargeTimeout(t *testing.T) { function TestHTTPClient_RealConnection_InsecureMode (line 748) | func TestHTTPClient_RealConnection_InsecureMode(t *testing.T) { FILE: backend/pkg/system/utils_windows.go function getMachineID (line 13) | func getMachineID() (string, error) { function getSystemProduct (line 30) | func getSystemProduct() (string, error) { FILE: backend/pkg/templates/templates.go type PromptType (line 26) | type PromptType constant PromptTypePrimaryAgent (line 29) | PromptTypePrimaryAgent PromptType = "primary_agent" constant PromptTypeAssistant (line 30) | PromptTypeAssistant PromptType = "assistant" constant PromptTypePentester (line 31) | PromptTypePentester PromptType = "pentester" constant PromptTypeQuestionPentester (line 32) | PromptTypeQuestionPentester PromptType = "question_pentester" constant PromptTypeCoder (line 33) | PromptTypeCoder PromptType = "coder" constant PromptTypeQuestionCoder (line 34) | PromptTypeQuestionCoder PromptType = "question_coder" constant PromptTypeInstaller (line 35) | PromptTypeInstaller PromptType = "installer" constant PromptTypeQuestionInstaller (line 36) | PromptTypeQuestionInstaller PromptType = "question_installer" constant PromptTypeSearcher (line 37) | PromptTypeSearcher PromptType = "searcher" constant PromptTypeQuestionSearcher (line 38) | PromptTypeQuestionSearcher PromptType = "question_searcher" constant PromptTypeMemorist (line 39) | PromptTypeMemorist PromptType = "memorist" constant PromptTypeQuestionMemorist (line 40) | PromptTypeQuestionMemorist PromptType = "question_memorist" constant PromptTypeAdviser (line 41) | PromptTypeAdviser PromptType = "adviser" constant PromptTypeQuestionAdviser (line 42) | PromptTypeQuestionAdviser PromptType = "question_adviser" constant PromptTypeGenerator (line 43) | PromptTypeGenerator PromptType = "generator" constant PromptTypeSubtasksGenerator (line 44) | PromptTypeSubtasksGenerator PromptType = "subtasks_generator" constant PromptTypeRefiner (line 45) | PromptTypeRefiner PromptType = "refiner" constant PromptTypeSubtasksRefiner (line 46) | PromptTypeSubtasksRefiner PromptType = "subtasks_refiner" constant PromptTypeReporter (line 47) | PromptTypeReporter PromptType = "reporter" constant PromptTypeTaskReporter (line 48) | PromptTypeTaskReporter PromptType = "task_reporter" constant PromptTypeReflector (line 49) | PromptTypeReflector PromptType = "reflector" constant PromptTypeQuestionReflector (line 50) | PromptTypeQuestionReflector PromptType = "question_reflector" constant PromptTypeEnricher (line 51) | PromptTypeEnricher PromptType = "enricher" constant PromptTypeQuestionEnricher (line 52) | PromptTypeQuestionEnricher PromptType = "question_enricher" constant PromptTypeToolCallFixer (line 53) | PromptTypeToolCallFixer PromptType = "toolcall_fixer" constant PromptTypeInputToolCallFixer (line 54) | PromptTypeInputToolCallFixer PromptType = "input_toolcall_fixer" constant PromptTypeSummarizer (line 55) | PromptTypeSummarizer PromptType = "summarizer" constant PromptTypeImageChooser (line 56) | PromptTypeImageChooser PromptType = "image_chooser" constant PromptTypeLanguageChooser (line 57) | PromptTypeLanguageChooser PromptType = "language_chooser" constant PromptTypeFlowDescriptor (line 58) | PromptTypeFlowDescriptor PromptType = "flow_descriptor" constant PromptTypeTaskDescriptor (line 59) | PromptTypeTaskDescriptor PromptType = "task_descriptor" constant PromptTypeExecutionLogs (line 60) | PromptTypeExecutionLogs PromptType = "execution_logs" constant PromptTypeFullExecutionContext (line 61) | PromptTypeFullExecutionContext PromptType = "full_execution_context" constant PromptTypeShortExecutionContext (line 62) | PromptTypeShortExecutionContext PromptType = "short_execution_context" constant PromptTypeToolCallIDCollector (line 63) | PromptTypeToolCallIDCollector PromptType = "tool_call_id_collector" constant PromptTypeToolCallIDDetector (line 64) | PromptTypeToolCallIDDetector PromptType = "tool_call_id_detector" constant PromptTypeQuestionExecutionMonitor (line 65) | PromptTypeQuestionExecutionMonitor PromptType = "question_execution_moni... constant PromptTypeQuestionTaskPlanner (line 66) | PromptTypeQuestionTaskPlanner PromptType = "question_task_planner" constant PromptTypeTaskAssignmentWrapper (line 67) | PromptTypeTaskAssignmentWrapper PromptType = "task_assignment_wrapper" type Prompt (line 415) | type Prompt struct type AgentPrompt (line 421) | type AgentPrompt struct type AgentPrompts (line 425) | type AgentPrompts struct type AgentsPrompts (line 430) | type AgentsPrompts struct type ToolsPrompts (line 448) | type ToolsPrompts struct type DefaultPrompts (line 463) | type DefaultPrompts struct function GetDefaultPrompts (line 468) | func GetDefaultPrompts() (*DefaultPrompts, error) { type PromptsMap (line 570) | type PromptsMap type Prompter (line 572) | type Prompter interface type flowPrompter (line 578) | type flowPrompter struct method GetTemplate (line 586) | func (fp *flowPrompter) GetTemplate(promptType PromptType) (string, er... method RenderTemplate (line 594) | func (fp *flowPrompter) RenderTemplate(promptType PromptType, params a... method DumpTemplates (line 603) | func (fp *flowPrompter) DumpTemplates() ([]byte, error) { function NewFlowPrompter (line 582) | func NewFlowPrompter(prompts PromptsMap) Prompter { type defaultPrompter (line 612) | type defaultPrompter struct method GetTemplate (line 619) | func (dp *defaultPrompter) GetTemplate(promptType PromptType) (string,... method RenderTemplate (line 629) | func (dp *defaultPrompter) RenderTemplate(promptType PromptType, param... method DumpTemplates (line 638) | func (dp *defaultPrompter) DumpTemplates() ([]byte, error) { function NewDefaultPrompter (line 615) | func NewDefaultPrompter() Prompter { function RenderPrompt (line 663) | func RenderPrompt(name, prompt string, params any) (string, error) { function ReadGraphitiTemplate (line 678) | func ReadGraphitiTemplate(name string) (string, error) { constant charsetDigit (line 710) | charsetDigit = "0123456789" constant charsetLower (line 711) | charsetLower = "abcdefghijklmnopqrstuvwxyz" constant charsetUpper (line 712) | charsetUpper = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" constant charsetAlpha (line 713) | charsetAlpha = charsetLower + charsetUpper constant charsetAlnum (line 714) | charsetAlnum = charsetDigit + charsetAlpha constant charsetHex (line 715) | charsetHex = "0123456789abcdef" constant charsetHexUp (line 716) | charsetHexUp = "0123456789ABCDEF" constant charsetBase62 (line 717) | charsetBase62 = charsetDigit + charsetUpper + charsetLower type patternPart (line 722) | type patternPart struct function getCharset (line 731) | func getCharset(name string) string { function parsePattern (line 755) | func parsePattern(pattern string) []patternPart { function generateRandomString (line 804) | func generateRandomString(length int, charset string) string { function GenerateFromPattern (line 831) | func GenerateFromPattern(pattern string, functionName string) string { type PatternSample (line 853) | type PatternSample struct type PatternValidationError (line 859) | type PatternValidationError struct method Error (line 867) | func (e *PatternValidationError) Error() string { function ValidatePattern (line 880) | func ValidatePattern(pattern string, samples []PatternSample) error { function buildCharClass (line 969) | func buildCharClass(charset string) string { function describeCharset (line 995) | func describeCharset(charset string) string { function findMismatchPosition (line 1019) | func findMismatchPosition(value string, parts []patternPart, functionNam... function getPartAtPosition (line 1058) | func getPartAtPosition(parts []patternPart, position int, functionName s... FILE: backend/pkg/templates/templates_test.go function TestPromptTemplatesIntegrity (line 16) | func TestPromptTemplatesIntegrity(t *testing.T) { function validatePromptsStructure (line 37) | func validatePromptsStructure(t *testing.T, v reflect.Value, structName ... function validateSinglePrompt (line 86) | func validateSinglePrompt(t *testing.T, promptValue reflect.Value, field... function TestPromptVariablesCompleteness (line 179) | func TestPromptVariablesCompleteness(t *testing.T) { function collectPromptTypes (line 205) | func collectPromptTypes(v reflect.Value, types map[templates.PromptType]... function TestTemplateRenderability (line 233) | func TestTemplateRenderability(t *testing.T) { function testRenderability (line 246) | func testRenderability(t *testing.T, v reflect.Value, dummyData map[stri... function TestGenerateFromPattern (line 284) | func TestGenerateFromPattern(t *testing.T) { function TestValidatePattern (line 461) | func TestValidatePattern(t *testing.T) { function TestGenerateAndValidateRoundTrip (line 665) | func TestGenerateAndValidateRoundTrip(t *testing.T) { function TestValidatePatternErrorDetails (line 703) | func TestValidatePatternErrorDetails(t *testing.T) { function TestPatternEdgeCases (line 752) | func TestPatternEdgeCases(t *testing.T) { function TestQuestionExecutionMonitorPrompt (line 852) | func TestQuestionExecutionMonitorPrompt(t *testing.T) { function TestQuestionTaskPlannerPrompt (line 944) | func TestQuestionTaskPlannerPrompt(t *testing.T) { function TestTaskAssignmentWrapperPrompt (line 1017) | func TestTaskAssignmentWrapperPrompt(t *testing.T) { FILE: backend/pkg/templates/validator/testdata.go function CreateDummyTemplateData (line 16) | func CreateDummyTemplateData() map[string]any { function createBarrierTools (line 334) | func createBarrierTools() []tools.FunctionInfo { FILE: backend/pkg/templates/validator/validator.go type ValidationError (line 14) | type ValidationError struct method Error (line 21) | func (e *ValidationError) Error() string { type ErrorType (line 28) | type ErrorType constant ErrorTypeSyntax (line 31) | ErrorTypeSyntax ErrorType = "Syntax Error" constant ErrorTypeUnauthorizedVar (line 32) | ErrorTypeUnauthorizedVar ErrorType = "Unauthorized Variable" constant ErrorTypeRenderingFailed (line 33) | ErrorTypeRenderingFailed ErrorType = "Rendering Failed" constant ErrorTypeEmptyTemplate (line 34) | ErrorTypeEmptyTemplate ErrorType = "Empty Template" constant ErrorTypeVariableTypeMismatch (line 35) | ErrorTypeVariableTypeMismatch ErrorType = "Variable Type Mismatch" function ValidatePrompt (line 39) | func ValidatePrompt(promptType templates.PromptType, prompt string) error { function ExtractTemplateVariables (line 102) | func ExtractTemplateVariables(templateContent string) ([]string, error) { function extractVariablesFromNode (line 147) | func extractVariablesFromNode(node parse.Node, variables map[string]bool... function extractVariablesFromPipe (line 186) | func extractVariablesFromPipe(pipe *parse.PipeNode, variables map[string... function extractVariablesFromCommand (line 197) | func extractVariablesFromCommand(cmd *parse.CommandNode, variables map[s... function extractVariablesFromArg (line 208) | func extractVariablesFromArg(arg parse.Node, variables map[string]bool, ... function isBuiltinFunction (line 237) | func isBuiltinFunction(name string) bool { function testTemplateRendering (line 256) | func testTemplateRendering(templateContent string, data map[string]any) ... function extractSyntaxDetails (line 262) | func extractSyntaxDetails(err error) string { function extractRenderingDetails (line 277) | func extractRenderingDetails(err error) string { FILE: backend/pkg/templates/validator/validator_test.go function TestDummyDataCompleteness (line 13) | func TestDummyDataCompleteness(t *testing.T) { function TestExtractTemplateVariables (line 56) | func TestExtractTemplateVariables(t *testing.T) { function TestValidatePrompt (line 135) | func TestValidatePrompt(t *testing.T) { function TestValidationErrorTypes (line 230) | func TestValidationErrorTypes(t *testing.T) { function TestValidatePromptWithRealTemplates (line 287) | func TestValidatePromptWithRealTemplates(t *testing.T) { function TestVariableExtractionEdgeCases (line 328) | func TestVariableExtractionEdgeCases(t *testing.T) { FILE: backend/pkg/terminal/output.go constant termColumnWidth (line 16) | termColumnWidth = 120 function Info (line 43) | func Info(format string, a ...interface{}) { function Success (line 47) | func Success(format string, a ...interface{}) { function Error (line 51) | func Error(format string, a ...interface{}) { function Warning (line 55) | func Warning(format string, a ...interface{}) { function PrintInfo (line 60) | func PrintInfo(format string, a ...interface{}) { function PrintSuccess (line 65) | func PrintSuccess(format string, a ...interface{}) { function PrintError (line 70) | func PrintError(format string, a ...interface{}) { function PrintWarning (line 75) | func PrintWarning(format string, a ...interface{}) { function PrintMock (line 80) | func PrintMock(format string, a ...interface{}) { function PrintHeader (line 85) | func PrintHeader(text string) { function PrintKeyValue (line 90) | func PrintKeyValue(key, value string) { function PrintValueFormat (line 96) | func PrintValueFormat(format string, a ...interface{}) { function PrintKeyValueFormat (line 101) | func PrintKeyValueFormat(key string, format string, a ...interface{}) { function PrintThinSeparator (line 107) | func PrintThinSeparator() { function PrintThickSeparator (line 112) | func PrintThickSeparator() { function PrintJSON (line 117) | func PrintJSON(data any) { function RenderMarkdown (line 127) | func RenderMarkdown(markdown string) { function InteractivePromptContext (line 153) | func InteractivePromptContext(ctx context.Context, message string, reade... function GetYesNoInputContext (line 203) | func GetYesNoInputContext(ctx context.Context, message string, reader io... function IsMarkdownContent (line 230) | func IsMarkdownContent(content string) bool { function PrintResult (line 244) | func PrintResult(result string) { function PrintResultWithKey (line 253) | func PrintResultWithKey(key, result string) { FILE: backend/pkg/terminal/output_test.go function TestIsMarkdownContent_Headers (line 13) | func TestIsMarkdownContent_Headers(t *testing.T) { function TestIsMarkdownContent_CodeBlocks (line 33) | func TestIsMarkdownContent_CodeBlocks(t *testing.T) { function TestIsMarkdownContent_Bold (line 37) | func TestIsMarkdownContent_Bold(t *testing.T) { function TestIsMarkdownContent_Links (line 41) | func TestIsMarkdownContent_Links(t *testing.T) { function TestIsMarkdownContent_Lists (line 45) | func TestIsMarkdownContent_Lists(t *testing.T) { function TestIsMarkdownContent_PlainText (line 49) | func TestIsMarkdownContent_PlainText(t *testing.T) { function TestIsMarkdownContent_EdgeCases (line 54) | func TestIsMarkdownContent_EdgeCases(t *testing.T) { function TestInteractivePromptContext_ReadsInput (line 79) | func TestInteractivePromptContext_ReadsInput(t *testing.T) { function TestInteractivePromptContext_TrimsWhitespace (line 87) | func TestInteractivePromptContext_TrimsWhitespace(t *testing.T) { function TestInteractivePromptContext_CancelledContext (line 95) | func TestInteractivePromptContext_CancelledContext(t *testing.T) { function TestGetYesNoInputContext_Yes (line 106) | func TestGetYesNoInputContext_Yes(t *testing.T) { function TestGetYesNoInputContext_No (line 127) | func TestGetYesNoInputContext_No(t *testing.T) { function TestGetYesNoInputContext_CancelledContext (line 148) | func TestGetYesNoInputContext_CancelledContext(t *testing.T) { function TestGetYesNoInputContext_InvalidInput (line 159) | func TestGetYesNoInputContext_InvalidInput(t *testing.T) { function TestGetYesNoInputContext_EOFError (line 168) | func TestGetYesNoInputContext_EOFError(t *testing.T) { function TestInteractivePromptContext_EOFError (line 176) | func TestInteractivePromptContext_EOFError(t *testing.T) { function TestInteractivePromptContext_EmptyInput (line 184) | func TestInteractivePromptContext_EmptyInput(t *testing.T) { function TestPrintJSON_ValidData (line 192) | func TestPrintJSON_ValidData(t *testing.T) { function TestPrintJSON_InvalidData (line 199) | func TestPrintJSON_InvalidData(t *testing.T) { function TestPrintJSON_ComplexData (line 205) | func TestPrintJSON_ComplexData(t *testing.T) { function TestPrintJSON_NilData (line 219) | func TestPrintJSON_NilData(t *testing.T) { function TestRenderMarkdown_Empty (line 225) | func TestRenderMarkdown_Empty(t *testing.T) { function TestRenderMarkdown_ValidContent (line 231) | func TestRenderMarkdown_ValidContent(t *testing.T) { function TestPrintResult_PlainText (line 237) | func TestPrintResult_PlainText(t *testing.T) { function TestPrintResult_MarkdownContent (line 243) | func TestPrintResult_MarkdownContent(t *testing.T) { function TestPrintResultWithKey_PlainText (line 249) | func TestPrintResultWithKey_PlainText(t *testing.T) { function TestPrintResultWithKey_MarkdownContent (line 256) | func TestPrintResultWithKey_MarkdownContent(t *testing.T) { function TestColoredOutputFunctions_DoNotPanic (line 263) | func TestColoredOutputFunctions_DoNotPanic(t *testing.T) { function TestPrintKeyValue_DoesNotPanic (line 292) | func TestPrintKeyValue_DoesNotPanic(t *testing.T) { function TestPrintKeyValueFormat_DoesNotPanic (line 298) | func TestPrintKeyValueFormat_DoesNotPanic(t *testing.T) { function TestPrintSeparators_DoNotPanic (line 304) | func TestPrintSeparators_DoNotPanic(t *testing.T) { FILE: backend/pkg/tools/args.go type CodeAction (line 9) | type CodeAction constant ReadFile (line 12) | ReadFile CodeAction = "read_file" constant UpdateFile (line 13) | UpdateFile CodeAction = "update_file" type FileAction (line 16) | type FileAction struct type BrowserAction (line 23) | type BrowserAction constant Markdown (line 26) | Markdown BrowserAction = "markdown" constant HTML (line 27) | HTML BrowserAction = "html" constant Links (line 28) | Links BrowserAction = "links" type Browser (line 31) | type Browser struct type SubtaskInfo (line 37) | type SubtaskInfo struct type SubtaskList (line 42) | type SubtaskList struct type SubtaskOperationType (line 48) | type SubtaskOperationType constant SubtaskOpAdd (line 51) | SubtaskOpAdd SubtaskOperationType = "add" constant SubtaskOpRemove (line 52) | SubtaskOpRemove SubtaskOperationType = "remove" constant SubtaskOpModify (line 53) | SubtaskOpModify SubtaskOperationType = "modify" constant SubtaskOpReorder (line 54) | SubtaskOpReorder SubtaskOperationType = "reorder" type SubtaskOperation (line 58) | type SubtaskOperation struct type SubtaskInfoPatch (line 66) | type SubtaskInfoPatch struct type SubtaskPatch (line 72) | type SubtaskPatch struct type TaskResult (line 77) | type TaskResult struct type AskUser (line 83) | type AskUser struct type Done (line 87) | type Done struct type TerminalAction (line 93) | type TerminalAction struct type AskAdvice (line 101) | type AskAdvice struct type ComplexSearch (line 108) | type ComplexSearch struct type SearchAction (line 113) | type SearchAction struct type SearchResult (line 119) | type SearchResult struct type SploitusAction (line 124) | type SploitusAction struct type GraphitiSearchAction (line 132) | type GraphitiSearchAction struct type EnricherResult (line 148) | type EnricherResult struct type MemoristAction (line 153) | type MemoristAction struct type MemoristResult (line 160) | type MemoristResult struct type SearchInMemoryAction (line 165) | type SearchInMemoryAction struct type SearchGuideAction (line 172) | type SearchGuideAction struct type StoreGuideAction (line 178) | type StoreGuideAction struct type SearchAnswerAction (line 185) | type SearchAnswerAction struct type StoreAnswerAction (line 191) | type StoreAnswerAction struct type SearchCodeAction (line 198) | type SearchCodeAction struct type StoreCodeAction (line 204) | type StoreCodeAction struct type MaintenanceAction (line 213) | type MaintenanceAction struct type MaintenanceResult (line 218) | type MaintenanceResult struct type CoderAction (line 223) | type CoderAction struct type CodeResult (line 228) | type CodeResult struct type PentesterAction (line 233) | type PentesterAction struct type HackResult (line 238) | type HackResult struct type Bool (line 243) | type Bool method UnmarshalJSON (line 245) | func (b *Bool) UnmarshalJSON(data []byte) error { method MarshalJSON (line 258) | func (b *Bool) MarshalJSON() ([]byte, error) { method Bool (line 265) | func (b *Bool) Bool() bool { method String (line 272) | func (b *Bool) String() string { type Int64 (line 279) | type Int64 method UnmarshalJSON (line 281) | func (i *Int64) UnmarshalJSON(data []byte) error { method MarshalJSON (line 291) | func (i *Int64) MarshalJSON() ([]byte, error) { method Int (line 298) | func (i *Int64) Int() int { method Int64 (line 305) | func (i *Int64) Int64() int64 { method PtrInt64 (line 312) | func (i *Int64) PtrInt64() *int64 { method String (line 320) | func (i *Int64) String() string { FILE: backend/pkg/tools/args_test.go function boolPtr (line 8) | func boolPtr(b bool) *Bool { function int64Ptr (line 13) | func int64Ptr(i int64) *Int64 { function TestBoolUnmarshalJSON (line 18) | func TestBoolUnmarshalJSON(t *testing.T) { function TestBoolMarshalJSON (line 67) | func TestBoolMarshalJSON(t *testing.T) { function TestBoolBool (line 95) | func TestBoolBool(t *testing.T) { function TestBoolString (line 119) | func TestBoolString(t *testing.T) { function TestInt64UnmarshalJSON (line 143) | func TestInt64UnmarshalJSON(t *testing.T) { function TestInt64MarshalJSON (line 192) | func TestInt64MarshalJSON(t *testing.T) { function TestInt64Int (line 221) | func TestInt64Int(t *testing.T) { function TestInt64Int64Method (line 246) | func TestInt64Int64Method(t *testing.T) { function TestInt64PtrInt64 (line 271) | func TestInt64PtrInt64(t *testing.T) { function TestInt64String (line 307) | func TestInt64String(t *testing.T) { function TestBoolJSONRoundTrip (line 333) | func TestBoolJSONRoundTrip(t *testing.T) { function TestInt64JSONRoundTrip (line 379) | func TestInt64JSONRoundTrip(t *testing.T) { function TestSearchInMemoryAction_QuestionsUnmarshal (line 424) | func TestSearchInMemoryAction_QuestionsUnmarshal(t *testing.T) { function TestSearchGuideAction_QuestionsUnmarshal (line 470) | func TestSearchGuideAction_QuestionsUnmarshal(t *testing.T) { function TestSearchAnswerAction_QuestionsUnmarshal (line 510) | func TestSearchAnswerAction_QuestionsUnmarshal(t *testing.T) { function TestSearchCodeAction_QuestionsUnmarshal (line 550) | func TestSearchCodeAction_QuestionsUnmarshal(t *testing.T) { FILE: backend/pkg/tools/browser.go constant minMdContentSize (line 25) | minMdContentSize = 50 constant minHtmlContentSize (line 26) | minHtmlContentSize = 300 constant minImgContentSize (line 27) | minImgContentSize = 2048 type browser (line 44) | type browser struct method wrapCommandResult (line 70) | func (b *browser) wrapCommandResult(ctx context.Context, name, result,... method Handle (line 103) | func (b *browser) Handle(ctx context.Context, name string, args json.R... method ContentMD (line 145) | func (b *browser) ContentMD(ctx context.Context, url string) (string, ... method ContentHTML (line 183) | func (b *browser) ContentHTML(ctx context.Context, url string) (string... method Links (line 221) | func (b *browser) Links(ctx context.Context, url string) (string, stri... method resolveUrl (line 259) | func (b *browser) resolveUrl(targetURL string) (*url.URL, error) { method writeScreenshotToFile (line 316) | func (b *browser) writeScreenshotToFile(screenshot []byte) (string, er... method getMD (line 342) | func (b *browser) getMD(targetURL string) (string, error) { method getHTML (line 364) | func (b *browser) getHTML(targetURL string) (string, error) { method getLinks (line 386) | func (b *browser) getLinks(targetURL string) (string, error) { method getScreenshot (line 428) | func (b *browser) getScreenshot(targetURL string) (string, error) { method callScraper (line 451) | func (b *browser) callScraper(url string) ([]byte, error) { method IsAvailable (line 478) | func (b *browser) IsAvailable() bool { function NewBrowserTool (line 54) | func NewBrowserTool( FILE: backend/pkg/tools/browser_test.go type screenshotProviderMock (line 17) | type screenshotProviderMock struct method PutScreenshot (line 27) | func (m *screenshotProviderMock) PutScreenshot(_ context.Context, name... function TestBrowserResolveUrl (line 39) | func TestBrowserResolveUrl(t *testing.T) { function TestBrowserIsAvailable (line 162) | func TestBrowserIsAvailable(t *testing.T) { function newTestScraper (line 211) | func newTestScraper(t *testing.T, screenshotBehavior string) *httptest.S... function TestContentMD_ScreenshotFailure_ReturnsContent (line 248) | func TestContentMD_ScreenshotFailure_ReturnsContent(t *testing.T) { function TestContentHTML_ScreenshotFailure_ReturnsContent (line 271) | func TestContentHTML_ScreenshotFailure_ReturnsContent(t *testing.T) { function TestLinks_ScreenshotFailure_ReturnsContent (line 294) | func TestLinks_ScreenshotFailure_ReturnsContent(t *testing.T) { function TestContentMD_ScreenshotSmall_ReturnsContent (line 317) | func TestContentMD_ScreenshotSmall_ReturnsContent(t *testing.T) { function TestContentMD_BothSucceed_ReturnsContentAndScreenshot (line 340) | func TestContentMD_BothSucceed_ReturnsContentAndScreenshot(t *testing.T) { function TestGetHTML_UsesCorrectMinContentSize (line 368) | func TestGetHTML_UsesCorrectMinContentSize(t *testing.T) { function TestBrowserHandle_ValidationErrors (line 394) | func TestBrowserHandle_ValidationErrors(t *testing.T) { function TestBrowserHandle_MarkdownSuccess_StoresScreenshot (line 421) | func TestBrowserHandle_MarkdownSuccess_StoresScreenshot(t *testing.T) { function TestWrapCommandResult_ErrorIsSwallowed (line 456) | func TestWrapCommandResult_ErrorIsSwallowed(t *testing.T) { FILE: backend/pkg/tools/code.go constant codeVectorStoreThreshold (line 22) | codeVectorStoreThreshold = 0.2 constant codeVectorStoreResultLimit (line 23) | codeVectorStoreResultLimit = 3 constant codeVectorStoreDefaultType (line 24) | codeVectorStoreDefaultType = "code" constant codeNotFoundMessage (line 25) | codeNotFoundMessage = "nothing found in code samples store and yo... type code (line 28) | type code struct method Handle (line 54) | func (c *code) Handle(ctx context.Context, name string, args json.RawM... method IsAvailable (line 321) | func (c *code) IsAvailable() bool { function NewCodeTool (line 37) | func NewCodeTool( FILE: backend/pkg/tools/context.go type AgentContextKey (line 9) | type AgentContextKey type agentContext (line 13) | type agentContext struct function GetAgentContext (line 18) | func GetAgentContext(ctx context.Context) (agentContext, bool) { function PutAgentContext (line 23) | func PutAgentContext(ctx context.Context, agent database.MsgchainType) c... FILE: backend/pkg/tools/context_test.go function TestGetAgentContextEmpty (line 10) | func TestGetAgentContextEmpty(t *testing.T) { function TestPutAgentContextFirst (line 20) | func TestPutAgentContextFirst(t *testing.T) { function TestPutAgentContextChaining (line 39) | func TestPutAgentContextChaining(t *testing.T) { function TestPutAgentContextTripleChaining (line 61) | func TestPutAgentContextTripleChaining(t *testing.T) { function TestPutAgentContextIsolation (line 86) | func TestPutAgentContextIsolation(t *testing.T) { function TestPutAgentContextDoesNotMutatePreviousDerivedContext (line 110) | func TestPutAgentContextDoesNotMutatePreviousDerivedContext(t *testing.T) { function TestGetAgentContextIgnoresOtherContextValues (line 137) | func TestGetAgentContextIgnoresOtherContextValues(t *testing.T) { FILE: backend/pkg/tools/duckduckgo.go constant duckduckgoMaxResults (line 25) | duckduckgoMaxResults = 10 constant duckduckgoMaxRetries (line 26) | duckduckgoMaxRetries = 3 constant duckduckgoSearchURL (line 27) | duckduckgoSearchURL = "https://html.duckduckgo.com/html/" constant duckduckgoTimeout (line 28) | duckduckgoTimeout = 30 * time.Second constant duckduckgoUserAgent (line 29) | duckduckgoUserAgent = "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) ... constant RegionUS (line 34) | RegionUS = "us-en" constant RegionUK (line 35) | RegionUK = "uk-en" constant RegionDE (line 36) | RegionDE = "de-de" constant RegionFR (line 37) | RegionFR = "fr-fr" constant RegionJP (line 38) | RegionJP = "jp-jp" constant RegionCN (line 39) | RegionCN = "cn-zh" constant RegionRU (line 40) | RegionRU = "ru-ru" constant DuckDuckGoSafeSearchStrict (line 45) | DuckDuckGoSafeSearchStrict = "strict" constant DuckDuckGoSafeSearchModerate (line 46) | DuckDuckGoSafeSearchModerate = "moderate" constant DuckDuckGoSafeSearchOff (line 47) | DuckDuckGoSafeSearchOff = "off" constant TimeRangeDay (line 52) | TimeRangeDay = "d" constant TimeRangeWeek (line 53) | TimeRangeWeek = "w" constant TimeRangeMonth (line 54) | TimeRangeMonth = "m" constant TimeRangeYear (line 55) | TimeRangeYear = "y" type searchResult (line 59) | type searchResult struct type searchResponse (line 66) | type searchResponse struct type duckduckgo (line 71) | type duckduckgo struct method Handle (line 95) | func (d *duckduckgo) Handle(ctx context.Context, name string, args jso... method search (line 166) | func (d *duckduckgo) search(ctx context.Context, query string, maxResu... method buildFormData (line 246) | func (d *duckduckgo) buildFormData(query string) string { method parseHTMLResponse (line 268) | func (d *duckduckgo) parseHTMLResponse(body []byte) (*searchResponse, ... method parseHTMLStructured (line 291) | func (d *duckduckgo) parseHTMLStructured(body []byte) ([]searchResult,... method findResultNodes (line 304) | func (d *duckduckgo) findResultNodes(n *html.Node, results *[]searchRe... method extractResultFromNode (line 322) | func (d *duckduckgo) extractResultFromNode(n *html.Node) searchResult { method findElement (line 352) | func (d *duckduckgo) findElement(n *html.Node, predicate func(*html.No... method hasClass (line 367) | func (d *duckduckgo) hasClass(n *html.Node, className string) bool { method getAttr (line 382) | func (d *duckduckgo) getAttr(n *html.Node, key string) string { method getTextContent (line 392) | func (d *duckduckgo) getTextContent(n *html.Node) string { method parseHTMLRegex (line 406) | func (d *duckduckgo) parseHTMLRegex(body []byte) ([]searchResult, erro... method cleanText (line 458) | func (d *duckduckgo) cleanText(text string) string { method formatSearchResults (line 510) | func (d *duckduckgo) formatSearchResults(results []searchResult) string { method IsAvailable (line 527) | func (d *duckduckgo) IsAvailable() bool { method enabled (line 533) | func (d *duckduckgo) enabled() bool { method region (line 537) | func (d *duckduckgo) region() string { method safeSearch (line 545) | func (d *duckduckgo) safeSearch() string { method timeRange (line 558) | func (d *duckduckgo) timeRange() string { function NewDuckDuckGoTool (line 79) | func NewDuckDuckGoTool( FILE: backend/pkg/tools/duckduckgo_test.go function testDuckDuckGoConfig (line 16) | func testDuckDuckGoConfig() *config.Config { function TestDuckDuckGoHandle (line 25) | func TestDuckDuckGoHandle(t *testing.T) { function TestDuckDuckGoIsAvailable (line 154) | func TestDuckDuckGoIsAvailable(t *testing.T) { function TestDuckDuckGoHandle_ValidationAndSwallowedError (line 187) | func TestDuckDuckGoHandle_ValidationAndSwallowedError(t *testing.T) { function TestDuckDuckGoHandle_StatusCodeErrors (line 240) | func TestDuckDuckGoHandle_StatusCodeErrors(t *testing.T) { function TestDuckDuckGoParseHTMLStructured (line 292) | func TestDuckDuckGoParseHTMLStructured(t *testing.T) { function TestDuckDuckGoParseHTMLRegex (line 339) | func TestDuckDuckGoParseHTMLRegex(t *testing.T) { function TestDuckDuckGoParseHTMLRegex_BlockBoundaries (line 386) | func TestDuckDuckGoParseHTMLRegex_BlockBoundaries(t *testing.T) { function TestDuckDuckGoCleanText (line 447) | func TestDuckDuckGoCleanText(t *testing.T) { function TestDuckDuckGoFormatResults (line 492) | func TestDuckDuckGoFormatResults(t *testing.T) { function TestDuckDuckGoMaxResultsClamp (line 545) | func TestDuckDuckGoMaxResultsClamp(t *testing.T) { function TestDuckDuckGoSafeSearchMapping (line 602) | func TestDuckDuckGoSafeSearchMapping(t *testing.T) { function TestDuckDuckGoRegionDefault (line 624) | func TestDuckDuckGoRegionDefault(t *testing.T) { function TestDuckDuckGoTimeRange (line 645) | func TestDuckDuckGoTimeRange(t *testing.T) { FILE: backend/pkg/tools/executor.go constant DefaultResultSizeLimit (line 24) | DefaultResultSizeLimit = 16 * 1024 constant maxArgValueLength (line 26) | maxArgValueLength = 1024 type dummyMessage (line 28) | type dummyMessage struct type observationWrapper (line 33) | type observationWrapper interface type toolObservationWrapper (line 39) | type toolObservationWrapper struct method ctx (line 44) | func (w *toolObservationWrapper) ctx() context.Context { method end (line 48) | func (w *toolObservationWrapper) end(result string, err error, duratio... type agentObservationWrapper (line 66) | type agentObservationWrapper struct method ctx (line 71) | func (w *agentObservationWrapper) ctx() context.Context { method end (line 75) | func (w *agentObservationWrapper) end(result string, err error, durati... type spanObservationWrapper (line 93) | type spanObservationWrapper struct method ctx (line 98) | func (w *spanObservationWrapper) ctx() context.Context { method end (line 102) | func (w *spanObservationWrapper) end(result string, err error, duratio... type noopObservationWrapper (line 120) | type noopObservationWrapper struct method ctx (line 124) | func (w *noopObservationWrapper) ctx() context.Context { method end (line 128) | func (w *noopObservationWrapper) end(result string, err error, duratio... type customExecutor (line 132) | type customExecutor struct method Tools (line 148) | func (ce *customExecutor) Tools() []llms.Tool { method createToolObservation (line 160) | func (ce *customExecutor) createToolObservation(ctx context.Context, n... method createAgentObservation (line 187) | func (ce *customExecutor) createAgentObservation(ctx context.Context, ... method createSpanObservation (line 214) | func (ce *customExecutor) createSpanObservation(ctx context.Context, n... method Execute (line 241) | func (ce *customExecutor) Execute( method IsBarrierFunction (line 388) | func (ce *customExecutor) IsBarrierFunction(name string) bool { method IsFunctionExists (line 393) | func (ce *customExecutor) IsFunctionExists(name string) bool { method GetBarrierToolNames (line 398) | func (ce *customExecutor) GetBarrierToolNames() []string { method GetBarrierTools (line 407) | func (ce *customExecutor) GetBarrierTools() []FunctionInfo { method GetToolSchema (line 423) | func (ce *customExecutor) GetToolSchema(name string) (*schema.Schema, ... method converToJSONSchema (line 437) | func (ce *customExecutor) converToJSONSchema(params any) (*schema.Sche... method getSummarizePrompt (line 451) | func (ce *customExecutor) getSummarizePrompt(funcName, funcArgs, resul... method getMessage (line 528) | func (ce *customExecutor) getMessage(args json.RawMessage) string { method storeToolResult (line 537) | func (ce *customExecutor) storeToolResult(ctx context.Context, name, r... method argsToMarkdown (line 622) | func (ce *customExecutor) argsToMarkdown(args json.RawMessage) (string... FILE: backend/pkg/tools/executor_test.go function TestGetMessage (line 12) | func TestGetMessage(t *testing.T) { function TestArgsToMarkdown (line 66) | func TestArgsToMarkdown(t *testing.T) { function TestIsBarrierFunction (line 139) | func TestIsBarrierFunction(t *testing.T) { function TestGetBarrierToolNames (line 171) | func TestGetBarrierToolNames(t *testing.T) { function TestToolsReturnsDefinitions (line 198) | func TestToolsReturnsDefinitions(t *testing.T) { function TestExecuteEarlyReturns (line 220) | func TestExecuteEarlyReturns(t *testing.T) { function TestGetToolSchemaFallbackAndUnknown (line 256) | func TestGetToolSchemaFallbackAndUnknown(t *testing.T) { function TestGetBarrierToolsSkipsUnknownBarriers (line 288) | func TestGetBarrierToolsSkipsUnknownBarriers(t *testing.T) { function TestGetSummarizePromptTruncatesLongArgValues (line 310) | func TestGetSummarizePromptTruncatesLongArgValues(t *testing.T) { function TestConverToJSONSchemaErrorPath (line 338) | func TestConverToJSONSchemaErrorPath(t *testing.T) { FILE: backend/pkg/tools/google.go constant googleMaxResults (line 20) | googleMaxResults = 10 type google (line 22) | type google struct method Handle (line 45) | func (g *google) Handle(ctx context.Context, name string, args json.Ra... method search (line 114) | func (g *google) search(ctx context.Context, svc *customsearch.Service... method formatResults (line 123) | func (g *google) formatResults(res *customsearch.Search) string { method newSearchService (line 134) | func (g *google) newSearchService(ctx context.Context) (*customsearch.... method IsAvailable (line 153) | func (g *google) IsAvailable() bool { method apiKey (line 157) | func (g *google) apiKey() string { method cxKey (line 165) | func (g *google) cxKey() string { method lrKey (line 173) | func (g *google) lrKey() string { function NewGoogleTool (line 30) | func NewGoogleTool( FILE: backend/pkg/tools/google_test.go constant testGoogleAPIKey (line 16) | testGoogleAPIKey = "test-api-key" constant testGoogleCXKey (line 17) | testGoogleCXKey = "test-cx-key" constant testGoogleLRKey (line 18) | testGoogleLRKey = "lang_en" function testGoogleConfig (line 21) | func testGoogleConfig() *config.Config { function TestGoogleIsAvailable (line 29) | func TestGoogleIsAvailable(t *testing.T) { function TestGoogleFormatResults (line 72) | func TestGoogleFormatResults(t *testing.T) { function TestGoogleNewSearchService (line 151) | func TestGoogleNewSearchService(t *testing.T) { function TestGoogleHandle_ValidationAndSwallowedError (line 181) | func TestGoogleHandle_ValidationAndSwallowedError(t *testing.T) { function TestGoogleHandle_WithAgentContext (line 211) | func TestGoogleHandle_WithAgentContext(t *testing.T) { function TestGoogleMaxResultsClamp (line 266) | func TestGoogleMaxResultsClamp(t *testing.T) { function TestGoogleConfigHelpers (line 306) | func TestGoogleConfigHelpers(t *testing.T) { function TestGoogleConfigHelpers_NilConfig (line 320) | func TestGoogleConfigHelpers_NilConfig(t *testing.T) { FILE: backend/pkg/tools/graphiti_search.go type GraphitiSearcher (line 16) | type GraphitiSearcher interface constant DefaultTemporalMaxResults (line 29) | DefaultTemporalMaxResults = 15 constant DefaultRecentMaxResults (line 30) | DefaultRecentMaxResults = 10 constant DefaultSuccessfulMaxResults (line 31) | DefaultSuccessfulMaxResults = 15 constant DefaultEpisodeMaxResults (line 32) | DefaultEpisodeMaxResults = 10 constant DefaultRelationshipMaxResults (line 33) | DefaultRelationshipMaxResults = 20 constant DefaultDiverseMaxResults (line 34) | DefaultDiverseMaxResults = 10 constant DefaultLabelMaxResults (line 35) | DefaultLabelMaxResults = 25 constant DefaultMaxDepth (line 37) | DefaultMaxDepth = 2 constant DefaultMinMentions (line 38) | DefaultMinMentions = 2 constant DefaultDiversityLevel (line 39) | DefaultDiversityLevel = "medium" constant DefaultRecencyWindow (line 40) | DefaultRecencyWindow = "24h" type graphitiSearchTool (line 58) | type graphitiSearchTool struct method IsAvailable (line 80) | func (t *graphitiSearchTool) IsAvailable() bool { method Handle (line 85) | func (t *graphitiSearchTool) Handle(ctx context.Context, name string, ... method handleTemporalWindowSearch (line 156) | func (t *graphitiSearchTool) handleTemporalWindowSearch( method handleEntityRelationshipsSearch (line 204) | func (t *graphitiSearchTool) handleEntityRelationshipsSearch( method handleDiverseResultsSearch (line 257) | func (t *graphitiSearchTool) handleDiverseResultsSearch( method handleEpisodeContextSearch (line 293) | func (t *graphitiSearchTool) handleEpisodeContextSearch( method handleSuccessfulToolsSearch (line 320) | func (t *graphitiSearchTool) handleSuccessfulToolsSearch( method handleRecentContextSearch (line 353) | func (t *graphitiSearchTool) handleRecentContextSearch( method handleEntityByLabelSearch (line 389) | func (t *graphitiSearchTool) handleEntityByLabelSearch( function NewGraphitiSearchTool (line 66) | func NewGraphitiSearchTool( function FormatGraphitiTemporalResults (line 427) | func FormatGraphitiTemporalResults( function FormatGraphitiEntityRelationshipResults (line 500) | func FormatGraphitiEntityRelationshipResults( function FormatGraphitiDiverseResults (line 553) | func FormatGraphitiDiverseResults( function FormatGraphitiEpisodeContextResults (line 603) | func FormatGraphitiEpisodeContextResults( function FormatGraphitiSuccessfulToolsResults (line 645) | func FormatGraphitiSuccessfulToolsResults( function FormatGraphitiRecentContextResults (line 686) | func FormatGraphitiRecentContextResults( function FormatGraphitiEntityByLabelResults (line 741) | func FormatGraphitiEntityByLabelResults( function truncate (line 786) | func truncate(s string, maxLen int) string { FILE: backend/pkg/tools/guide.go constant guideVectorStoreThreshold (line 22) | guideVectorStoreThreshold = 0.2 constant guideVectorStoreResultLimit (line 23) | guideVectorStoreResultLimit = 3 constant guideVectorStoreDefaultType (line 24) | guideVectorStoreDefaultType = "guide" constant guideNotFoundMessage (line 25) | guideNotFoundMessage = "nothing found in guide store and you need... type guide (line 28) | type guide struct method Handle (line 53) | func (g *guide) Handle(ctx context.Context, name string, args json.Raw... method IsAvailable (line 314) | func (g *guide) IsAvailable() bool { function NewGuideTool (line 37) | func NewGuideTool( FILE: backend/pkg/tools/memory.go constant memoryVectorStoreThreshold (line 22) | memoryVectorStoreThreshold = 0.2 constant memoryVectorStoreResultLimit (line 23) | memoryVectorStoreResultLimit = 3 constant memoryVectorStoreDefaultType (line 24) | memoryVectorStoreDefaultType = "memory" constant memoryNotFoundMessage (line 25) | memoryNotFoundMessage = "nothing found in memory store by this qu... type memory (line 28) | type memory struct method Handle (line 42) | func (m *memory) Handle(ctx context.Context, name string, args json.Ra... method IsAvailable (line 250) | func (m *memory) IsAvailable() bool { function NewMemoryTool (line 34) | func NewMemoryTool(flowID int64, store *pgvector.Store, vslp VectorStore... function getGlobalFilters (line 254) | func getGlobalFilters(filters map[string]any) (bool, map[string]any) { FILE: backend/pkg/tools/memory_utils.go function MergeAndDeduplicateDocs (line 20) | func MergeAndDeduplicateDocs(docs []schema.Document, maxDocs int) []sche... function hashContent (line 61) | func hashContent(content string) string { FILE: backend/pkg/tools/memory_utils_test.go function TestMergeAndDeduplicateDocs_EmptyInput (line 9) | func TestMergeAndDeduplicateDocs_EmptyInput(t *testing.T) { function TestMergeAndDeduplicateDocs_NoDuplicates (line 19) | func TestMergeAndDeduplicateDocs_NoDuplicates(t *testing.T) { function TestMergeAndDeduplicateDocs_WithDuplicates (line 46) | func TestMergeAndDeduplicateDocs_WithDuplicates(t *testing.T) { function TestMergeAndDeduplicateDocs_SortingByScore (line 88) | func TestMergeAndDeduplicateDocs_SortingByScore(t *testing.T) { function TestMergeAndDeduplicateDocs_LimitEnforcement (line 118) | func TestMergeAndDeduplicateDocs_LimitEnforcement(t *testing.T) { function TestMergeAndDeduplicateDocs_MetadataPreservation (line 149) | func TestMergeAndDeduplicateDocs_MetadataPreservation(t *testing.T) { function TestHashContent_Consistency (line 185) | func TestHashContent_Consistency(t *testing.T) { function TestMergeAndDeduplicateDocs_ZeroMaxDocs (line 211) | func TestMergeAndDeduplicateDocs_ZeroMaxDocs(t *testing.T) { function TestMergeAndDeduplicateDocs_ComplexScenario (line 226) | func TestMergeAndDeduplicateDocs_ComplexScenario(t *testing.T) { FILE: backend/pkg/tools/perplexity.go constant perplexityURL (line 26) | perplexityURL = "https://api.perplexity.ai/chat/completions" constant perplexityTimeout (line 27) | perplexityTimeout = 60 * time.Second constant perplexityModel (line 28) | perplexityModel = "sonar" constant perplexityTemperature (line 29) | perplexityTemperature = 0.5 constant perplexityTopP (line 30) | perplexityTopP = 0.9 constant perplexityMaxTokens (line 31) | perplexityMaxTokens = 4000 type Message (line 35) | type Message struct type CompletionRequest (line 41) | type CompletionRequest struct type CompletionResponse (line 59) | type CompletionResponse struct type Choice (line 70) | type Choice struct type Usage (line 77) | type Usage struct type perplexity (line 84) | type perplexity struct method Handle (line 111) | func (p *perplexity) Handle(ctx context.Context, name string, args jso... method search (line 171) | func (p *perplexity) search(ctx context.Context, query string) (string... method handleErrorResponse (line 246) | func (p *perplexity) handleErrorResponse(statusCode int) error { method formatResponse (line 274) | func (p *perplexity) formatResponse(ctx context.Context, response *Com... method getSummarizePrompt (line 314) | func (p *perplexity) getSummarizePrompt(query string, content string, ... method IsAvailable (line 384) | func (p *perplexity) IsAvailable() bool { method apiKey (line 388) | func (p *perplexity) apiKey() string { method model (line 396) | func (p *perplexity) model() string { method contextSize (line 404) | func (p *perplexity) contextSize() string { method temperature (line 412) | func (p *perplexity) temperature() float64 { method topP (line 416) | func (p *perplexity) topP() float64 { method maxTokens (line 420) | func (p *perplexity) maxTokens() int { method timeout (line 424) | func (p *perplexity) timeout() time.Duration { function NewPerplexityTool (line 93) | func NewPerplexityTool( FILE: backend/pkg/tools/perplexity_test.go constant testPerplexityAPIKey (line 13) | testPerplexityAPIKey = "test-key" function testPerplexityConfig (line 15) | func testPerplexityConfig() *config.Config { function TestPerplexityHandle (line 23) | func TestPerplexityHandle(t *testing.T) { function TestPerplexityIsAvailable (line 154) | func TestPerplexityIsAvailable(t *testing.T) { function TestPerplexityHandleErrorResponse (line 187) | func TestPerplexityHandleErrorResponse(t *testing.T) { function TestPerplexityFormatResponse (line 265) | func TestPerplexityFormatResponse(t *testing.T) { function TestPerplexityGetSummarizePrompt (line 342) | func TestPerplexityGetSummarizePrompt(t *testing.T) { function TestPerplexityHandle_ValidationAndSwallowedError (line 376) | func TestPerplexityHandle_ValidationAndSwallowedError(t *testing.T) { function TestPerplexityHandle_StatusCodeErrors (line 429) | func TestPerplexityHandle_StatusCodeErrors(t *testing.T) { function TestPerplexityDefaultValues (line 481) | func TestPerplexityDefaultValues(t *testing.T) { function TestPerplexityCustomModel (line 501) | func TestPerplexityCustomModel(t *testing.T) { FILE: backend/pkg/tools/proxy_test.go function testSummarizerHandler (line 33) | func testSummarizerHandler(ctx context.Context, result string) (string, ... type searchLogProviderMock (line 39) | type searchLogProviderMock struct method PutLog (line 50) | func (m *searchLogProviderMock) PutLog( type testProxy (line 73) | type testProxy struct method URL (line 169) | func (p *testProxy) URL() string { method MockURL (line 174) | func (p *testProxy) MockURL() string { method CACertPEM (line 180) | func (p *testProxy) CACertPEM() []byte { method CACertPath (line 187) | func (p *testProxy) CACertPath() string { method Close (line 192) | func (p *testProxy) Close() error { method createProxyHandler (line 230) | func (p *testProxy) createProxyHandler() http.Handler { method handleConnect (line 265) | func (p *testProxy) handleConnect(w http.ResponseWriter, r *http.Reque... method forwardRequest (line 368) | func (p *testProxy) forwardRequest(w http.ResponseWriter, r *http.Requ... method generateCertForHost (line 459) | func (p *testProxy) generateCertForHost(host string) (*tls.Certificate... function newTestProxy (line 92) | func newTestProxy(targetDomain string, mockHandler http.Handler) (*testP... function generateCA (line 413) | func generateCA() (*x509.Certificate, *rsa.PrivateKey, []byte, error) { function TestNewTestProxy_InvalidInput (line 514) | func TestNewTestProxy_InvalidInput(t *testing.T) { function TestTestProxy_BasicHTTPInterception (line 555) | func TestTestProxy_BasicHTTPInterception(t *testing.T) { function TestTestProxy_HTTPSInterception (line 590) | func TestTestProxy_HTTPSInterception(t *testing.T) { function TestTestProxy_HTTPSWithCACertFile (line 625) | func TestTestProxy_HTTPSWithCACertFile(t *testing.T) { function TestTestProxy_RequestHeaders (line 681) | func TestTestProxy_RequestHeaders(t *testing.T) { function TestTestProxy_RequestBody (line 725) | func TestTestProxy_RequestBody(t *testing.T) { function TestTestProxy_NonInterceptedDomain (line 764) | func TestTestProxy_NonInterceptedDomain(t *testing.T) { function TestTestProxy_HTTPMethods (line 823) | func TestTestProxy_HTTPMethods(t *testing.T) { function TestTestProxy_QueryParameters (line 882) | func TestTestProxy_QueryParameters(t *testing.T) { function TestTestProxy_ConcurrentRequests (line 922) | func TestTestProxy_ConcurrentRequests(t *testing.T) { function TestTestProxy_Close (line 977) | func TestTestProxy_Close(t *testing.T) { function TestTestProxy_DomainCaseInsensitive (line 1009) | func TestTestProxy_DomainCaseInsensitive(t *testing.T) { function TestTestProxy_MockServerReachable (line 1060) | func TestTestProxy_MockServerReachable(t *testing.T) { function TestTestProxy_ReverseProxyIntegration (line 1090) | func TestTestProxy_ReverseProxyIntegration(t *testing.T) { function TestTestProxy_StatusCodes (line 1139) | func TestTestProxy_StatusCodes(t *testing.T) { function TestTestProxy_ResponseHeaders (line 1189) | func TestTestProxy_ResponseHeaders(t *testing.T) { function TestTestProxy_CertificateCaching (line 1231) | func TestTestProxy_CertificateCaching(t *testing.T) { function Example_newTestProxy (line 1279) | func Example_newTestProxy() { function newProxiedHTTPClient (line 1317) | func newProxiedHTTPClient(proxy *testProxy) *http.Client { function newProxiedHTTPClientInsecure (line 1337) | func newProxiedHTTPClientInsecure(proxyURL string) *http.Client { FILE: backend/pkg/tools/registry.go constant FinalyToolName (line 12) | FinalyToolName = "done" constant AskUserToolName (line 13) | AskUserToolName = "ask" constant MaintenanceToolName (line 14) | MaintenanceToolName = "maintenance" constant MaintenanceResultToolName (line 15) | MaintenanceResultToolName = "maintenance_result" constant CoderToolName (line 16) | CoderToolName = "coder" constant CodeResultToolName (line 17) | CodeResultToolName = "code_result" constant PentesterToolName (line 18) | PentesterToolName = "pentester" constant HackResultToolName (line 19) | HackResultToolName = "hack_result" constant AdviceToolName (line 20) | AdviceToolName = "advice" constant MemoristToolName (line 21) | MemoristToolName = "memorist" constant MemoristResultToolName (line 22) | MemoristResultToolName = "memorist_result" constant BrowserToolName (line 23) | BrowserToolName = "browser" constant GoogleToolName (line 24) | GoogleToolName = "google" constant DuckDuckGoToolName (line 25) | DuckDuckGoToolName = "duckduckgo" constant TavilyToolName (line 26) | TavilyToolName = "tavily" constant TraversaalToolName (line 27) | TraversaalToolName = "traversaal" constant PerplexityToolName (line 28) | PerplexityToolName = "perplexity" constant SearxngToolName (line 29) | SearxngToolName = "searxng" constant SploitusToolName (line 30) | SploitusToolName = "sploitus" constant SearchToolName (line 31) | SearchToolName = "search" constant SearchResultToolName (line 32) | SearchResultToolName = "search_result" constant EnricherResultToolName (line 33) | EnricherResultToolName = "enricher_result" constant SearchInMemoryToolName (line 34) | SearchInMemoryToolName = "search_in_memory" constant SearchGuideToolName (line 35) | SearchGuideToolName = "search_guide" constant StoreGuideToolName (line 36) | StoreGuideToolName = "store_guide" constant SearchAnswerToolName (line 37) | SearchAnswerToolName = "search_answer" constant StoreAnswerToolName (line 38) | StoreAnswerToolName = "store_answer" constant SearchCodeToolName (line 39) | SearchCodeToolName = "search_code" constant StoreCodeToolName (line 40) | StoreCodeToolName = "store_code" constant GraphitiSearchToolName (line 41) | GraphitiSearchToolName = "graphiti_search" constant ReportResultToolName (line 42) | ReportResultToolName = "report_result" constant SubtaskListToolName (line 43) | SubtaskListToolName = "subtask_list" constant SubtaskPatchToolName (line 44) | SubtaskPatchToolName = "subtask_patch" constant TerminalToolName (line 45) | TerminalToolName = "terminal" constant FileToolName (line 46) | FileToolName = "file" type ToolType (line 49) | type ToolType method String (line 62) | func (t ToolType) String() string { constant NoneToolType (line 52) | NoneToolType ToolType = iota constant EnvironmentToolType (line 53) | EnvironmentToolType constant SearchNetworkToolType (line 54) | SearchNetworkToolType constant SearchVectorDbToolType (line 55) | SearchVectorDbToolType constant AgentToolType (line 56) | AgentToolType constant StoreAgentResultToolType (line 57) | StoreAgentResultToolType constant StoreVectorDbToolType (line 58) | StoreVectorDbToolType constant BarrierToolType (line 59) | BarrierToolType function GetToolType (line 84) | func GetToolType(name string) ToolType { function getMessageType (line 377) | func getMessageType(name string) database.MsglogType { function getMessageResultFormat (line 400) | func getMessageResultFormat(name string) database.MsglogResultFormat { function GetRegistryDefinitions (line 412) | func GetRegistryDefinitions() map[string]llms.FunctionDefinition { function GetToolTypeMapping (line 419) | func GetToolTypeMapping() map[string]ToolType { function GetToolsByType (line 426) | func GetToolsByType() map[ToolType][]string { FILE: backend/pkg/tools/registry_test.go function TestToolTypeString (line 10) | func TestToolTypeString(t *testing.T) { function TestGetToolType (line 38) | func TestGetToolType(t *testing.T) { function TestRegistryDefinitionsCompleteness (line 81) | func TestRegistryDefinitionsCompleteness(t *testing.T) { function TestRegistryDefinitionsReturnsCopy (line 103) | func TestRegistryDefinitionsReturnsCopy(t *testing.T) { function TestToolTypeMappingReturnsCopy (line 127) | func TestToolTypeMappingReturnsCopy(t *testing.T) { function TestGetToolsByType (line 151) | func TestGetToolsByType(t *testing.T) { function TestRegistryDefinitionNames (line 195) | func TestRegistryDefinitionNames(t *testing.T) { function TestGetMessageType (line 206) | func TestGetMessageType(t *testing.T) { function TestGetMessageResultFormat (line 234) | func TestGetMessageResultFormat(t *testing.T) { function TestAllowedToolListsContainKnownUniqueTools (line 259) | func TestAllowedToolListsContainKnownUniqueTools(t *testing.T) { FILE: backend/pkg/tools/search.go constant searchVectorStoreThreshold (line 22) | searchVectorStoreThreshold = 0.2 constant searchVectorStoreResultLimit (line 23) | searchVectorStoreResultLimit = 3 constant searchVectorStoreDefaultType (line 24) | searchVectorStoreDefaultType = "answer" constant searchNotFoundMessage (line 25) | searchNotFoundMessage = "nothing found in answer store and you ne... type search (line 28) | type search struct method Handle (line 54) | func (s *search) Handle(ctx context.Context, name string, args json.Ra... method IsAvailable (line 300) | func (s *search) IsAvailable() bool { function NewSearchTool (line 37) | func NewSearchTool( FILE: backend/pkg/tools/searxng.go constant defaultSearxngTimeout (line 23) | defaultSearxngTimeout = 30 * time.Second type searxng (line 26) | type searxng struct method IsAvailable (line 52) | func (s *searxng) IsAvailable() bool { method Handle (line 56) | func (s *searxng) Handle(ctx context.Context, name string, args json.R... method search (line 114) | func (s *searxng) search(ctx context.Context, query string, maxResults... method parseHTTPResponse (line 166) | func (s *searxng) parseHTTPResponse(resp *http.Response, query string)... method formatResults (line 179) | func (s *searxng) formatResults(results []SearxngResult, query string)... method baseURL (line 217) | func (s *searxng) baseURL() string { method categories (line 225) | func (s *searxng) categories() string { method language (line 233) | func (s *searxng) language() string { method safeSearch (line 241) | func (s *searxng) safeSearch() string { method timeRange (line 249) | func (s *searxng) timeRange() string { method timeout (line 257) | func (s *searxng) timeout() time.Duration { function NewSearxngTool (line 35) | func NewSearxngTool( type SearxngResult (line 266) | type SearxngResult struct type SearxngResponse (line 276) | type SearxngResponse struct type SearxngInfo (line 283) | type SearxngInfo struct FILE: backend/pkg/tools/searxng_test.go constant testSearxngURL (line 14) | testSearxngURL = "http://searxng.example.com" function testSearxngConfig (line 16) | func testSearxngConfig() *config.Config { function TestSearxngHandle (line 27) | func TestSearxngHandle(t *testing.T) { function TestSearxngIsAvailable (line 154) | func TestSearxngIsAvailable(t *testing.T) { function TestSearxngParseHTTPResponse_StatusAndDecodeErrors (line 187) | func TestSearxngParseHTTPResponse_StatusAndDecodeErrors(t *testing.T) { function TestSearxngFormatResults_NoResults (line 230) | func TestSearxngFormatResults_NoResults(t *testing.T) { function TestSearxngFormatResults_WithResults (line 242) | func TestSearxngFormatResults_WithResults(t *testing.T) { function TestSearxngHandle_ValidationAndSwallowedError (line 281) | func TestSearxngHandle_ValidationAndSwallowedError(t *testing.T) { function TestSearxngHandle_DefaultLimit (line 335) | func TestSearxngHandle_DefaultLimit(t *testing.T) { function TestSearxngHandle_TimeRange (line 375) | func TestSearxngHandle_TimeRange(t *testing.T) { FILE: backend/pkg/tools/sploitus.go constant sploitusAPIURL (line 23) | sploitusAPIURL = "https://sploitus.com/search" constant sploitusDefaultSort (line 24) | sploitusDefaultSort = "default" constant defaultSploitusLimit (line 25) | defaultSploitusLimit = 10 constant maxSploitusLimit (line 26) | maxSploitusLimit = 25 constant defaultSploitusType (line 27) | defaultSploitusType = "exploits" constant sploitusRequestTimeout (line 28) | sploitusRequestTimeout = 30 * time.Second constant maxSourceSize (line 31) | maxSourceSize = 50 * 1024 constant maxTotalResultSize (line 32) | maxTotalResultSize = 80 * 1024 constant truncationMsgBuffer (line 33) | truncationMsgBuffer = 500 type sploitus (line 37) | type sploitus struct method Handle (line 62) | func (s *sploitus) Handle(ctx context.Context, name string, args json.... method search (line 143) | func (s *sploitus) search(ctx context.Context, query, exploitType, sor... method IsAvailable (line 211) | func (s *sploitus) IsAvailable() bool { method enabled (line 215) | func (s *sploitus) enabled() bool { function NewSploitusTool (line 46) | func NewSploitusTool( type sploitusRequest (line 220) | type sploitusRequest struct type sploitusExploit (line 230) | type sploitusExploit struct type sploitusResponse (line 243) | type sploitusResponse struct function formatSploitusResults (line 249) | func formatSploitusResults(query, exploitType string, limit int, resp sp... FILE: backend/pkg/tools/sploitus_test.go function testSploitusConfig (line 14) | func testSploitusConfig() *config.Config { function TestSploitusHandle (line 18) | func TestSploitusHandle(t *testing.T) { function TestSploitusIsAvailable (line 164) | func TestSploitusIsAvailable(t *testing.T) { function TestSploitusHandle_ValidationAndSwallowedError (line 197) | func TestSploitusHandle_ValidationAndSwallowedError(t *testing.T) { function TestSploitusHandle_StatusCodeErrors (line 250) | func TestSploitusHandle_StatusCodeErrors(t *testing.T) { function TestSploitusFormatResults (line 303) | func TestSploitusFormatResults(t *testing.T) { function TestSploitusDefaultValues (line 423) | func TestSploitusDefaultValues(t *testing.T) { function TestSploitusSizeLimits (line 468) | func TestSploitusSizeLimits(t *testing.T) { function TestSploitusMaxResultsClamp (line 535) | func TestSploitusMaxResultsClamp(t *testing.T) { FILE: backend/pkg/tools/tavily.go constant tavilyURL (line 21) | tavilyURL = "https://api.tavily.com/search" constant maxRawContentLength (line 23) | maxRawContentLength = 3000 type tavilyRequest (line 25) | type tavilyRequest struct type tavilySearchResult (line 38) | type tavilySearchResult struct type tavilyResult (line 45) | type tavilyResult struct type tavily (line 53) | type tavily struct method Handle (line 79) | func (t *tavily) Handle(ctx context.Context, name string, args json.Ra... method search (line 137) | func (t *tavily) search(ctx context.Context, query string, maxResults ... method parseHTTPResponse (line 175) | func (t *tavily) parseHTTPResponse(ctx context.Context, resp *http.Res... method buildTavilyResult (line 208) | func (t *tavily) buildTavilyResult(ctx context.Context, result *tavily... method getRawContentFromResults (line 244) | func (t *tavily) getRawContentFromResults(results []tavilyResult) stri... method getSummarizePrompt (line 256) | func (t *tavily) getSummarizePrompt(query string, result *tavilySearch... method IsAvailable (line 312) | func (t *tavily) IsAvailable() bool { method apiKey (line 316) | func (t *tavily) apiKey() string { function NewTavilyTool (line 62) | func NewTavilyTool( FILE: backend/pkg/tools/tavily_test.go constant testTavilyAPIKey (line 14) | testTavilyAPIKey = "test-key" function testTavilyConfig (line 16) | func testTavilyConfig() *config.Config { function TestTavilyHandle (line 20) | func TestTavilyHandle(t *testing.T) { function TestTavilyIsAvailable (line 133) | func TestTavilyIsAvailable(t *testing.T) { function TestTavilyParseHTTPResponse_StatusAndDecodeErrors (line 166) | func TestTavilyParseHTTPResponse_StatusAndDecodeErrors(t *testing.T) { function TestTavilyBuildResult_WithSummarizer (line 296) | func TestTavilyBuildResult_WithSummarizer(t *testing.T) { function TestTavilyHandle_ValidationAndSwallowedError (line 384) | func TestTavilyHandle_ValidationAndSwallowedError(t *testing.T) { FILE: backend/pkg/tools/terminal.go constant defaultExecCommandTimeout (line 24) | defaultExecCommandTimeout = 5 * time.Minute constant defaultExtraExecTimeout (line 25) | defaultExtraExecTimeout = 5 * time.Second constant defaultQuickCheckTimeout (line 26) | defaultQuickCheckTimeout = 500 * time.Millisecond type execResult (line 29) | type execResult struct type terminal (line 34) | type terminal struct method wrapCommandResult (line 62) | func (t *terminal) wrapCommandResult(ctx context.Context, args json.Ra... method Handle (line 85) | func (t *terminal) Handle(ctx context.Context, name string, args json.... method ExecCommand (line 133) | func (t *terminal) ExecCommand( method getExecResult (line 208) | func (t *terminal) getExecResult(ctx context.Context, id string, timeo... method ReadFile (line 265) | func (t *terminal) ReadFile(ctx context.Context, flowID int64, path st... method WriteFile (line 344) | func (t *terminal) WriteFile(ctx context.Context, flowID int64, conten... method IsAvailable (line 414) | func (t *terminal) IsAvailable() bool { function NewTerminalTool (line 44) | func NewTerminalTool( function PrimaryTerminalName (line 398) | func PrimaryTerminalName(flowID int64) string { function FormatTerminalInput (line 402) | func FormatTerminalInput(cwd, text string) string { function FormatTerminalSystemOutput (line 408) | func FormatTerminalSystemOutput(text string) string { FILE: backend/pkg/tools/terminal_test.go type contextTestTermLogProvider (line 22) | type contextTestTermLogProvider struct method PutMsg (line 24) | func (m *contextTestTermLogProvider) PutMsg(_ context.Context, _ datab... type contextAwareMockDockerClient (line 33) | type contextAwareMockDockerClient struct method SpawnContainer (line 44) | func (m *contextAwareMockDockerClient) SpawnContainer(_ context.Contex... method StopContainer (line 48) | func (m *contextAwareMockDockerClient) StopContainer(_ context.Context... method DeleteContainer (line 51) | func (m *contextAwareMockDockerClient) DeleteContainer(_ context.Conte... method IsContainerRunning (line 54) | func (m *contextAwareMockDockerClient) IsContainerRunning(_ context.Co... method ContainerExecCreate (line 57) | func (m *contextAwareMockDockerClient) ContainerExecCreate(_ context.C... method ContainerExecAttach (line 60) | func (m *contextAwareMockDockerClient) ContainerExecAttach(ctx context... method ContainerExecInspect (line 92) | func (m *contextAwareMockDockerClient) ContainerExecInspect(_ context.... method CopyToContainer (line 95) | func (m *contextAwareMockDockerClient) CopyToContainer(_ context.Conte... method CopyFromContainer (line 98) | func (m *contextAwareMockDockerClient) CopyFromContainer(_ context.Con... method Cleanup (line 101) | func (m *contextAwareMockDockerClient) Cleanup(_ context.Context) erro... method GetDefaultImage (line 102) | func (m *contextAwareMockDockerClient) GetDefaultImage() string ... function TestExecCommandDetachSurvivesParentCancel (line 106) | func TestExecCommandDetachSurvivesParentCancel(t *testing.T) { function TestExecCommandNonDetachRespectsParentCancel (line 154) | func TestExecCommandNonDetachRespectsParentCancel(t *testing.T) { function TestPrimaryTerminalName (line 190) | func TestPrimaryTerminalName(t *testing.T) { function TestFormatTerminalInput (line 213) | func TestFormatTerminalInput(t *testing.T) { function TestFormatTerminalSystemOutput (line 254) | func TestFormatTerminalSystemOutput(t *testing.T) { FILE: backend/pkg/tools/tools.go type ExecutorHandler (line 23) | type ExecutorHandler type SummarizeHandler (line 25) | type SummarizeHandler type Functions (line 27) | type Functions struct method Scan (line 33) | func (f *Functions) Scan(input any) error { type DisableFunction (line 45) | type DisableFunction struct type ExternalFunction (line 50) | type ExternalFunction struct type FunctionInfo (line 58) | type FunctionInfo struct type Tool (line 63) | type Tool interface type ScreenshotProvider (line 68) | type ScreenshotProvider interface type AgentLogProvider (line 72) | type AgentLogProvider interface type MsgLogProvider (line 81) | type MsgLogProvider interface type SearchLogProvider (line 97) | type SearchLogProvider interface type TermLogProvider (line 110) | type TermLogProvider interface type VectorStoreLogProvider (line 120) | type VectorStoreLogProvider interface type flowToolsExecutor (line 134) | type flowToolsExecutor struct method SetFlowID (line 338) | func (fte *flowToolsExecutor) SetFlowID(flowID int64) { method SetImage (line 342) | func (fte *flowToolsExecutor) SetImage(image string) { method SetEmbedder (line 346) | func (fte *flowToolsExecutor) SetEmbedder(embedder embeddings.Embedder) { method SetFunctions (line 365) | func (fte *flowToolsExecutor) SetFunctions(functions *Functions) { method SetScreenshotProvider (line 369) | func (fte *flowToolsExecutor) SetScreenshotProvider(scp ScreenshotProv... method SetAgentLogProvider (line 373) | func (fte *flowToolsExecutor) SetAgentLogProvider(alp AgentLogProvider) { method SetMsgLogProvider (line 377) | func (fte *flowToolsExecutor) SetMsgLogProvider(mlp MsgLogProvider) { method SetSearchLogProvider (line 381) | func (fte *flowToolsExecutor) SetSearchLogProvider(slp SearchLogProvid... method SetTermLogProvider (line 385) | func (fte *flowToolsExecutor) SetTermLogProvider(tlp TermLogProvider) { method SetVectorStoreLogProvider (line 389) | func (fte *flowToolsExecutor) SetVectorStoreLogProvider(vslp VectorSto... method SetGraphitiClient (line 393) | func (fte *flowToolsExecutor) SetGraphitiClient(client *graphiti.Clien... method Prepare (line 397) | func (fte *flowToolsExecutor) Prepare(ctx context.Context) error { method Release (line 438) | func (fte *flowToolsExecutor) Release(ctx context.Context) error { method GetCustomExecutor (line 452) | func (fte *flowToolsExecutor) GetCustomExecutor(cfg CustomExecutorConf... method GetAssistantExecutor (line 495) | func (fte *flowToolsExecutor) GetAssistantExecutor(cfg AssistantExecut... method GetPrimaryExecutor (line 702) | func (fte *flowToolsExecutor) GetPrimaryExecutor(cfg PrimaryExecutorCo... method GetInstallerExecutor (line 772) | func (fte *flowToolsExecutor) GetInstallerExecutor(cfg InstallerExecut... method GetCoderExecutor (line 866) | func (fte *flowToolsExecutor) GetCoderExecutor(cfg CoderExecutorConfig... method GetPentesterExecutor (line 958) | func (fte *flowToolsExecutor) GetPentesterExecutor(cfg PentesterExecut... method GetSearcherExecutor (line 1087) | func (fte *flowToolsExecutor) GetSearcherExecutor(cfg SearcherExecutor... method GetGeneratorExecutor (line 1237) | func (fte *flowToolsExecutor) GetGeneratorExecutor(cfg GeneratorExecut... method GetRefinerExecutor (line 1302) | func (fte *flowToolsExecutor) GetRefinerExecutor(cfg RefinerExecutorCo... method GetMemoristExecutor (line 1367) | func (fte *flowToolsExecutor) GetMemoristExecutor(cfg MemoristExecutor... method GetEnricherExecutor (line 1435) | func (fte *flowToolsExecutor) GetEnricherExecutor(cfg EnricherExecutor... method GetReporterExecutor (line 1517) | func (fte *flowToolsExecutor) GetReporterExecutor(cfg ReporterExecutor... type ContextToolsExecutor (line 158) | type ContextToolsExecutor interface type CustomExecutorConfig (line 168) | type CustomExecutorConfig struct type AssistantExecutorConfig (line 178) | type AssistantExecutorConfig struct type PrimaryExecutorConfig (line 189) | type PrimaryExecutorConfig struct type InstallerExecutorConfig (line 202) | type InstallerExecutorConfig struct type CoderExecutorConfig (line 212) | type CoderExecutorConfig struct type PentesterExecutorConfig (line 223) | type PentesterExecutorConfig struct type SearcherExecutorConfig (line 235) | type SearcherExecutorConfig struct type GeneratorExecutorConfig (line 243) | type GeneratorExecutorConfig struct type RefinerExecutorConfig (line 250) | type RefinerExecutorConfig struct type MemoristExecutorConfig (line 257) | type MemoristExecutorConfig struct type EnricherExecutorConfig (line 264) | type EnricherExecutorConfig struct type ReporterExecutorConfig (line 271) | type ReporterExecutorConfig struct type FlowToolsExecutor (line 277) | type FlowToolsExecutor interface function NewFlowToolsExecutor (line 306) | func NewFlowToolsExecutor( function enrichLogrusFields (line 1536) | func enrichLogrusFields(flowID int64, taskID, subtaskID *int64, fields l... FILE: backend/pkg/tools/traversaal.go constant traversaalURL (line 20) | traversaalURL = "https://api-ares.traversaal.ai/live/predict" type traversaalSearchResult (line 22) | type traversaalSearchResult struct type traversaal (line 27) | type traversaal struct method Handle (line 50) | func (t *traversaal) Handle(ctx context.Context, name string, args jso... method search (line 108) | func (t *traversaal) search(ctx context.Context, query string) (string... method parseHTTPResponse (line 141) | func (t *traversaal) parseHTTPResponse(resp *http.Response) (string, e... method IsAvailable (line 164) | func (t *traversaal) IsAvailable() bool { method apiKey (line 168) | func (t *traversaal) apiKey() string { function NewTraversaalTool (line 35) | func NewTraversaalTool( FILE: backend/pkg/tools/traversaal_test.go constant testTraversaalAPIKey (line 13) | testTraversaalAPIKey = "test-key" function testTraversaalConfig (line 15) | func testTraversaalConfig() *config.Config { function TestTraversaalHandle (line 19) | func TestTraversaalHandle(t *testing.T) { function TestTraversaalIsAvailable (line 134) | func TestTraversaalIsAvailable(t *testing.T) { function TestTraversaalParseHTTPResponse_StatusAndDecodeErrors (line 167) | func TestTraversaalParseHTTPResponse_StatusAndDecodeErrors(t *testing.T) { function TestTraversaalHandle_ValidationAndSwallowedError (line 193) | func TestTraversaalHandle_ValidationAndSwallowedError(t *testing.T) { FILE: backend/pkg/version/version.go function GetBinaryVersion (line 16) | func GetBinaryVersion() string { function IsDevelopMode (line 27) | func IsDevelopMode() bool { function GetBinaryName (line 31) | func GetBinaryName() string { FILE: backend/pkg/version/version_test.go function TestGetBinaryVersion_Default (line 9) | func TestGetBinaryVersion_Default(t *testing.T) { function TestGetBinaryVersion_WithVersion (line 17) | func TestGetBinaryVersion_WithVersion(t *testing.T) { function TestGetBinaryVersion_WithVersionAndRevision (line 26) | func TestGetBinaryVersion_WithVersionAndRevision(t *testing.T) { function TestGetBinaryVersion_WithRevisionOnly (line 38) | func TestGetBinaryVersion_WithRevisionOnly(t *testing.T) { function TestIsDevelopMode_True (line 47) | func TestIsDevelopMode_True(t *testing.T) { function TestIsDevelopMode_False (line 53) | func TestIsDevelopMode_False(t *testing.T) { function TestGetBinaryName_Default (line 60) | func TestGetBinaryName_Default(t *testing.T) { function TestGetBinaryName_Custom (line 67) | func TestGetBinaryName_Custom(t *testing.T) { FILE: frontend/scripts/generate-ssl.ts type SSLPaths (line 5) | interface SSLPaths { constant SSL_PATHS (line 14) | const SSL_PATHS: SSLPaths = { FILE: frontend/src/components/icons/anthropic.tsx type AnthropicProps (line 3) | interface AnthropicProps extends React.SVGProps { FILE: frontend/src/components/icons/bedrock.tsx type BedrockProps (line 3) | interface BedrockProps extends React.SVGProps { FILE: frontend/src/components/icons/custom.tsx type CustomProps (line 3) | interface CustomProps extends React.SVGProps { FILE: frontend/src/components/icons/deepseek.tsx type DeepSeekProps (line 3) | interface DeepSeekProps extends React.SVGProps { FILE: frontend/src/components/icons/flow-status-icon.tsx type FlowStatusIconProps (line 9) | interface FlowStatusIconProps { FILE: frontend/src/components/icons/gemini.tsx type GeminiProps (line 3) | interface GeminiProps extends React.SVGProps { FILE: frontend/src/components/icons/github.tsx type GithubProps (line 3) | interface GithubProps extends React.SVGProps { FILE: frontend/src/components/icons/glm.tsx type GLMProps (line 3) | interface GLMProps extends React.SVGProps { FILE: frontend/src/components/icons/google.tsx type GoogleProps (line 3) | interface GoogleProps extends React.SVGProps { FILE: frontend/src/components/icons/kimi.tsx type KimiProps (line 3) | interface KimiProps extends React.SVGProps { FILE: frontend/src/components/icons/logo.tsx type LogoProps (line 3) | interface LogoProps extends React.SVGProps { FILE: frontend/src/components/icons/ollama.tsx type OllamaProps (line 3) | interface OllamaProps extends React.SVGProps { FILE: frontend/src/components/icons/open-ai.tsx type OpenAiProps (line 3) | interface OpenAiProps extends React.SVGProps { FILE: frontend/src/components/icons/provider-icon.tsx type ProviderIconConfig (line 20) | interface ProviderIconConfig { type ProviderIconProps (line 25) | interface ProviderIconProps { FILE: frontend/src/components/icons/qwen.tsx type QwenProps (line 3) | interface QwenProps extends React.SVGProps { FILE: frontend/src/components/layouts/settings-layout.tsx type MenuItem (line 22) | interface MenuItem { type SettingsSidebarMenuItemProps (line 30) | interface SettingsSidebarMenuItemProps { FILE: frontend/src/components/shared/confirmation-dialog.tsx type ConfirmationDialogIconProps (line 17) | type ConfirmationDialogIconProps = ReactElement, Varia... function Badge (line 25) | function Badge({ className, variant, ...props }: BadgeProps) { FILE: frontend/src/components/ui/button.tsx type ButtonProps (line 37) | interface ButtonProps FILE: frontend/src/components/ui/calendar.tsx type CalendarProps (line 7) | type CalendarProps = DayPickerProps; function Calendar (line 9) | function Calendar({ className, classNames, showOutsideDays = true, ...pr... FILE: frontend/src/components/ui/data-table.tsx type ColumnMeta (line 33) | interface ColumnMeta { type DataTableProps (line 39) | interface DataTableProps { constant PAGE_SIZE_OPTIONS (line 54) | const PAGE_SIZE_OPTIONS = [10, 15, 20, 50, 100] as const; function DataTableInner (line 56) | function DataTableInner(props: DataTableProps) { function EmptyHeader (line 18) | function EmptyHeader({ className, ...props }: React.ComponentProps<'div'... function EmptyContent (line 43) | function EmptyContent({ className, ...props }: React.ComponentProps<'div... function EmptyDescription (line 53) | function EmptyDescription({ className, ...props }: React.ComponentProps<... function EmptyMedia (line 66) | function EmptyMedia({ function EmptyTitle (line 81) | function EmptyTitle({ className, ...props }: React.ComponentProps<'div'>) { FILE: frontend/src/components/ui/form.tsx type FormFieldContextValue (line 18) | type FormFieldContextValue< type FormItemContextValue (line 63) | type FormItemContextValue = { FILE: frontend/src/components/ui/input-group.tsx function InputGroup (line 10) | function InputGroup({ className, ...props }: React.ComponentProps<'div'>) { function InputGroupAddon (line 57) | function InputGroupAddon({ function InputGroupButton (line 80) | function InputGroupButton({ function InputGroupInput (line 99) | function InputGroupInput({ className, ...props }: React.ComponentProps<'... function InputGroupText (line 112) | function InputGroupText({ className, ...props }: React.ComponentProps<'s... function InputGroupTextarea (line 124) | function InputGroupTextarea({ className, ...props }: React.ComponentProp... function InputGroupTextareaAutosize (line 137) | function InputGroupTextareaAutosize({ className, ...props }: React.Compo... FILE: frontend/src/components/ui/input.tsx type InputProps (line 5) | interface InputProps extends React.InputHTMLAttributes {} FILE: frontend/src/components/ui/sheet.tsx type SheetContentProps (line 50) | interface SheetContentProps FILE: frontend/src/components/ui/sidebar.tsx constant SIDEBAR_COOKIE_NAME (line 17) | const SIDEBAR_COOKIE_NAME = 'sidebar:state'; constant SIDEBAR_COOKIE_MAX_AGE (line 18) | const SIDEBAR_COOKIE_MAX_AGE = 60 * 60 * 24 * 7; constant SIDEBAR_WIDTH (line 19) | const SIDEBAR_WIDTH = '16rem'; constant SIDEBAR_WIDTH_MOBILE (line 20) | const SIDEBAR_WIDTH_MOBILE = '18rem'; constant SIDEBAR_WIDTH_ICON (line 21) | const SIDEBAR_WIDTH_ICON = '3rem'; constant SIDEBAR_KEYBOARD_SHORTCUT (line 22) | const SIDEBAR_KEYBOARD_SHORTCUT = 'b'; type SidebarContext (line 24) | type SidebarContext = { FILE: frontend/src/components/ui/skeleton.tsx function Skeleton (line 3) | function Skeleton({ className, ...props }: React.HTMLAttributes; type SpinnerProps (line 272) | type SpinnerProps = LucideProps & { FILE: frontend/src/components/ui/status-card.tsx type StatusCardProps (line 6) | interface StatusCardProps { function StatusCard (line 14) | function StatusCard({ action, className, description, icon, title }: Sta... FILE: frontend/src/components/ui/textarea-autosize.tsx function TextareaAutosize (line 6) | function TextareaAutosize({ className, ...props }: React.ComponentProps<... FILE: frontend/src/components/ui/textarea.tsx type UseTextareaProps (line 6) | interface UseTextareaProps { type TextareaProps (line 45) | type TextareaProps = React.TextareaHTMLAttributes & { type TextareaRef (line 50) | type TextareaRef = { FILE: frontend/src/features/authentication/login-form.tsx type AuthProviderAction (line 39) | interface AuthProviderAction { type LoginFormProps (line 58) | interface LoginFormProps { FILE: frontend/src/features/authentication/password-change-form.tsx type AxiosErrorResponse (line 13) | interface AxiosErrorResponse { type ErrorResponse (line 20) | interface ErrorResponse { type PasswordChangeFormProps (line 64) | interface PasswordChangeFormProps { type PasswordChangeFormValues (line 72) | type PasswordChangeFormValues = z.infer; function PasswordChangeForm (line 74) | function PasswordChangeForm({ FILE: frontend/src/features/flows/agents/flow-agent-icon.tsx type FlowAgentIconProps (line 26) | interface FlowAgentIconProps { FILE: frontend/src/features/flows/agents/flow-agent.tsx type FlowAgentProps (line 15) | interface FlowAgentProps { FILE: frontend/src/features/flows/flow-form.tsx type FlowFormProps (line 36) | interface FlowFormProps { type FlowFormValues (line 49) | type FlowFormValues = z.infer; FILE: frontend/src/features/flows/flow-tabs.tsx type FlowTabsProps (line 17) | interface FlowTabsProps { FILE: frontend/src/features/flows/flow-tasks-dropdown.tsx type FlowTasksDropdownValue (line 18) | interface FlowTasksDropdownValue { type FlowTasksDropdownProps (line 23) | interface FlowTasksDropdownProps { FILE: frontend/src/features/flows/messages/flow-assistant-messages.tsx type AssistantsDropdownProps (line 32) | interface AssistantsDropdownProps { type AssistantItem (line 73) | type AssistantItem = { assistant: AssistantFragmentFragment; index: numb... type FlowAssistantMessagesProps (line 277) | interface FlowAssistantMessagesProps { FILE: frontend/src/features/flows/messages/flow-automation-messages.tsx type FlowAutomationMessagesProps (line 21) | interface FlowAutomationMessagesProps { FILE: frontend/src/features/flows/messages/flow-message-type-icon.tsx type MessageTypeIconProps (line 22) | interface MessageTypeIconProps { FILE: frontend/src/features/flows/messages/flow-message.tsx type FlowMessageProps (line 16) | interface FlowMessageProps { FILE: frontend/src/features/flows/screenshots/flow-screenshot.tsx type FlowScreenshotProps (line 13) | interface FlowScreenshotProps { FILE: frontend/src/features/flows/tasks/flow-subtask.tsx type FlowSubtaskProps (line 11) | interface FlowSubtaskProps { FILE: frontend/src/features/flows/tasks/flow-task-status-icon.tsx type FlowTaskStatusIconProps (line 10) | interface FlowTaskStatusIconProps { FILE: frontend/src/features/flows/tasks/flow-task.tsx type FlowTaskProps (line 13) | interface FlowTaskProps { FILE: frontend/src/features/flows/tools/flow-tool.tsx type FlowToolProps (line 12) | interface FlowToolProps { FILE: frontend/src/features/flows/vector-stores/flow-vector-store-action-icon.tsx type FlowVectorStoreActionIconProps (line 10) | interface FlowVectorStoreActionIconProps { FILE: frontend/src/features/flows/vector-stores/flow-vector-store.tsx type FlowVectorStoreProps (line 56) | interface FlowVectorStoreProps { FILE: frontend/src/graphql/types.ts type Maybe (line 3) | type Maybe = T | null; type InputMaybe (line 4) | type InputMaybe = Maybe; type Exact (line 5) | type Exact = { [K in keyof T]: T[K... type MakeOptional (line 6) | type MakeOptional = Omit & { [SubKey in K]?:... type MakeMaybe (line 7) | type MakeMaybe = Omit & { [SubKey in K]: May... type MakeEmpty (line 8) | type MakeEmpty ... type Incremental (line 9) | type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' ... type Scalars (line 12) | type Scalars = { type ApiToken (line 21) | type ApiToken = { type ApiTokenWithSecret (line 33) | type ApiTokenWithSecret = { type AgentConfig (line 46) | type AgentConfig = { type AgentConfigInput (line 61) | type AgentConfigInput = { type AgentConfigType (line 76) | enum AgentConfigType { type AgentLog (line 92) | type AgentLog = { type AgentPrompt (line 104) | type AgentPrompt = { type AgentPrompts (line 108) | type AgentPrompts = { type AgentTestResult (line 113) | type AgentTestResult = { type AgentType (line 117) | enum AgentType { type AgentTypeUsageStats (line 135) | type AgentTypeUsageStats = { type AgentsConfig (line 140) | type AgentsConfig = { type AgentsConfigInput (line 156) | type AgentsConfigInput = { type AgentsPrompts (line 172) | type AgentsPrompts = { type Assistant (line 190) | type Assistant = { type AssistantLog (line 201) | type AssistantLog = { type CreateApiTokenInput (line 214) | type CreateApiTokenInput = { type DailyFlowsStats (line 219) | type DailyFlowsStats = { type DailyToolcallsStats (line 224) | type DailyToolcallsStats = { type DailyUsageStats (line 229) | type DailyUsageStats = { type DefaultPrompt (line 234) | type DefaultPrompt = { type DefaultPrompts (line 240) | type DefaultPrompts = { type DefaultProvidersConfig (line 245) | type DefaultProvidersConfig = { type Flow (line 258) | type Flow = { type FlowAssistant (line 268) | type FlowAssistant = { type FlowExecutionStats (line 273) | type FlowExecutionStats = { type FlowStats (line 282) | type FlowStats = { type FlowsStats (line 288) | type FlowsStats = { type FunctionToolcallsStats (line 295) | type FunctionToolcallsStats = { type MessageLog (line 303) | type MessageLog = { type MessageLogType (line 316) | enum MessageLogType { type ModelConfig (line 330) | type ModelConfig = { type ModelPrice (line 338) | type ModelPrice = { type ModelPriceInput (line 345) | type ModelPriceInput = { type ModelUsageStats (line 352) | type ModelUsageStats = { type Mutation (line 358) | type Mutation = { type MutationAddFavoriteFlowArgs (line 385) | type MutationAddFavoriteFlowArgs = { type MutationCallAssistantArgs (line 389) | type MutationCallAssistantArgs = { type MutationCreateApiTokenArgs (line 396) | type MutationCreateApiTokenArgs = { type MutationCreateAssistantArgs (line 400) | type MutationCreateAssistantArgs = { type MutationCreateFlowArgs (line 407) | type MutationCreateFlowArgs = { type MutationCreatePromptArgs (line 412) | type MutationCreatePromptArgs = { type MutationCreateProviderArgs (line 417) | type MutationCreateProviderArgs = { type MutationDeleteApiTokenArgs (line 423) | type MutationDeleteApiTokenArgs = { type MutationDeleteAssistantArgs (line 427) | type MutationDeleteAssistantArgs = { type MutationDeleteFavoriteFlowArgs (line 432) | type MutationDeleteFavoriteFlowArgs = { type MutationDeleteFlowArgs (line 436) | type MutationDeleteFlowArgs = { type MutationDeletePromptArgs (line 440) | type MutationDeletePromptArgs = { type MutationDeleteProviderArgs (line 444) | type MutationDeleteProviderArgs = { type MutationFinishFlowArgs (line 448) | type MutationFinishFlowArgs = { type MutationPutUserInputArgs (line 452) | type MutationPutUserInputArgs = { type MutationRenameFlowArgs (line 457) | type MutationRenameFlowArgs = { type MutationStopAssistantArgs (line 462) | type MutationStopAssistantArgs = { type MutationStopFlowArgs (line 467) | type MutationStopFlowArgs = { type MutationTestAgentArgs (line 471) | type MutationTestAgentArgs = { type MutationTestProviderArgs (line 477) | type MutationTestProviderArgs = { type MutationUpdateApiTokenArgs (line 482) | type MutationUpdateApiTokenArgs = { type MutationUpdatePromptArgs (line 487) | type MutationUpdatePromptArgs = { type MutationUpdateProviderArgs (line 492) | type MutationUpdateProviderArgs = { type MutationValidatePromptArgs (line 498) | type MutationValidatePromptArgs = { type PromptType (line 503) | enum PromptType { type PromptValidationErrorType (line 545) | enum PromptValidationErrorType { type PromptValidationResult (line 554) | type PromptValidationResult = { type PromptsConfig (line 562) | type PromptsConfig = { type Provider (line 567) | type Provider = { type ProviderConfig (line 572) | type ProviderConfig = { type ProviderTestResult (line 581) | type ProviderTestResult = { type ProviderType (line 597) | enum ProviderType { type ProviderUsageStats (line 610) | type ProviderUsageStats = { type ProvidersConfig (line 615) | type ProvidersConfig = { type ProvidersModelsList (line 622) | type ProvidersModelsList = { type ProvidersReadinessStatus (line 635) | type ProvidersReadinessStatus = { type Query (line 648) | type Query = { type QueryAgentLogsArgs (line 685) | type QueryAgentLogsArgs = { type QueryApiTokenArgs (line 689) | type QueryApiTokenArgs = { type QueryAssistantLogsArgs (line 693) | type QueryAssistantLogsArgs = { type QueryAssistantsArgs (line 698) | type QueryAssistantsArgs = { type QueryFlowArgs (line 702) | type QueryFlowArgs = { type QueryFlowStatsByFlowArgs (line 706) | type QueryFlowStatsByFlowArgs = { type QueryFlowsExecutionStatsByPeriodArgs (line 710) | type QueryFlowsExecutionStatsByPeriodArgs = { type QueryFlowsStatsByPeriodArgs (line 714) | type QueryFlowsStatsByPeriodArgs = { type QueryMessageLogsArgs (line 718) | type QueryMessageLogsArgs = { type QueryScreenshotsArgs (line 722) | type QueryScreenshotsArgs = { type QuerySearchLogsArgs (line 726) | type QuerySearchLogsArgs = { type QueryTasksArgs (line 730) | type QueryTasksArgs = { type QueryTerminalLogsArgs (line 734) | type QueryTerminalLogsArgs = { type QueryToolcallsStatsByFlowArgs (line 738) | type QueryToolcallsStatsByFlowArgs = { type QueryToolcallsStatsByFunctionForFlowArgs (line 742) | type QueryToolcallsStatsByFunctionForFlowArgs = { type QueryToolcallsStatsByPeriodArgs (line 746) | type QueryToolcallsStatsByPeriodArgs = { type QueryUsageStatsByAgentTypeForFlowArgs (line 750) | type QueryUsageStatsByAgentTypeForFlowArgs = { type QueryUsageStatsByFlowArgs (line 754) | type QueryUsageStatsByFlowArgs = { type QueryUsageStatsByPeriodArgs (line 758) | type QueryUsageStatsByPeriodArgs = { type QueryVectorStoreLogsArgs (line 762) | type QueryVectorStoreLogsArgs = { type ReasoningConfig (line 766) | type ReasoningConfig = { type ReasoningConfigInput (line 771) | type ReasoningConfigInput = { type ReasoningEffort (line 776) | enum ReasoningEffort { type ResultFormat (line 782) | enum ResultFormat { type ResultType (line 788) | enum ResultType { type Screenshot (line 793) | type Screenshot = { type SearchLog (line 803) | type SearchLog = { type Settings (line 816) | type Settings = { type StatusType (line 823) | enum StatusType { type Subscription (line 831) | type Subscription = { type SubscriptionAgentLogAddedArgs (line 858) | type SubscriptionAgentLogAddedArgs = { type SubscriptionAssistantCreatedArgs (line 862) | type SubscriptionAssistantCreatedArgs = { type SubscriptionAssistantDeletedArgs (line 866) | type SubscriptionAssistantDeletedArgs = { type SubscriptionAssistantLogAddedArgs (line 870) | type SubscriptionAssistantLogAddedArgs = { type SubscriptionAssistantLogUpdatedArgs (line 874) | type SubscriptionAssistantLogUpdatedArgs = { type SubscriptionAssistantUpdatedArgs (line 878) | type SubscriptionAssistantUpdatedArgs = { type SubscriptionMessageLogAddedArgs (line 882) | type SubscriptionMessageLogAddedArgs = { type SubscriptionMessageLogUpdatedArgs (line 886) | type SubscriptionMessageLogUpdatedArgs = { type SubscriptionScreenshotAddedArgs (line 890) | type SubscriptionScreenshotAddedArgs = { type SubscriptionSearchLogAddedArgs (line 894) | type SubscriptionSearchLogAddedArgs = { type SubscriptionTaskCreatedArgs (line 898) | type SubscriptionTaskCreatedArgs = { type SubscriptionTaskUpdatedArgs (line 902) | type SubscriptionTaskUpdatedArgs = { type SubscriptionTerminalLogAddedArgs (line 906) | type SubscriptionTerminalLogAddedArgs = { type SubscriptionVectorStoreLogAddedArgs (line 910) | type SubscriptionVectorStoreLogAddedArgs = { type Subtask (line 914) | type Subtask = { type SubtaskExecutionStats (line 925) | type SubtaskExecutionStats = { type Task (line 932) | type Task = { type TaskExecutionStats (line 944) | type TaskExecutionStats = { type Terminal (line 952) | type Terminal = { type TerminalLog (line 961) | type TerminalLog = { type TerminalLogType (line 972) | enum TerminalLogType { type TerminalType (line 978) | enum TerminalType { type TestResult (line 983) | type TestResult = { type TokenStatus (line 993) | enum TokenStatus { type ToolcallsStats (line 999) | type ToolcallsStats = { type ToolsPrompts (line 1004) | type ToolsPrompts = { type UpdateApiTokenInput (line 1019) | type UpdateApiTokenInput = { type UsageStats (line 1024) | type UsageStats = { type UsageStatsPeriod (line 1033) | enum UsageStatsPeriod { type UserPreferences (line 1039) | type UserPreferences = { type UserPrompt (line 1044) | type UserPrompt = { type VectorStoreAction (line 1052) | enum VectorStoreAction { type VectorStoreLog (line 1057) | type VectorStoreLog = { type SettingsFragmentFragment (line 1071) | type SettingsFragmentFragment = { type FlowFragmentFragment (line 1078) | type FlowFragmentFragment = { type TerminalFragmentFragment (line 1088) | type TerminalFragmentFragment = { type TaskFragmentFragment (line 1097) | type TaskFragmentFragment = { type SubtaskFragmentFragment (line 1109) | type SubtaskFragmentFragment = { type TerminalLogFragmentFragment (line 1120) | type TerminalLogFragmentFragment = { type MessageLogFragmentFragment (line 1131) | type MessageLogFragmentFragment = { type ScreenshotFragmentFragment (line 1144) | type ScreenshotFragmentFragment = { type AgentLogFragmentFragment (line 1154) | type AgentLogFragmentFragment = { type SearchLogFragmentFragment (line 1166) | type SearchLogFragmentFragment = { type VectorStoreLogFragmentFragment (line 1179) | type VectorStoreLogFragmentFragment = { type AssistantFragmentFragment (line 1193) | type AssistantFragmentFragment = { type AssistantLogFragmentFragment (line 1204) | type AssistantLogFragmentFragment = { type TestResultFragmentFragment (line 1217) | type TestResultFragmentFragment = { type AgentTestResultFragmentFragment (line 1227) | type AgentTestResultFragmentFragment = { tests: Array; type FlowsQuery (line 1405) | type FlowsQuery = { flows?: Array | null }; type ProvidersQueryVariables (line 1407) | type ProvidersQueryVariables = Exact<{ [key: string]: never }>; type ProvidersQuery (line 1409) | type ProvidersQuery = { providers: Array }; type SettingsQueryVariables (line 1411) | type SettingsQueryVariables = Exact<{ [key: string]: never }>; type SettingsQuery (line 1413) | type SettingsQuery = { settings: SettingsFragmentFragment }; type SettingsProvidersQueryVariables (line 1415) | type SettingsProvidersQueryVariables = Exact<{ [key: string]: never }>; type SettingsProvidersQuery (line 1417) | type SettingsProvidersQuery = { type SettingsPromptsQueryVariables (line 1459) | type SettingsPromptsQueryVariables = Exact<{ [key: string]: never }>; type SettingsPromptsQuery (line 1461) | type SettingsPromptsQuery = { type FlowQueryVariables (line 1500) | type FlowQueryVariables = Exact<{ type FlowQuery (line 1504) | type FlowQuery = { type TasksQueryVariables (line 1515) | type TasksQueryVariables = Exact<{ type TasksQuery (line 1519) | type TasksQuery = { tasks?: Array | null }; type AssistantsQueryVariables (line 1521) | type AssistantsQueryVariables = Exact<{ type AssistantsQuery (line 1525) | type AssistantsQuery = { assistants?: Array |... type AssistantLogsQueryVariables (line 1527) | type AssistantLogsQueryVariables = Exact<{ type AssistantLogsQuery (line 1532) | type AssistantLogsQuery = { assistantLogs?: Array; type UsageStatsTotalQuery (line 1542) | type UsageStatsTotalQuery = { usageStatsTotal: UsageStatsFragmentFragmen... type UsageStatsByPeriodQueryVariables (line 1544) | type UsageStatsByPeriodQueryVariables = Exact<{ type UsageStatsByPeriodQuery (line 1548) | type UsageStatsByPeriodQuery = { usageStatsByPeriod: Array; type UsageStatsByProviderQuery (line 1552) | type UsageStatsByProviderQuery = { usageStatsByProvider: Array; type UsageStatsByModelQuery (line 1556) | type UsageStatsByModelQuery = { usageStatsByModel: Array; type UsageStatsByAgentTypeQuery (line 1560) | type UsageStatsByAgentTypeQuery = { usageStatsByAgentType: Array; type ToolcallsStatsTotalQuery (line 1578) | type ToolcallsStatsTotalQuery = { toolcallsStatsTotal: ToolcallsStatsFra... type ToolcallsStatsByPeriodQueryVariables (line 1580) | type ToolcallsStatsByPeriodQueryVariables = Exact<{ type ToolcallsStatsByPeriodQuery (line 1584) | type ToolcallsStatsByPeriodQuery = { toolcallsStatsByPeriod: Array; type FlowsStatsTotalQuery (line 1606) | type FlowsStatsTotalQuery = { flowsStatsTotal: FlowsStatsFragmentFragmen... type FlowsStatsByPeriodQueryVariables (line 1608) | type FlowsStatsByPeriodQueryVariables = Exact<{ type FlowsStatsByPeriodQuery (line 1612) | type FlowsStatsByPeriodQuery = { flowsStatsByPeriod: Array; type ApiTokensQuery (line 1630) | type ApiTokensQuery = { apiTokens: Array }; type ApiTokenQueryVariables (line 1632) | type ApiTokenQueryVariables = Exact<{ type ApiTokenQuery (line 1636) | type ApiTokenQuery = { apiToken?: ApiTokenFragmentFragment | null }; type UserPreferencesFragmentFragment (line 1638) | type UserPreferencesFragmentFragment = { id: string; favoriteFlows: Arra... type SettingsUserQueryVariables (line 1640) | type SettingsUserQueryVariables = Exact<{ [key: string]: never }>; type SettingsUserQuery (line 1642) | type SettingsUserQuery = { settingsUser: UserPreferencesFragmentFragment }; type AddFavoriteFlowMutationVariables (line 1644) | type AddFavoriteFlowMutationVariables = Exact<{ type AddFavoriteFlowMutation (line 1648) | type AddFavoriteFlowMutation = { addFavoriteFlow: ResultType }; type DeleteFavoriteFlowMutationVariables (line 1650) | type DeleteFavoriteFlowMutationVariables = Exact<{ type DeleteFavoriteFlowMutation (line 1654) | type DeleteFavoriteFlowMutation = { deleteFavoriteFlow: ResultType }; type CreateFlowMutationVariables (line 1656) | type CreateFlowMutationVariables = Exact<{ type CreateFlowMutation (line 1661) | type CreateFlowMutation = { createFlow: FlowFragmentFragment }; type DeleteFlowMutationVariables (line 1663) | type DeleteFlowMutationVariables = Exact<{ type DeleteFlowMutation (line 1667) | type DeleteFlowMutation = { deleteFlow: ResultType }; type PutUserInputMutationVariables (line 1669) | type PutUserInputMutationVariables = Exact<{ type PutUserInputMutation (line 1674) | type PutUserInputMutation = { putUserInput: ResultType }; type FinishFlowMutationVariables (line 1676) | type FinishFlowMutationVariables = Exact<{ type FinishFlowMutation (line 1680) | type FinishFlowMutation = { finishFlow: ResultType }; type StopFlowMutationVariables (line 1682) | type StopFlowMutationVariables = Exact<{ type StopFlowMutation (line 1686) | type StopFlowMutation = { stopFlow: ResultType }; type RenameFlowMutationVariables (line 1688) | type RenameFlowMutationVariables = Exact<{ type RenameFlowMutation (line 1693) | type RenameFlowMutation = { renameFlow: ResultType }; type CreateAssistantMutationVariables (line 1695) | type CreateAssistantMutationVariables = Exact<{ type CreateAssistantMutation (line 1702) | type CreateAssistantMutation = { type CallAssistantMutationVariables (line 1706) | type CallAssistantMutationVariables = Exact<{ type CallAssistantMutation (line 1713) | type CallAssistantMutation = { callAssistant: ResultType }; type StopAssistantMutationVariables (line 1715) | type StopAssistantMutationVariables = Exact<{ type StopAssistantMutation (line 1720) | type StopAssistantMutation = { stopAssistant: AssistantFragmentFragment }; type DeleteAssistantMutationVariables (line 1722) | type DeleteAssistantMutationVariables = Exact<{ type DeleteAssistantMutation (line 1727) | type DeleteAssistantMutation = { deleteAssistant: ResultType }; type TestAgentMutationVariables (line 1729) | type TestAgentMutationVariables = Exact<{ type TestAgentMutation (line 1735) | type TestAgentMutation = { testAgent: AgentTestResultFragmentFragment }; type TestProviderMutationVariables (line 1737) | type TestProviderMutationVariables = Exact<{ type TestProviderMutation (line 1742) | type TestProviderMutation = { testProvider: ProviderTestResultFragmentFr... type CreateProviderMutationVariables (line 1744) | type CreateProviderMutationVariables = Exact<{ type CreateProviderMutation (line 1750) | type CreateProviderMutation = { createProvider: ProviderConfigFragmentFr... type UpdateProviderMutationVariables (line 1752) | type UpdateProviderMutationVariables = Exact<{ type UpdateProviderMutation (line 1758) | type UpdateProviderMutation = { updateProvider: ProviderConfigFragmentFr... type DeleteProviderMutationVariables (line 1760) | type DeleteProviderMutationVariables = Exact<{ type DeleteProviderMutation (line 1764) | type DeleteProviderMutation = { deleteProvider: ResultType }; type ValidatePromptMutationVariables (line 1766) | type ValidatePromptMutationVariables = Exact<{ type ValidatePromptMutation (line 1771) | type ValidatePromptMutation = { validatePrompt: PromptValidationResultFr... type CreatePromptMutationVariables (line 1773) | type CreatePromptMutationVariables = Exact<{ type CreatePromptMutation (line 1778) | type CreatePromptMutation = { createPrompt: UserPromptFragmentFragment }; type UpdatePromptMutationVariables (line 1780) | type UpdatePromptMutationVariables = Exact<{ type UpdatePromptMutation (line 1785) | type UpdatePromptMutation = { updatePrompt: UserPromptFragmentFragment }; type DeletePromptMutationVariables (line 1787) | type DeletePromptMutationVariables = Exact<{ type DeletePromptMutation (line 1791) | type DeletePromptMutation = { deletePrompt: ResultType }; type CreateApiTokenMutationVariables (line 1793) | type CreateApiTokenMutationVariables = Exact<{ type CreateApiTokenMutation (line 1797) | type CreateApiTokenMutation = { createAPIToken: ApiTokenWithSecretFragme... type UpdateApiTokenMutationVariables (line 1799) | type UpdateApiTokenMutationVariables = Exact<{ type UpdateApiTokenMutation (line 1804) | type UpdateApiTokenMutation = { updateAPIToken: ApiTokenFragmentFragment }; type DeleteApiTokenMutationVariables (line 1806) | type DeleteApiTokenMutationVariables = Exact<{ type DeleteApiTokenMutation (line 1810) | type DeleteApiTokenMutation = { deleteAPIToken: boolean }; type TerminalLogAddedSubscriptionVariables (line 1812) | type TerminalLogAddedSubscriptionVariables = Exact<{ type TerminalLogAddedSubscription (line 1816) | type TerminalLogAddedSubscription = { terminalLogAdded: TerminalLogFragm... type MessageLogAddedSubscriptionVariables (line 1818) | type MessageLogAddedSubscriptionVariables = Exact<{ type MessageLogAddedSubscription (line 1822) | type MessageLogAddedSubscription = { messageLogAdded: MessageLogFragment... type MessageLogUpdatedSubscriptionVariables (line 1824) | type MessageLogUpdatedSubscriptionVariables = Exact<{ type MessageLogUpdatedSubscription (line 1828) | type MessageLogUpdatedSubscription = { messageLogUpdated: MessageLogFrag... type ScreenshotAddedSubscriptionVariables (line 1830) | type ScreenshotAddedSubscriptionVariables = Exact<{ type ScreenshotAddedSubscription (line 1834) | type ScreenshotAddedSubscription = { screenshotAdded: ScreenshotFragment... type AgentLogAddedSubscriptionVariables (line 1836) | type AgentLogAddedSubscriptionVariables = Exact<{ type AgentLogAddedSubscription (line 1840) | type AgentLogAddedSubscription = { agentLogAdded: AgentLogFragmentFragme... type SearchLogAddedSubscriptionVariables (line 1842) | type SearchLogAddedSubscriptionVariables = Exact<{ type SearchLogAddedSubscription (line 1846) | type SearchLogAddedSubscription = { searchLogAdded: SearchLogFragmentFra... type VectorStoreLogAddedSubscriptionVariables (line 1848) | type VectorStoreLogAddedSubscriptionVariables = Exact<{ type VectorStoreLogAddedSubscription (line 1852) | type VectorStoreLogAddedSubscription = { vectorStoreLogAdded: VectorStor... type AssistantCreatedSubscriptionVariables (line 1854) | type AssistantCreatedSubscriptionVariables = Exact<{ type AssistantCreatedSubscription (line 1858) | type AssistantCreatedSubscription = { assistantCreated: AssistantFragmen... type AssistantUpdatedSubscriptionVariables (line 1860) | type AssistantUpdatedSubscriptionVariables = Exact<{ type AssistantUpdatedSubscription (line 1864) | type AssistantUpdatedSubscription = { assistantUpdated: AssistantFragmen... type AssistantDeletedSubscriptionVariables (line 1866) | type AssistantDeletedSubscriptionVariables = Exact<{ type AssistantDeletedSubscription (line 1870) | type AssistantDeletedSubscription = { assistantDeleted: AssistantFragmen... type AssistantLogAddedSubscriptionVariables (line 1872) | type AssistantLogAddedSubscriptionVariables = Exact<{ type AssistantLogAddedSubscription (line 1876) | type AssistantLogAddedSubscription = { assistantLogAdded: AssistantLogFr... type AssistantLogUpdatedSubscriptionVariables (line 1878) | type AssistantLogUpdatedSubscriptionVariables = Exact<{ type AssistantLogUpdatedSubscription (line 1882) | type AssistantLogUpdatedSubscription = { assistantLogUpdated: AssistantL... type FlowCreatedSubscriptionVariables (line 1884) | type FlowCreatedSubscriptionVariables = Exact<{ [key: string]: never }>; type FlowCreatedSubscription (line 1886) | type FlowCreatedSubscription = { flowCreated: FlowFragmentFragment }; type FlowDeletedSubscriptionVariables (line 1888) | type FlowDeletedSubscriptionVariables = Exact<{ [key: string]: never }>; type FlowDeletedSubscription (line 1890) | type FlowDeletedSubscription = { flowDeleted: FlowFragmentFragment }; type FlowUpdatedSubscriptionVariables (line 1892) | type FlowUpdatedSubscriptionVariables = Exact<{ [key: string]: never }>; type FlowUpdatedSubscription (line 1894) | type FlowUpdatedSubscription = { flowUpdated: FlowFragmentFragment }; type TaskCreatedSubscriptionVariables (line 1896) | type TaskCreatedSubscriptionVariables = Exact<{ type TaskCreatedSubscription (line 1900) | type TaskCreatedSubscription = { taskCreated: TaskFragmentFragment }; type TaskUpdatedSubscriptionVariables (line 1902) | type TaskUpdatedSubscriptionVariables = Exact<{ type TaskUpdatedSubscription (line 1906) | type TaskUpdatedSubscription = { type ProviderCreatedSubscriptionVariables (line 1916) | type ProviderCreatedSubscriptionVariables = Exact<{ [key: string]: never... type ProviderCreatedSubscription (line 1918) | type ProviderCreatedSubscription = { providerCreated: ProviderConfigFrag... type ProviderUpdatedSubscriptionVariables (line 1920) | type ProviderUpdatedSubscriptionVariables = Exact<{ [key: string]: never... type ProviderUpdatedSubscription (line 1922) | type ProviderUpdatedSubscription = { providerUpdated: ProviderConfigFrag... type ProviderDeletedSubscriptionVariables (line 1924) | type ProviderDeletedSubscriptionVariables = Exact<{ [key: string]: never... type ProviderDeletedSubscription (line 1926) | type ProviderDeletedSubscription = { providerDeleted: ProviderConfigFrag... type ApiTokenCreatedSubscriptionVariables (line 1928) | type ApiTokenCreatedSubscriptionVariables = Exact<{ [key: string]: never... type ApiTokenCreatedSubscription (line 1930) | type ApiTokenCreatedSubscription = { apiTokenCreated: ApiTokenFragmentFr... type ApiTokenUpdatedSubscriptionVariables (line 1932) | type ApiTokenUpdatedSubscriptionVariables = Exact<{ [key: string]: never... type ApiTokenUpdatedSubscription (line 1934) | type ApiTokenUpdatedSubscription = { apiTokenUpdated: ApiTokenFragmentFr... type ApiTokenDeletedSubscriptionVariables (line 1936) | type ApiTokenDeletedSubscriptionVariables = Exact<{ [key: string]: never... type ApiTokenDeletedSubscription (line 1938) | type ApiTokenDeletedSubscription = { apiTokenDeleted: ApiTokenFragmentFr... type SettingsUserUpdatedSubscriptionVariables (line 1940) | type SettingsUserUpdatedSubscriptionVariables = Exact<{ [key: string]: n... type SettingsUserUpdatedSubscription (line 1942) | type SettingsUserUpdatedSubscription = { settingsUserUpdated: UserPrefer... function useFlowsQuery (line 2472) | function useFlowsQuery(baseOptions?: Apollo.QueryHookOptions; type FlowsLazyQueryHookResult (line 2487) | type FlowsLazyQueryHookResult = ReturnType; type FlowsSuspenseQueryHookResult (line 2488) | type FlowsSuspenseQueryHookResult = ReturnType; type ProvidersLazyQueryHookResult (line 2531) | type ProvidersLazyQueryHookResult = ReturnType; type SettingsLazyQueryHookResult (line 2573) | type SettingsLazyQueryHookResult = ReturnType; type SettingsSuspenseQueryHookResult (line 2574) | type SettingsSuspenseQueryHookResult = ReturnType; type FlowLazyQueryHookResult (line 2992) | type FlowLazyQueryHookResult = ReturnType; type FlowSuspenseQueryHookResult (line 2993) | type FlowSuspenseQueryHookResult = ReturnType; type FlowQueryResult (line 2994) | type FlowQueryResult = Apollo.QueryResult; function useTasksQuery (line 3021) | function useTasksQuery( function useTasksLazyQuery (line 3028) | function useTasksLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions; type TasksLazyQueryHookResult (line 3039) | type TasksLazyQueryHookResult = ReturnType; type TasksSuspenseQueryHookResult (line 3040) | type TasksSuspenseQueryHookResult = ReturnType; type AssistantsLazyQueryHookResult (line 3088) | type AssistantsLazyQueryHookResult = ReturnType; type FlowReportLazyQueryHookResult (line 3192) | type FlowReportLazyQueryHookResult = ReturnType; type ApiTokensLazyQueryHookResult (line 4217) | type ApiTokensLazyQueryHookResult = ReturnType; type ApiTokenLazyQueryHookResult (line 4263) | type ApiTokenLazyQueryHookResult = ReturnType; type ApiTokenSuspenseQueryHookResult (line 4264) | type ApiTokenSuspenseQueryHookResult = ReturnType; type SettingsUserLazyQueryHookResult (line 4309) | type SettingsUserLazyQueryHookResult = ReturnType; type CreateFlowMutationOptions (line 4434) | type CreateFlowMutationOptions = Apollo.BaseMutationOptions; type DeleteFlowMutationOptions (line 4467) | type DeleteFlowMutationOptions = Apollo.BaseMutationOptions; type FinishFlowMutationOptions (line 4537) | type FinishFlowMutationOptions = Apollo.BaseMutationOptions; type StopFlowMutationResult (line 4569) | type StopFlowMutationResult = Apollo.MutationResult; type StopFlowMutationOptions (line 4570) | type StopFlowMutationOptions = Apollo.BaseMutationOptions; type RenameFlowMutationOptions (line 4604) | type RenameFlowMutationOptions = Apollo.BaseMutationOptions; type TestAgentMutationResult (line 4821) | type TestAgentMutationResult = Apollo.MutationResult; type TestAgentMutationOptions (line 4822) | type TestAgentMutationOptions = Apollo.BaseMutationOptions; FILE: frontend/src/pages/settings/settings-mcp-servers.tsx type McpServerConfigSse (line 37) | interface McpServerConfigSse { type McpServerConfigStdio (line 42) | interface McpServerConfigStdio { type McpServerItem (line 48) | interface McpServerItem { type McpTool (line 61) | interface McpTool { type McpTransport (line 67) | type McpTransport = 'sse' | 'stdio'; FILE: frontend/src/pages/settings/settings-prompt.tsx type BaseFieldProps (line 50) | interface BaseFieldProps extends ControllerProps { type BaseTextareaProps (line 53) | interface BaseTextareaProps { type ControllerProps (line 59) | interface ControllerProps { type FormTextareaItemProps (line 65) | interface FormTextareaItemProps extends BaseFieldProps, BaseTextareaProps { type HumanFormData (line 69) | type HumanFormData = z.infer; type SystemFormData (line 71) | type SystemFormData = z.infer; type VariablesProps (line 132) | interface VariablesProps { FILE: frontend/src/pages/settings/settings-prompts.tsx type AgentPromptTableData (line 40) | type AgentPromptTableData = { type ToolPromptTableData (line 53) | type ToolPromptTableData = { FILE: frontend/src/pages/settings/settings-provider.tsx type BaseFieldProps (line 51) | interface BaseFieldProps extends ControllerProps { type BaseInputProps (line 55) | interface BaseInputProps { type ControllerProps (line 60) | interface ControllerProps { type FormInputNumberItemProps (line 66) | interface FormInputNumberItemProps extends BaseFieldProps, NumberInputPr... type FormInputStringItemProps (line 71) | interface FormInputStringItemProps extends BaseFieldProps, BaseInputProps { type NumberInputProps (line 75) | interface NumberInputProps extends BaseInputProps { type Provider (line 81) | type Provider = ProviderConfigFragmentFragment; type FormComboboxItemProps (line 171) | interface FormComboboxItemProps extends BaseFieldProps, BaseInputProps { type FormModelComboboxItemProps (line 289) | interface FormModelComboboxItemProps extends BaseFieldProps, BaseInputPr... type ModelOption (line 297) | interface ModelOption { type FormAgents (line 555) | type FormAgents = FormData['agents']; type FormData (line 557) | type FormData = z.infer; type TestResultsDialogProps (line 661) | interface TestResultsDialogProps { FILE: frontend/src/pages/settings/settings-providers.tsx type Provider (line 50) | type Provider = ProviderConfigFragmentFragment; FILE: frontend/src/providers/favorites-provider.tsx type FavoritesContextValue (line 13) | interface FavoritesContextValue { type FavoritesProviderProps (line 22) | interface FavoritesProviderProps { constant FAVORITES_STORAGE_KEY (line 28) | const FAVORITES_STORAGE_KEY = 'favorites'; FILE: frontend/src/providers/flow-provider.tsx type FlowContextValue (line 38) | interface FlowContextValue { type FlowProviderProps (line 60) | interface FlowProviderProps { FILE: frontend/src/providers/flows-provider.tsx type Flow (line 21) | type Flow = FlowFragmentFragment; type FlowsContextValue (line 23) | interface FlowsContextValue { type FlowsProviderProps (line 36) | interface FlowsProviderProps { FILE: frontend/src/providers/providers-provider.tsx constant SELECTED_PROVIDER_KEY (line 8) | const SELECTED_PROVIDER_KEY = 'selectedProvider'; type ProvidersContextValue (line 10) | interface ProvidersContextValue { type ProvidersProviderProps (line 18) | interface ProvidersProviderProps { FILE: frontend/src/providers/sidebar-flows-provider.tsx type Flow (line 7) | type Flow = FlowFragmentFragment; type SidebarFlowsContextValue (line 9) | interface SidebarFlowsContextValue { type SidebarFlowsProviderProps (line 15) | interface SidebarFlowsProviderProps { FILE: frontend/src/providers/system-settings-provider.tsx type SettingsContextType (line 10) | interface SettingsContextType { FILE: frontend/src/providers/theme-provider.tsx type Theme (line 5) | type Theme = (typeof themes)[number]; type ThemeProviderProps (line 9) | interface ThemeProviderProps { type ThemeProviderState (line 15) | interface ThemeProviderState { FILE: frontend/src/providers/user-provider.tsx type LoginCredentials (line 13) | interface LoginCredentials { type LoginResult (line 18) | interface LoginResult { type OAuthProvider (line 24) | type OAuthProvider = 'github' | 'google'; type UserContextType (line 26) | interface UserContextType { constant AUTH_STORAGE_KEY (line 39) | const AUTH_STORAGE_KEY = 'auth'; FILE: frontend/types/vite-env.d.ts type ImportMeta (line 3) | interface ImportMeta { type ImportMetaEnv (line 7) | interface ImportMetaEnv {