You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
varErrNoWorkspace=errors.New("no workspace set. Prompt the user to select a workspace. Do NOT try to select a workspace for them, as it may be destructive")
22
22
varErrLogin=errors.New("not authenticated; either set RENDER_API_KEY or ask your MCP host to authenticate")
23
23
24
-
// RuntimeConfig holds application runtime configuration settings. It should not be persisted to disk.
25
-
typeRuntimeConfigstruct {
26
-
includeSensitiveInfobool
27
-
}
28
-
29
-
varruntimeConfig*RuntimeConfig
30
-
31
-
funcInitRuntimeConfig(includeSensitiveInfobool) {
32
-
runtimeConfig=&RuntimeConfig{
33
-
includeSensitiveInfo: includeSensitiveInfo,
34
-
}
35
-
}
36
-
37
-
// IncludeSensitiveInfo returns whether sensitive info should be included in tool reponse to the MCP host.
0 commit comments