diff --git a/.dockerignore b/.dockerignore index 285a3183b..194e251b7 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,4 +1,3 @@ **/node_modules/ -otto8-tools/ .local/ obot-tools/ diff --git a/README.md b/README.md index e4e50c7f0..36c651379 100644 --- a/README.md +++ b/README.md @@ -23,4 +23,4 @@ or by downloading the binary for your platform from our [latest release](https:/ ### Next Steps -For more information checkout our [Docs](https://docs.otto8.ai/). +For more information checkout our [Docs](https://docs.obot.ai/). diff --git a/apiclient/invoke.go b/apiclient/invoke.go index 789365d80..71b40487a 100644 --- a/apiclient/invoke.go +++ b/apiclient/invoke.go @@ -39,12 +39,12 @@ func (c *Client) Invoke(ctx context.Context, agentID string, input string, opts close(events) return &types.InvokeResponse{ Events: events, - ThreadID: resp.Header.Get("X-Otto-Thread-Id"), + ThreadID: resp.Header.Get("X-Obot-Thread-Id"), }, nil } return &types.InvokeResponse{ Events: toStream[types.Progress](resp), - ThreadID: resp.Header.Get("X-Otto-Thread-Id"), + ThreadID: resp.Header.Get("X-Obot-Thread-Id"), }, nil } diff --git a/apiclient/workflow.go b/apiclient/workflow.go index 806d8e25b..3e6a9b205 100644 --- a/apiclient/workflow.go +++ b/apiclient/workflow.go @@ -124,6 +124,6 @@ func (c *Client) AuthenticateWorkflow(ctx context.Context, wfID string) (*types. return &types.InvokeResponse{ Events: toStream[types.Progress](resp), - ThreadID: resp.Header.Get("X-Otto-Thread-Id"), + ThreadID: resp.Header.Get("X-Obot-Thread-Id"), }, nil } diff --git a/docs/docs/05-configuration/02-model-providers.md b/docs/docs/05-configuration/02-model-providers.md index 917849695..53a6cafcf 100644 --- a/docs/docs/05-configuration/02-model-providers.md +++ b/docs/docs/05-configuration/02-model-providers.md @@ -113,5 +113,5 @@ To set up and run an instance of Ollama, refer to the [Ollama GitHub readme](htt The vLLM model provider requires the following configuration parameters: -- `OTTO8_VLLM_MODEL_PROVIDER_ENDPOINT`: The endpoint to use for your vLLM server (e.g., `your-vllm-server.com` or `https://your-vllm-server.com`) -- `OTTO8_VLLM_MODEL_PROVIDER_API_KEY`: The API key for authentication with your vLLM server +- `OBOT_VLLM_MODEL_PROVIDER_ENDPOINT`: The endpoint to use for your vLLM server (e.g., `your-vllm-server.com` or `https://your-vllm-server.com`) +- `OBOT_VLLM_MODEL_PROVIDER_API_KEY`: The API key for authentication with your vLLM server diff --git a/docs/src/plugins/fetch-snippets/index.ts b/docs/src/plugins/fetch-snippets/index.ts index 0a8889b05..a387c2721 100644 --- a/docs/src/plugins/fetch-snippets/index.ts +++ b/docs/src/plugins/fetch-snippets/index.ts @@ -5,9 +5,9 @@ import crypto from 'crypto'; import { LoadContext, Plugin } from '@docusaurus/types'; const FILE_URLS = [ - 'https://raw.githubusercontent.com/otto8-ai/python-hash-tool/main/README.md', - 'https://raw.githubusercontent.com/otto8-ai/go-hash-tool/main/README.md', - 'https://raw.githubusercontent.com/otto8-ai/node-hash-tool/main/README.md', + 'https://raw.githubusercontent.com/obot-platform/python-hash-tool/main/README.md', + 'https://raw.githubusercontent.com/obot-platform/go-hash-tool/main/README.md', + 'https://raw.githubusercontent.com/obot-platform/node-hash-tool/main/README.md', ]; const EXTENSION_LANGUAGE_MAP: Record = { diff --git a/generate.go b/generate.go index 9ea521314..09e9fd0d9 100644 --- a/generate.go +++ b/generate.go @@ -1,5 +1,5 @@ -//go:generate go run github.com/obot-platform/nah/cmd/deepcopy ./pkg/storage/apis/otto.otto8.ai/v1/ +//go:generate go run github.com/obot-platform/nah/cmd/deepcopy ./pkg/storage/apis/obot.obot.ai/v1/ //go:generate go run github.com/obot-platform/nah/cmd/deepcopy ./apiclient/types/ -//go:generate go run k8s.io/kube-openapi/cmd/openapi-gen --go-header-file tools/header.txt --output-file openapi_generated.go --output-dir ./pkg/storage/openapi/generated/ --output-pkg github.com/obot-platform/obot/pkg/storage/openapi/generated github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1 k8s.io/apimachinery/pkg/apis/meta/v1 k8s.io/apimachinery/pkg/runtime k8s.io/apimachinery/pkg/version k8s.io/apimachinery/pkg/api/resource k8s.io/apimachinery/pkg/util/intstr k8s.io/api/coordination/v1 github.com/obot-platform/obot/apiclient/types +//go:generate go run k8s.io/kube-openapi/cmd/openapi-gen --go-header-file tools/header.txt --output-file openapi_generated.go --output-dir ./pkg/storage/openapi/generated/ --output-pkg github.com/obot-platform/obot/pkg/storage/openapi/generated github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1 k8s.io/apimachinery/pkg/apis/meta/v1 k8s.io/apimachinery/pkg/runtime k8s.io/apimachinery/pkg/version k8s.io/apimachinery/pkg/api/resource k8s.io/apimachinery/pkg/util/intstr k8s.io/api/coordination/v1 github.com/obot-platform/obot/apiclient/types package main diff --git a/go.mod b/go.mod index 0c8de8bed..af4ecd18b 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/obot-platform/obot -go 1.23.2 +go 1.23.4 replace ( github.com/oauth2-proxy/oauth2-proxy/v7 => github.com/obot-platform/oauth2-proxy/v7 v7.0.0-20241008204315-265dabe17f43 diff --git a/logger/log.go b/logger/log.go index f56748032..ddd93596f 100644 --- a/logger/log.go +++ b/logger/log.go @@ -24,7 +24,7 @@ func SetError() { func Package() Logger { _, p, _, _ := runtime.Caller(1) - _, suffix, _ := strings.Cut(p, "otto") + _, suffix, _ := strings.Cut(p, "obot") i := strings.LastIndex(suffix, "/") if i > 0 { return New(suffix[:i]) diff --git a/pkg/alias/get.go b/pkg/alias/get.go index 774fb48ec..d4a8c6177 100644 --- a/pkg/alias/get.go +++ b/pkg/alias/get.go @@ -8,7 +8,7 @@ import ( "github.com/obot-platform/nah/pkg/name" "github.com/obot-platform/nah/pkg/router" "github.com/obot-platform/obot/pkg/hash" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" "github.com/obot-platform/obot/pkg/system" apierrors "k8s.io/apimachinery/pkg/api/errors" "k8s.io/apimachinery/pkg/runtime" diff --git a/pkg/api/authz/thread.go b/pkg/api/authz/thread.go index 350915894..ae28c5e39 100644 --- a/pkg/api/authz/thread.go +++ b/pkg/api/authz/thread.go @@ -6,7 +6,7 @@ import ( "github.com/gptscript-ai/gptscript/pkg/types" "github.com/obot-platform/nah/pkg/router" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" "github.com/obot-platform/obot/pkg/system" "k8s.io/apiserver/pkg/authentication/user" ) diff --git a/pkg/api/handlers/agent.go b/pkg/api/handlers/agent.go index 75dde0d6a..608359fc4 100644 --- a/pkg/api/handlers/agent.go +++ b/pkg/api/handlers/agent.go @@ -15,7 +15,7 @@ import ( "github.com/obot-platform/obot/pkg/api" "github.com/obot-platform/obot/pkg/invoke" "github.com/obot-platform/obot/pkg/render" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" "github.com/obot-platform/obot/pkg/storage/selectors" "github.com/obot-platform/obot/pkg/system" "github.com/obot-platform/obot/pkg/wait" @@ -71,7 +71,7 @@ func (a *AgentHandler) Authenticate(req api.Context) (err error) { } }() - req.ResponseWriter.Header().Set("X-Otto-Thread-Id", resp.Thread.Name) + req.ResponseWriter.Header().Set("X-Obot-Thread-Id", resp.Thread.Name) return req.WriteEvents(resp.Events) } @@ -835,7 +835,7 @@ func (a *AgentHandler) Script(req api.Context) error { nodes := gptscript.ToolDefsToNodes(tools) nodes = append(nodes, gptscript.Node{ TextNode: &gptscript.TextNode{ - Text: "!otto-extra-env\n" + strings.Join(extraEnv, "\n"), + Text: "!obot-extra-env\n" + strings.Join(extraEnv, "\n"), }, }) diff --git a/pkg/api/handlers/assistants.go b/pkg/api/handlers/assistants.go index 5ca77909d..f357597c0 100644 --- a/pkg/api/handlers/assistants.go +++ b/pkg/api/handlers/assistants.go @@ -18,7 +18,7 @@ import ( "github.com/obot-platform/obot/pkg/api" "github.com/obot-platform/obot/pkg/events" "github.com/obot-platform/obot/pkg/invoke" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" "github.com/obot-platform/obot/pkg/system" apierrors "k8s.io/apimachinery/pkg/api/errors" kclient "sigs.k8s.io/controller-runtime/pkg/client" @@ -98,7 +98,7 @@ func (a *AssistantHandler) Invoke(req api.Context) error { } defer resp.Close() - req.ResponseWriter.Header().Set("X-Otto-Thread-Id", resp.Thread.Name) + req.ResponseWriter.Header().Set("X-Obot-Thread-Id", resp.Thread.Name) return req.WriteCreated(map[string]string{ "threadID": resp.Thread.Name, diff --git a/pkg/api/handlers/availablemodels.go b/pkg/api/handlers/availablemodels.go index d8324eecf..e6032c37c 100644 --- a/pkg/api/handlers/availablemodels.go +++ b/pkg/api/handlers/availablemodels.go @@ -10,7 +10,7 @@ import ( "github.com/obot-platform/obot/pkg/api" "github.com/obot-platform/obot/pkg/availablemodels" "github.com/obot-platform/obot/pkg/gateway/server/dispatcher" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" "github.com/obot-platform/obot/pkg/system" "k8s.io/apimachinery/pkg/fields" kclient "sigs.k8s.io/controller-runtime/pkg/client" diff --git a/pkg/api/handlers/cronjob.go b/pkg/api/handlers/cronjob.go index 892c35776..03238bc9c 100644 --- a/pkg/api/handlers/cronjob.go +++ b/pkg/api/handlers/cronjob.go @@ -9,7 +9,7 @@ import ( "github.com/obot-platform/obot/pkg/alias" "github.com/obot-platform/obot/pkg/api" "github.com/obot-platform/obot/pkg/controller/handlers/cronjob" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" "github.com/obot-platform/obot/pkg/system" "github.com/robfig/cron/v3" apierrors "k8s.io/apimachinery/pkg/api/errors" diff --git a/pkg/api/handlers/defaultmodelalias.go b/pkg/api/handlers/defaultmodelalias.go index d485b0146..f76b3f61c 100644 --- a/pkg/api/handlers/defaultmodelalias.go +++ b/pkg/api/handlers/defaultmodelalias.go @@ -3,7 +3,7 @@ package handlers import ( "github.com/obot-platform/obot/apiclient/types" "github.com/obot-platform/obot/pkg/api" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" "github.com/obot-platform/obot/pkg/system" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" ) diff --git a/pkg/api/handlers/emailreceiver.go b/pkg/api/handlers/emailreceiver.go index 2762e1af4..b6763e3dd 100644 --- a/pkg/api/handlers/emailreceiver.go +++ b/pkg/api/handlers/emailreceiver.go @@ -4,7 +4,7 @@ import ( "github.com/obot-platform/obot/apiclient/types" "github.com/obot-platform/obot/pkg/alias" "github.com/obot-platform/obot/pkg/api" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" "github.com/obot-platform/obot/pkg/system" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" ) diff --git a/pkg/api/handlers/env.go b/pkg/api/handlers/env.go index 4bb07946e..14411e24d 100644 --- a/pkg/api/handlers/env.go +++ b/pkg/api/handlers/env.go @@ -10,7 +10,7 @@ import ( "github.com/gptscript-ai/go-gptscript" "github.com/obot-platform/obot/apiclient/types" "github.com/obot-platform/obot/pkg/api" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" "github.com/obot-platform/obot/pkg/system" kclient "sigs.k8s.io/controller-runtime/pkg/client" ) diff --git a/pkg/api/handlers/files.go b/pkg/api/handlers/files.go index 83a3a4dd8..d1eea64b3 100644 --- a/pkg/api/handlers/files.go +++ b/pkg/api/handlers/files.go @@ -10,7 +10,7 @@ import ( "github.com/gptscript-ai/go-gptscript" "github.com/obot-platform/obot/apiclient/types" "github.com/obot-platform/obot/pkg/api" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" "github.com/obot-platform/obot/pkg/storage/selectors" apierrors "k8s.io/apimachinery/pkg/api/errors" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" diff --git a/pkg/api/handlers/invoke.go b/pkg/api/handlers/invoke.go index c5cf02c0c..4eb278698 100644 --- a/pkg/api/handlers/invoke.go +++ b/pkg/api/handlers/invoke.go @@ -4,7 +4,7 @@ import ( "github.com/obot-platform/obot/pkg/alias" "github.com/obot-platform/obot/pkg/api" "github.com/obot-platform/obot/pkg/invoke" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" "github.com/obot-platform/obot/pkg/system" apierrors "k8s.io/apimachinery/pkg/api/errors" ) @@ -30,7 +30,7 @@ func (i *InvokeHandler) Invoke(req api.Context) error { ) if threadID == "" { - threadID = req.Request.Header.Get("X-Otto-Thread-Id") + threadID = req.Request.Header.Get("X-Obot-Thread-Id") } if system.IsThreadID(id) { @@ -105,7 +105,7 @@ func (i *InvokeHandler) Invoke(req api.Context) error { } defer resp.Close() - req.ResponseWriter.Header().Set("X-Otto-Thread-Id", resp.Thread.Name) + req.ResponseWriter.Header().Set("X-Obot-Thread-Id", resp.Thread.Name) if synchronous { return req.WriteEvents(resp.Events) diff --git a/pkg/api/handlers/knowledgesource.go b/pkg/api/handlers/knowledgesource.go index 730593a09..3d70cecdf 100644 --- a/pkg/api/handlers/knowledgesource.go +++ b/pkg/api/handlers/knowledgesource.go @@ -6,7 +6,7 @@ import ( "github.com/obot-platform/obot/apiclient/types" "github.com/obot-platform/obot/pkg/gz" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" ) func convertKnowledgeSource(agentName string, knowledgeSource v1.KnowledgeSource) types.KnowledgeSource { diff --git a/pkg/api/handlers/model.go b/pkg/api/handlers/model.go index c6f55a66f..af18fff21 100644 --- a/pkg/api/handlers/model.go +++ b/pkg/api/handlers/model.go @@ -8,7 +8,7 @@ import ( "github.com/obot-platform/obot/apiclient/types" "github.com/obot-platform/obot/pkg/api" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" "github.com/obot-platform/obot/pkg/storage/selectors" "github.com/obot-platform/obot/pkg/system" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" diff --git a/pkg/api/handlers/modelprovider.go b/pkg/api/handlers/modelprovider.go index 230223ffe..8877f24b4 100644 --- a/pkg/api/handlers/modelprovider.go +++ b/pkg/api/handlers/modelprovider.go @@ -8,7 +8,7 @@ import ( "github.com/obot-platform/obot/apiclient/types" "github.com/obot-platform/obot/pkg/api" "github.com/obot-platform/obot/pkg/gateway/server/dispatcher" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" "k8s.io/apimachinery/pkg/fields" kclient "sigs.k8s.io/controller-runtime/pkg/client" ) diff --git a/pkg/api/handlers/runs.go b/pkg/api/handlers/runs.go index bd52c0da2..2b513102a 100644 --- a/pkg/api/handlers/runs.go +++ b/pkg/api/handlers/runs.go @@ -6,7 +6,7 @@ import ( "github.com/obot-platform/obot/pkg/api" "github.com/obot-platform/obot/pkg/events" "github.com/obot-platform/obot/pkg/gz" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" ) diff --git a/pkg/api/handlers/tables.go b/pkg/api/handlers/tables.go index abb62f833..771dce35b 100644 --- a/pkg/api/handlers/tables.go +++ b/pkg/api/handlers/tables.go @@ -8,7 +8,7 @@ import ( "github.com/gptscript-ai/go-gptscript" "github.com/obot-platform/obot/apiclient/types" "github.com/obot-platform/obot/pkg/api" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" ) type TableHandler struct { diff --git a/pkg/api/handlers/tasks.go b/pkg/api/handlers/tasks.go index 21e8a5032..2e0be8825 100644 --- a/pkg/api/handlers/tasks.go +++ b/pkg/api/handlers/tasks.go @@ -13,7 +13,7 @@ import ( "github.com/obot-platform/obot/pkg/api" "github.com/obot-platform/obot/pkg/events" "github.com/obot-platform/obot/pkg/invoke" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" "github.com/obot-platform/obot/pkg/system" "github.com/obot-platform/obot/pkg/wait" apierrors "k8s.io/apimachinery/pkg/api/errors" diff --git a/pkg/api/handlers/threads.go b/pkg/api/handlers/threads.go index a9d43eddf..17d874ba0 100644 --- a/pkg/api/handlers/threads.go +++ b/pkg/api/handlers/threads.go @@ -11,7 +11,7 @@ import ( "github.com/obot-platform/obot/apiclient/types" "github.com/obot-platform/obot/pkg/api" "github.com/obot-platform/obot/pkg/events" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" kclient "sigs.k8s.io/controller-runtime/pkg/client" ) diff --git a/pkg/api/handlers/toolreferences.go b/pkg/api/handlers/toolreferences.go index 6a7f31419..e2ebffac9 100644 --- a/pkg/api/handlers/toolreferences.go +++ b/pkg/api/handlers/toolreferences.go @@ -11,7 +11,7 @@ import ( "github.com/obot-platform/nah/pkg/name" "github.com/obot-platform/obot/apiclient/types" "github.com/obot-platform/obot/pkg/api" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" apierrors "k8s.io/apimachinery/pkg/api/errors" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" ) diff --git a/pkg/api/handlers/tools.go b/pkg/api/handlers/tools.go index 29490fd6d..535291245 100644 --- a/pkg/api/handlers/tools.go +++ b/pkg/api/handlers/tools.go @@ -9,7 +9,7 @@ import ( "github.com/gptscript-ai/go-gptscript" "github.com/obot-platform/obot/apiclient/types" "github.com/obot-platform/obot/pkg/api" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" "github.com/obot-platform/obot/pkg/system" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" ) diff --git a/pkg/api/handlers/webhooks.go b/pkg/api/handlers/webhooks.go index 97b718bad..4167c838b 100644 --- a/pkg/api/handlers/webhooks.go +++ b/pkg/api/handlers/webhooks.go @@ -14,7 +14,7 @@ import ( "github.com/obot-platform/obot/apiclient/types" "github.com/obot-platform/obot/pkg/alias" "github.com/obot-platform/obot/pkg/api" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" "github.com/obot-platform/obot/pkg/system" "golang.org/x/crypto/bcrypt" apierrors "k8s.io/apimachinery/pkg/api/errors" @@ -22,7 +22,7 @@ import ( ) const ( - WebhookTokenHTTPHeader = "X-Otto8-Webhook-Token" + WebhookTokenHTTPHeader = "X-Obot-Webhook-Token" WebhookTokenQueryParam = "token" ) diff --git a/pkg/api/handlers/workflows.go b/pkg/api/handlers/workflows.go index 8ebf93db9..87d5f3c7b 100644 --- a/pkg/api/handlers/workflows.go +++ b/pkg/api/handlers/workflows.go @@ -13,7 +13,7 @@ import ( "github.com/obot-platform/obot/pkg/controller/handlers/workflow" "github.com/obot-platform/obot/pkg/invoke" "github.com/obot-platform/obot/pkg/render" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" "github.com/obot-platform/obot/pkg/system" "github.com/obot-platform/obot/pkg/wait" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" @@ -69,7 +69,7 @@ func (a *WorkflowHandler) Authenticate(req api.Context) error { } }() - req.ResponseWriter.Header().Set("X-Otto-Thread-Id", resp.Thread.Name) + req.ResponseWriter.Header().Set("X-Obot-Thread-Id", resp.Thread.Name) return req.WriteEvents(resp.Events) } @@ -447,7 +447,7 @@ func (a *WorkflowHandler) Script(req api.Context) error { nodes := gptscript.ToolDefsToNodes(tools) nodes = append(nodes, gptscript.Node{ TextNode: &gptscript.TextNode{ - Text: "!otto-extra-env\n" + strings.Join(extraEnv, "\n"), + Text: "!obot-extra-env\n" + strings.Join(extraEnv, "\n"), }, }) diff --git a/pkg/api/server/server.go b/pkg/api/server/server.go index 6ad55a25a..3564da2e4 100644 --- a/pkg/api/server/server.go +++ b/pkg/api/server/server.go @@ -60,7 +60,7 @@ func (s *Server) wrap(f api.HandlerFunc) http.HandlerFunc { // If this header is set, then the session was deemed to be invalid and the request has come back around through the proxy. // The cookie on the request is still invalid because the new one has not been sent back to the browser. // Therefore, respond with a redirect so that the browser will redirect back to the original request with the new cookie. - if req.Header.Get("X-Otto-Auth-Required") == "true" { + if req.Header.Get("X-Obot-Auth-Required") == "true" { http.Redirect(rw, req, req.RequestURI, http.StatusFound) return } @@ -83,7 +83,7 @@ func (s *Server) wrap(f api.HandlerFunc) http.HandlerFunc { return } - req.Header.Set("X-Otto-Auth-Required", "true") + req.Header.Set("X-Obot-Auth-Required", "true") s.proxyServer.ServeHTTP(rw, req) return } diff --git a/pkg/cli/edit/edit.go b/pkg/cli/edit/edit.go index d154f5d91..2f7883446 100644 --- a/pkg/cli/edit/edit.go +++ b/pkg/cli/edit/edit.go @@ -49,7 +49,7 @@ var ErrEditAborted = errors.New("edit aborted") func Edit(content []byte, suffix string, save func([]byte) error) error { editor := editor.NewDefaultEditor(envs) for { - buf, file, err := editor.LaunchTempFile("otto", suffix, bytes.NewReader(content)) + buf, file, err := editor.LaunchTempFile("obot", suffix, bytes.NewReader(content)) if file != "" { _ = os.Remove(file) } diff --git a/pkg/controller/data/agent.go b/pkg/controller/data/agent.go index 2bcbc7348..31e50e8f6 100644 --- a/pkg/controller/data/agent.go +++ b/pkg/controller/data/agent.go @@ -5,7 +5,7 @@ import ( _ "embed" "slices" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" apierrors "k8s.io/apimachinery/pkg/api/errors" kclient "sigs.k8s.io/controller-runtime/pkg/client" "sigs.k8s.io/yaml" diff --git a/pkg/controller/data/agent.yaml b/pkg/controller/data/agent.yaml index 0c0eaa4fd..96243a4ff 100644 --- a/pkg/controller/data/agent.yaml +++ b/pkg/controller/data/agent.yaml @@ -1,4 +1,4 @@ -apiVersion: otto.otto8.ai/v1 +apiVersion: obot.obot.ai/v1 kind: Agent metadata: name: a1-obot diff --git a/pkg/controller/data/data.go b/pkg/controller/data/data.go index 1bf62dbfa..4c14f456d 100644 --- a/pkg/controller/data/data.go +++ b/pkg/controller/data/data.go @@ -4,7 +4,7 @@ import ( "context" _ "embed" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" apierrors "k8s.io/apimachinery/pkg/api/errors" kclient "sigs.k8s.io/controller-runtime/pkg/client" "sigs.k8s.io/yaml" diff --git a/pkg/controller/data/default-model-aliases.yaml b/pkg/controller/data/default-model-aliases.yaml index 7fd947190..efcfe3d59 100644 --- a/pkg/controller/data/default-model-aliases.yaml +++ b/pkg/controller/data/default-model-aliases.yaml @@ -1,5 +1,5 @@ items: - - apiVersion: otto.otto8.ai/v1 + - apiVersion: obot.obot.ai/v1 kind: DefaultModelAlias metadata: name: llm @@ -7,7 +7,7 @@ items: spec: manifest: alias: llm - - apiVersion: otto.otto8.ai/v1 + - apiVersion: obot.obot.ai/v1 kind: DefaultModelAlias metadata: name: llm-mini @@ -15,7 +15,7 @@ items: spec: manifest: alias: llm-mini - - apiVersion: otto.otto8.ai/v1 + - apiVersion: obot.obot.ai/v1 kind: DefaultModelAlias metadata: name: text-embedding @@ -23,7 +23,7 @@ items: spec: manifest: alias: text-embedding - - apiVersion: otto.otto8.ai/v1 + - apiVersion: obot.obot.ai/v1 kind: DefaultModelAlias metadata: name: image-generation @@ -31,7 +31,7 @@ items: spec: manifest: alias: image-generation - - apiVersion: otto.otto8.ai/v1 + - apiVersion: obot.obot.ai/v1 kind: DefaultModelAlias metadata: name: vision diff --git a/pkg/controller/data/default-models.yaml b/pkg/controller/data/default-models.yaml index 8b3ac7abe..7bd8423a5 100644 --- a/pkg/controller/data/default-models.yaml +++ b/pkg/controller/data/default-models.yaml @@ -1,5 +1,5 @@ items: - - apiVersion: otto.otto8.ai/v1 + - apiVersion: obot.obot.ai/v1 kind: Model metadata: name: gpt-4o @@ -10,7 +10,7 @@ items: modelProvider: openai-model-provider active: true usage: llm - - apiVersion: otto.otto8.ai/v1 + - apiVersion: obot.obot.ai/v1 kind: Model metadata: name: text-embedding-ada-002 @@ -21,7 +21,7 @@ items: modelProvider: openai-model-provider active: true usage: text-embedding - - apiVersion: otto.otto8.ai/v1 + - apiVersion: obot.obot.ai/v1 kind: Model metadata: name: text-embedding-3-small @@ -32,7 +32,7 @@ items: modelProvider: openai-model-provider active: true usage: text-embedding - - apiVersion: otto.otto8.ai/v1 + - apiVersion: obot.obot.ai/v1 kind: Model metadata: name: text-embedding-3-large @@ -43,7 +43,7 @@ items: modelProvider: openai-model-provider active: true usage: text-embedding - - apiVersion: otto.otto8.ai/v1 + - apiVersion: obot.obot.ai/v1 kind: Model metadata: name: dall-e-3 @@ -54,7 +54,7 @@ items: modelProvider: openai-model-provider active: true usage: image-generation - - apiVersion: otto.otto8.ai/v1 + - apiVersion: obot.obot.ai/v1 kind: Model metadata: name: gpt-4o-mini @@ -65,7 +65,7 @@ items: modelProvider: openai-model-provider active: true usage: llm - - apiVersion: otto.otto8.ai/v1 + - apiVersion: obot.obot.ai/v1 kind: Model metadata: name: gpt-3.5-turbo diff --git a/pkg/controller/generationed/generationed.go b/pkg/controller/generationed/generationed.go index 1aa3ad769..71bbc8330 100644 --- a/pkg/controller/generationed/generationed.go +++ b/pkg/controller/generationed/generationed.go @@ -2,7 +2,7 @@ package generationed import ( "github.com/obot-platform/nah/pkg/router" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" ) // UpdateObservedGeneration should be the last handler that runs on such an object to ensure diff --git a/pkg/controller/handlers/agents/agents.go b/pkg/controller/handlers/agents/agents.go index 253baf037..8b1909740 100644 --- a/pkg/controller/handlers/agents/agents.go +++ b/pkg/controller/handlers/agents/agents.go @@ -8,7 +8,7 @@ import ( "github.com/obot-platform/nah/pkg/router" "github.com/obot-platform/obot/apiclient/types" "github.com/obot-platform/obot/pkg/create" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" "github.com/obot-platform/obot/pkg/system" "k8s.io/apimachinery/pkg/api/equality" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" diff --git a/pkg/controller/handlers/alias/alias.go b/pkg/controller/handlers/alias/alias.go index 5d72f9778..d8d1238f7 100644 --- a/pkg/controller/handlers/alias/alias.go +++ b/pkg/controller/handlers/alias/alias.go @@ -8,7 +8,7 @@ import ( "github.com/obot-platform/obot/logger" "github.com/obot-platform/obot/pkg/alias" "github.com/obot-platform/obot/pkg/create" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" apierrors "k8s.io/apimachinery/pkg/api/errors" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/runtime/schema" diff --git a/pkg/controller/handlers/cleanup/cleanup.go b/pkg/controller/handlers/cleanup/cleanup.go index 14a332f46..fc0e5e1b6 100644 --- a/pkg/controller/handlers/cleanup/cleanup.go +++ b/pkg/controller/handlers/cleanup/cleanup.go @@ -4,7 +4,7 @@ import ( "github.com/obot-platform/nah/pkg/router" "github.com/obot-platform/nah/pkg/uncached" "github.com/obot-platform/obot/logger" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" apierrors "k8s.io/apimachinery/pkg/api/errors" "k8s.io/apimachinery/pkg/runtime/schema" kclient "sigs.k8s.io/controller-runtime/pkg/client" diff --git a/pkg/controller/handlers/cronjob/cronjob.go b/pkg/controller/handlers/cronjob/cronjob.go index 67c081c72..7541baea9 100644 --- a/pkg/controller/handlers/cronjob/cronjob.go +++ b/pkg/controller/handlers/cronjob/cronjob.go @@ -7,7 +7,7 @@ import ( "github.com/obot-platform/nah/pkg/router" "github.com/obot-platform/obot/apiclient/types" "github.com/obot-platform/obot/pkg/alias" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" "github.com/obot-platform/obot/pkg/system" "github.com/robfig/cron/v3" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" diff --git a/pkg/controller/handlers/knowledgefile/knowledgefile.go b/pkg/controller/handlers/knowledgefile/knowledgefile.go index cc7dcd98b..7a7ff74e2 100644 --- a/pkg/controller/handlers/knowledgefile/knowledgefile.go +++ b/pkg/controller/handlers/knowledgefile/knowledgefile.go @@ -14,7 +14,7 @@ import ( "github.com/obot-platform/nah/pkg/typed" "github.com/obot-platform/obot/apiclient/types" "github.com/obot-platform/obot/pkg/invoke" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" "github.com/obot-platform/obot/pkg/system" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" kclient "sigs.k8s.io/controller-runtime/pkg/client" diff --git a/pkg/controller/handlers/knowledgeset/knowledgeset.go b/pkg/controller/handlers/knowledgeset/knowledgeset.go index 7228ca5f7..cfd3f4db8 100644 --- a/pkg/controller/handlers/knowledgeset/knowledgeset.go +++ b/pkg/controller/handlers/knowledgeset/knowledgeset.go @@ -10,7 +10,7 @@ import ( "github.com/obot-platform/obot/pkg/aihelper" "github.com/obot-platform/obot/pkg/create" "github.com/obot-platform/obot/pkg/invoke" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" "github.com/obot-platform/obot/pkg/system" apierrors "k8s.io/apimachinery/pkg/api/errors" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" diff --git a/pkg/controller/handlers/knowledgesource/knowledgesource.go b/pkg/controller/handlers/knowledgesource/knowledgesource.go index 07cc0e529..75eabdb22 100644 --- a/pkg/controller/handlers/knowledgesource/knowledgesource.go +++ b/pkg/controller/handlers/knowledgesource/knowledgesource.go @@ -13,7 +13,7 @@ import ( "github.com/obot-platform/obot/pkg/create" "github.com/obot-platform/obot/pkg/gz" "github.com/obot-platform/obot/pkg/invoke" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" "github.com/obot-platform/obot/pkg/system" "github.com/obot-platform/obot/pkg/wait" apierror "k8s.io/apimachinery/pkg/api/errors" diff --git a/pkg/controller/handlers/knowledgesource/metadata.go b/pkg/controller/handlers/knowledgesource/metadata.go index cf407ca65..bc0037550 100644 --- a/pkg/controller/handlers/knowledgesource/metadata.go +++ b/pkg/controller/handlers/knowledgesource/metadata.go @@ -8,7 +8,7 @@ import ( "path/filepath" "github.com/gptscript-ai/go-gptscript" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" ) diff --git a/pkg/controller/handlers/knowledgesource/reschedule.go b/pkg/controller/handlers/knowledgesource/reschedule.go index 5c2bbc2d8..5a29982d4 100644 --- a/pkg/controller/handlers/knowledgesource/reschedule.go +++ b/pkg/controller/handlers/knowledgesource/reschedule.go @@ -6,7 +6,7 @@ import ( "github.com/obot-platform/nah/pkg/router" "github.com/obot-platform/obot/apiclient/types" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" "github.com/robfig/cron/v3" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" ) diff --git a/pkg/controller/handlers/knowledgesummary/knowledgesummary.go b/pkg/controller/handlers/knowledgesummary/knowledgesummary.go index 0c042e399..019973d9d 100644 --- a/pkg/controller/handlers/knowledgesummary/knowledgesummary.go +++ b/pkg/controller/handlers/knowledgesummary/knowledgesummary.go @@ -11,7 +11,7 @@ import ( "github.com/obot-platform/nah/pkg/router" "github.com/obot-platform/obot/pkg/controller/handlers/knowledgefile" "github.com/obot-platform/obot/pkg/gz" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" apierror "k8s.io/apimachinery/pkg/api/errors" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" kclient "sigs.k8s.io/controller-runtime/pkg/client" diff --git a/pkg/controller/handlers/oauthapp/oauthapplogin.go b/pkg/controller/handlers/oauthapp/oauthapplogin.go index b8b269632..36110ab75 100644 --- a/pkg/controller/handlers/oauthapp/oauthapplogin.go +++ b/pkg/controller/handlers/oauthapp/oauthapplogin.go @@ -9,7 +9,7 @@ import ( "github.com/obot-platform/obot/apiclient/types" "github.com/obot-platform/obot/pkg/invoke" "github.com/obot-platform/obot/pkg/render" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" "github.com/obot-platform/obot/pkg/system" apierrors "k8s.io/apimachinery/pkg/api/errors" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" diff --git a/pkg/controller/handlers/runs/runs.go b/pkg/controller/handlers/runs/runs.go index d9887e9ae..6078cad3f 100644 --- a/pkg/controller/handlers/runs/runs.go +++ b/pkg/controller/handlers/runs/runs.go @@ -7,7 +7,7 @@ import ( "github.com/gptscript-ai/go-gptscript" "github.com/obot-platform/nah/pkg/router" "github.com/obot-platform/obot/pkg/invoke" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" apierrors "k8s.io/apimachinery/pkg/api/errors" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "sigs.k8s.io/controller-runtime/pkg/client" diff --git a/pkg/controller/handlers/threads/threads.go b/pkg/controller/handlers/threads/threads.go index 1201a1159..69f91296a 100644 --- a/pkg/controller/handlers/threads/threads.go +++ b/pkg/controller/handlers/threads/threads.go @@ -6,7 +6,7 @@ import ( "github.com/obot-platform/nah/pkg/name" "github.com/obot-platform/nah/pkg/router" "github.com/obot-platform/obot/pkg/create" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" "github.com/obot-platform/obot/pkg/system" "github.com/obot-platform/obot/pkg/wait" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" diff --git a/pkg/controller/handlers/toolinfo/toolinfo.go b/pkg/controller/handlers/toolinfo/toolinfo.go index 74d5396a3..b8c67ab5b 100644 --- a/pkg/controller/handlers/toolinfo/toolinfo.go +++ b/pkg/controller/handlers/toolinfo/toolinfo.go @@ -6,7 +6,7 @@ import ( "github.com/gptscript-ai/go-gptscript" "github.com/obot-platform/nah/pkg/router" "github.com/obot-platform/obot/apiclient/types" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" "github.com/obot-platform/obot/pkg/system" apierror "k8s.io/apimachinery/pkg/api/errors" "k8s.io/apimachinery/pkg/util/sets" @@ -40,6 +40,7 @@ func (h *Handler) SetToolInfoStatus(req router.Request, resp router.Response) (e if err != nil { return err } + credsSet := make(sets.Set[string], len(creds)+1) for _, cred := range creds { credsSet.Insert(cred.ToolName) @@ -52,7 +53,7 @@ func (h *Handler) SetToolInfoStatus(req router.Request, resp router.Response) (e var toolRef v1.ToolReference for _, tool := range tools { - if err := req.Get(&toolRef, req.Namespace, tool); apierror.IsNotFound(err) { + if err = req.Get(&toolRef, req.Namespace, tool); apierror.IsNotFound(err) { continue } else if err != nil { return err diff --git a/pkg/controller/handlers/toolreference/toolreference.go b/pkg/controller/handlers/toolreference/toolreference.go index f1ce1a9af..25959ca89 100644 --- a/pkg/controller/handlers/toolreference/toolreference.go +++ b/pkg/controller/handlers/toolreference/toolreference.go @@ -21,7 +21,7 @@ import ( "github.com/obot-platform/obot/logger" "github.com/obot-platform/obot/pkg/availablemodels" "github.com/obot-platform/obot/pkg/gateway/server/dispatcher" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" "github.com/obot-platform/obot/pkg/system" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/fields" @@ -71,7 +71,7 @@ func isValidTool(tool gptscript.Tool) bool { func (h *Handler) toolsToToolReferences(ctx context.Context, toolType types.ToolReferenceType, entries map[string]indexEntry) (result []client.Object) { annotations := map[string]string{ - "obot.otto8.ai/timestamp": time.Now().String(), + "obot.obot.ai/timestamp": time.Now().String(), } for name, entry := range entries { if ref, ok := strings.CutPrefix(entry.Reference, "./"); ok { diff --git a/pkg/controller/handlers/webhook/webhook.go b/pkg/controller/handlers/webhook/webhook.go index a77d46dfd..959e830ee 100644 --- a/pkg/controller/handlers/webhook/webhook.go +++ b/pkg/controller/handlers/webhook/webhook.go @@ -3,7 +3,7 @@ package webhook import ( "github.com/obot-platform/nah/pkg/router" "github.com/obot-platform/obot/apiclient/types" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" "k8s.io/apimachinery/pkg/fields" kclient "sigs.k8s.io/controller-runtime/pkg/client" ) diff --git a/pkg/controller/handlers/workflow/files.go b/pkg/controller/handlers/workflow/files.go index cc0ccf3a0..01ce2c7e9 100644 --- a/pkg/controller/handlers/workflow/files.go +++ b/pkg/controller/handlers/workflow/files.go @@ -6,7 +6,7 @@ import ( "github.com/obot-platform/nah/pkg/name" "github.com/obot-platform/nah/pkg/router" "github.com/obot-platform/obot/pkg/create" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" "github.com/obot-platform/obot/pkg/system" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" kclient "sigs.k8s.io/controller-runtime/pkg/client" diff --git a/pkg/controller/handlers/workflow/oauth.go b/pkg/controller/handlers/workflow/oauth.go index 55772a937..ac62fa9d2 100644 --- a/pkg/controller/handlers/workflow/oauth.go +++ b/pkg/controller/handlers/workflow/oauth.go @@ -5,7 +5,7 @@ import ( "github.com/obot-platform/nah/pkg/router" "github.com/obot-platform/obot/apiclient/types" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" "github.com/obot-platform/obot/pkg/system" "k8s.io/apimachinery/pkg/api/equality" apierror "k8s.io/apimachinery/pkg/api/errors" diff --git a/pkg/controller/handlers/workflow/workflow.go b/pkg/controller/handlers/workflow/workflow.go index b9465c690..831d3b041 100644 --- a/pkg/controller/handlers/workflow/workflow.go +++ b/pkg/controller/handlers/workflow/workflow.go @@ -2,7 +2,7 @@ package workflow import ( "github.com/obot-platform/nah/pkg/router" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" "k8s.io/apimachinery/pkg/api/equality" ) diff --git a/pkg/controller/handlers/workflowexecution/workflowexecution.go b/pkg/controller/handlers/workflowexecution/workflowexecution.go index f1b85dc17..d62d5cc60 100644 --- a/pkg/controller/handlers/workflowexecution/workflowexecution.go +++ b/pkg/controller/handlers/workflowexecution/workflowexecution.go @@ -9,7 +9,7 @@ import ( "github.com/obot-platform/obot/apiclient/types" "github.com/obot-platform/obot/pkg/controller/handlers/workflowstep" "github.com/obot-platform/obot/pkg/invoke" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" "github.com/obot-platform/obot/pkg/system" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" kclient "sigs.k8s.io/controller-runtime/pkg/client" diff --git a/pkg/controller/handlers/workflowstep/if.go b/pkg/controller/handlers/workflowstep/if.go index fb2e4d98c..32259901a 100644 --- a/pkg/controller/handlers/workflowstep/if.go +++ b/pkg/controller/handlers/workflowstep/if.go @@ -8,7 +8,7 @@ import ( "github.com/obot-platform/nah/pkg/apply" "github.com/obot-platform/nah/pkg/router" "github.com/obot-platform/obot/apiclient/types" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" apierrors "k8s.io/apimachinery/pkg/api/errors" kclient "sigs.k8s.io/controller-runtime/pkg/client" ) diff --git a/pkg/controller/handlers/workflowstep/invoke.go b/pkg/controller/handlers/workflowstep/invoke.go index c1b854795..c063e1fef 100644 --- a/pkg/controller/handlers/workflowstep/invoke.go +++ b/pkg/controller/handlers/workflowstep/invoke.go @@ -6,7 +6,7 @@ import ( "github.com/obot-platform/nah/pkg/uncached" "github.com/obot-platform/obot/apiclient/types" "github.com/obot-platform/obot/pkg/invoke" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" "k8s.io/client-go/util/retry" ) diff --git a/pkg/controller/handlers/workflowstep/subflow.go b/pkg/controller/handlers/workflowstep/subflow.go index 9212c1aab..33579a3c6 100644 --- a/pkg/controller/handlers/workflowstep/subflow.go +++ b/pkg/controller/handlers/workflowstep/subflow.go @@ -11,7 +11,7 @@ import ( "github.com/obot-platform/obot/apiclient/types" "github.com/obot-platform/obot/pkg/invoke" "github.com/obot-platform/obot/pkg/render" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" "github.com/obot-platform/obot/pkg/system" apierrors "k8s.io/apimachinery/pkg/api/errors" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" diff --git a/pkg/controller/handlers/workflowstep/while.go b/pkg/controller/handlers/workflowstep/while.go index 4d7ee201e..6bbd0c3ab 100644 --- a/pkg/controller/handlers/workflowstep/while.go +++ b/pkg/controller/handlers/workflowstep/while.go @@ -6,7 +6,7 @@ import ( "github.com/obot-platform/nah/pkg/apply" "github.com/obot-platform/nah/pkg/router" "github.com/obot-platform/obot/apiclient/types" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" kclient "sigs.k8s.io/controller-runtime/pkg/client" ) diff --git a/pkg/controller/handlers/workflowstep/workflowstep.go b/pkg/controller/handlers/workflowstep/workflowstep.go index cd6d4377e..253cc4a33 100644 --- a/pkg/controller/handlers/workflowstep/workflowstep.go +++ b/pkg/controller/handlers/workflowstep/workflowstep.go @@ -9,7 +9,7 @@ import ( "github.com/obot-platform/nah/pkg/router" "github.com/obot-platform/obot/apiclient/types" "github.com/obot-platform/obot/pkg/invoke" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" "github.com/obot-platform/obot/pkg/system" apierrors "k8s.io/apimachinery/pkg/api/errors" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" diff --git a/pkg/controller/handlers/workspace/workspace.go b/pkg/controller/handlers/workspace/workspace.go index 1577d2003..8473a186c 100644 --- a/pkg/controller/handlers/workspace/workspace.go +++ b/pkg/controller/handlers/workspace/workspace.go @@ -5,7 +5,7 @@ import ( "github.com/gptscript-ai/go-gptscript" "github.com/obot-platform/nah/pkg/router" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" "github.com/obot-platform/obot/pkg/wait" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" kclient "sigs.k8s.io/controller-runtime/pkg/client" diff --git a/pkg/controller/routes.go b/pkg/controller/routes.go index 939f997cb..987178f7c 100644 --- a/pkg/controller/routes.go +++ b/pkg/controller/routes.go @@ -1,7 +1,11 @@ package controller import ( + "strings" + + "github.com/obot-platform/nah/pkg/apply" "github.com/obot-platform/nah/pkg/handlers" + "github.com/obot-platform/nah/pkg/router" "github.com/obot-platform/obot/pkg/controller/generationed" "github.com/obot-platform/obot/pkg/controller/handlers/agents" "github.com/obot-platform/obot/pkg/controller/handlers/alias" @@ -21,7 +25,7 @@ import ( "github.com/obot-platform/obot/pkg/controller/handlers/workflowexecution" "github.com/obot-platform/obot/pkg/controller/handlers/workflowstep" "github.com/obot-platform/obot/pkg/controller/handlers/workspace" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" ) func (c *Controller) setupRoutes() error { @@ -43,6 +47,7 @@ func (c *Controller) setupRoutes() error { toolInfo := toolinfo.New(c.services.GPTClient) // Runs + root.Type(&v1.Run{}).HandlerFunc(removeOldFinalizers) root.Type(&v1.Run{}).FinalizeFunc(v1.RunFinalizer, runs.DeleteRunState) root.Type(&v1.Run{}).HandlerFunc(runs.DeleteFinished) root.Type(&v1.Run{}).HandlerFunc(cleanup.Cleanup) @@ -81,6 +86,7 @@ func (c *Controller) setupRoutes() error { // Uploads root.Type(&v1.KnowledgeSource{}).HandlerFunc(cleanup.Cleanup) + root.Type(&v1.KnowledgeSource{}).HandlerFunc(removeOldFinalizers) root.Type(&v1.KnowledgeSource{}).FinalizeFunc(v1.KnowledgeSourceFinalizer, knowledgesource.Cleanup) root.Type(&v1.KnowledgeSource{}).HandlerFunc(knowledgesource.Reschedule) root.Type(&v1.KnowledgeSource{}).HandlerFunc(knowledgesource.Sync) @@ -88,6 +94,7 @@ func (c *Controller) setupRoutes() error { // ToolReferences root.Type(&v1.ToolReference{}).HandlerFunc(toolRef.BackPopulateModels) root.Type(&v1.ToolReference{}).HandlerFunc(toolRef.Populate) + root.Type(&v1.ToolReference{}).HandlerFunc(removeOldFinalizers) root.Type(&v1.ToolReference{}).FinalizeFunc(v1.ToolReferenceFinalizer, toolRef.CleanupModelProvider) // EmailReceivers @@ -95,6 +102,7 @@ func (c *Controller) setupRoutes() error { root.Type(&v1.EmailReceiver{}).HandlerFunc(generationed.UpdateObservedGeneration) // Models + root.Type(&v1.Model{}).HandlerFunc(deleteOldModel) root.Type(&v1.Model{}).HandlerFunc(alias.AssignAlias) root.Type(&v1.Model{}).HandlerFunc(generationed.UpdateObservedGeneration) @@ -104,17 +112,20 @@ func (c *Controller) setupRoutes() error { // Knowledge files root.Type(&v1.KnowledgeFile{}).HandlerFunc(cleanup.Cleanup) + root.Type(&v1.KnowledgeFile{}).HandlerFunc(removeOldFinalizers) root.Type(&v1.KnowledgeFile{}).FinalizeFunc(v1.KnowledgeFileFinalizer, knowledgefile.Cleanup) root.Type(&v1.KnowledgeFile{}).HandlerFunc(knowledgefile.IngestFile) root.Type(&v1.KnowledgeFile{}).HandlerFunc(knowledgefile.Unapproved) // Workspaces root.Type(&v1.Workspace{}).HandlerFunc(cleanup.Cleanup) + root.Type(&v1.Workspace{}).HandlerFunc(removeOldFinalizers) root.Type(&v1.Workspace{}).FinalizeFunc(v1.WorkspaceFinalizer, workspace.RemoveWorkspace) root.Type(&v1.Workspace{}).HandlerFunc(workspace.CreateWorkspace) // KnowledgeSets root.Type(&v1.KnowledgeSet{}).HandlerFunc(cleanup.Cleanup) + root.Type(&v1.KnowledgeSet{}).HandlerFunc(removeOldFinalizers) root.Type(&v1.KnowledgeSet{}).FinalizeFunc(v1.KnowledgeSetFinalizer, knowledgeset.Cleanup) // Also cleanup the dataset when there is no content. // This will allow the user to switch the embedding model implicitly. @@ -160,3 +171,29 @@ func (c *Controller) setupRoutes() error { c.toolRefHandler = toolRef return nil } + +func removeOldFinalizers(req router.Request, _ router.Response) error { + finalizers := req.Object.GetFinalizers() + originalCount := len(finalizers) + for i := 0; i < len(finalizers); i++ { + if strings.HasPrefix("otto.otto8.ai/", finalizers[i]) { + finalizers = append(finalizers[:i], finalizers[i+1:]...) + i-- + } + } + + if len(finalizers) != originalCount { + req.Object.SetFinalizers(finalizers) + return req.Client.Update(req.Ctx, req.Object) + } + + return nil +} + +func deleteOldModel(req router.Request, _ router.Response) error { + if ownerGVK, ok := req.Object.GetAnnotations()[apply.LabelGVK]; ok && strings.HasPrefix(ownerGVK, "otto.otto8.ai/") { + return req.Client.Delete(req.Ctx, req.Object) + } + + return nil +} diff --git a/pkg/events/events.go b/pkg/events/events.go index 24c499a70..bedf3bbdc 100644 --- a/pkg/events/events.go +++ b/pkg/events/events.go @@ -17,7 +17,7 @@ import ( "github.com/obot-platform/obot/apiclient/types" "github.com/obot-platform/obot/logger" "github.com/obot-platform/obot/pkg/gz" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" "github.com/obot-platform/obot/pkg/system" "github.com/obot-platform/obot/pkg/wait" apierrors "k8s.io/apimachinery/pkg/api/errors" diff --git a/pkg/gateway/server/dispatcher/dispatcher.go b/pkg/gateway/server/dispatcher/dispatcher.go index d5c6cc592..d015dfe5f 100644 --- a/pkg/gateway/server/dispatcher/dispatcher.go +++ b/pkg/gateway/server/dispatcher/dispatcher.go @@ -17,7 +17,7 @@ import ( "github.com/obot-platform/obot/apiclient/types" "github.com/obot-platform/obot/pkg/alias" "github.com/obot-platform/obot/pkg/invoke" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" "github.com/obot-platform/obot/pkg/system" apierrors "k8s.io/apimachinery/pkg/api/errors" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" diff --git a/pkg/gateway/server/llmproxy.go b/pkg/gateway/server/llmproxy.go index 53d2ae216..f6914f673 100644 --- a/pkg/gateway/server/llmproxy.go +++ b/pkg/gateway/server/llmproxy.go @@ -9,7 +9,7 @@ import ( types2 "github.com/obot-platform/obot/apiclient/types" "github.com/obot-platform/obot/pkg/api" "github.com/obot-platform/obot/pkg/gateway/types" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" ) func (s *Server) llmProxy(req api.Context) error { diff --git a/pkg/gateway/server/oauth_apps.go b/pkg/gateway/server/oauth_apps.go index 10df9c8f0..5d0980b96 100644 --- a/pkg/gateway/server/oauth_apps.go +++ b/pkg/gateway/server/oauth_apps.go @@ -22,7 +22,7 @@ import ( kcontext "github.com/obot-platform/obot/pkg/gateway/context" "github.com/obot-platform/obot/pkg/gateway/types" "github.com/obot-platform/obot/pkg/mvl" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" "github.com/obot-platform/obot/pkg/storage/selectors" "github.com/obot-platform/obot/pkg/system" "gorm.io/gorm" diff --git a/pkg/invoke/invoker.go b/pkg/invoke/invoker.go index 89ea71447..5db6e40aa 100644 --- a/pkg/invoke/invoker.go +++ b/pkg/invoke/invoker.go @@ -24,7 +24,7 @@ import ( "github.com/obot-platform/obot/pkg/hash" "github.com/obot-platform/obot/pkg/jwt" "github.com/obot-platform/obot/pkg/render" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" "github.com/obot-platform/obot/pkg/system" "github.com/obot-platform/obot/pkg/wait" apierror "k8s.io/apimachinery/pkg/api/errors" @@ -789,7 +789,7 @@ type call struct { func toSubCall(output string) *v1.SubCall { var call call - if err := json.Unmarshal([]byte(strings.TrimSpace(output)), &call); err != nil || call.Type != "OttoSubFlow" || call.Workflow == "" { + if err := json.Unmarshal([]byte(strings.TrimSpace(output)), &call); err != nil || call.Type != "ObotSubFlow" || call.Workflow == "" { return nil } diff --git a/pkg/invoke/step.go b/pkg/invoke/step.go index 2fe13d20c..3b3b7f772 100644 --- a/pkg/invoke/step.go +++ b/pkg/invoke/step.go @@ -8,7 +8,7 @@ import ( "github.com/obot-platform/nah/pkg/router" "github.com/obot-platform/obot/apiclient/types" "github.com/obot-platform/obot/pkg/render" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" kclient "sigs.k8s.io/controller-runtime/pkg/client" ) diff --git a/pkg/invoke/system.go b/pkg/invoke/system.go index 426c374c2..1e8906f5e 100644 --- a/pkg/invoke/system.go +++ b/pkg/invoke/system.go @@ -7,7 +7,7 @@ import ( "strings" "time" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" ) type SystemTaskOptions struct { diff --git a/pkg/invoke/workflow.go b/pkg/invoke/workflow.go index 66077d89d..33ed64774 100644 --- a/pkg/invoke/workflow.go +++ b/pkg/invoke/workflow.go @@ -9,7 +9,7 @@ import ( "github.com/obot-platform/obot/apiclient/types" "github.com/obot-platform/obot/pkg/events" "github.com/obot-platform/obot/pkg/render" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" "github.com/obot-platform/obot/pkg/system" "github.com/obot-platform/obot/pkg/wait" apierror "k8s.io/apimachinery/pkg/api/errors" diff --git a/pkg/render/render.go b/pkg/render/render.go index 815b5ebe2..1730b50f5 100644 --- a/pkg/render/render.go +++ b/pkg/render/render.go @@ -11,7 +11,7 @@ import ( "github.com/gptscript-ai/go-gptscript" "github.com/obot-platform/obot/apiclient/types" "github.com/obot-platform/obot/pkg/gz" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" apierror "k8s.io/apimachinery/pkg/api/errors" kclient "sigs.k8s.io/controller-runtime/pkg/client" ) @@ -298,7 +298,7 @@ func manifestToTool(manifest types.AgentManifest, agentType, ref, id string) gpt #OBOT_SUBCALL: TARGET: %s INPUT=$(${GPTSCRIPT_BIN} getenv GPTSCRIPT_INPUT) if echo "${INPUT}" | grep -q '^{'; then - echo '{"%s":"%s","type":"OttoSubFlow",' + echo '{"%s":"%s","type":"ObotSubFlow",' echo '"input":'"${INPUT}" echo '}' else diff --git a/pkg/render/tool.go b/pkg/render/tool.go index c5ab0aeba..21de39e6b 100644 --- a/pkg/render/tool.go +++ b/pkg/render/tool.go @@ -8,7 +8,7 @@ import ( "github.com/gptscript-ai/go-gptscript" "github.com/obot-platform/nah/pkg/router" "github.com/obot-platform/obot/apiclient/types" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" "github.com/obot-platform/obot/pkg/system" "sigs.k8s.io/controller-runtime/pkg/client" ) diff --git a/pkg/render/workflow.go b/pkg/render/workflow.go index 0bae8871b..3106e1fe0 100644 --- a/pkg/render/workflow.go +++ b/pkg/render/workflow.go @@ -8,7 +8,7 @@ import ( "github.com/obot-platform/nah/pkg/router" "github.com/obot-platform/obot/apiclient/types" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" "github.com/obot-platform/obot/pkg/system" apierror "k8s.io/apimachinery/pkg/api/errors" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" diff --git a/pkg/services/config.go b/pkg/services/config.go index 61239873c..a771a7c55 100644 --- a/pkg/services/config.go +++ b/pkg/services/config.go @@ -15,6 +15,7 @@ import ( "github.com/gptscript-ai/gptscript/pkg/loader" "github.com/gptscript-ai/gptscript/pkg/sdkserver" baaah "github.com/obot-platform/nah" + "github.com/obot-platform/nah/pkg/apply" "github.com/obot-platform/nah/pkg/leader" "github.com/obot-platform/nah/pkg/router" "github.com/obot-platform/obot/pkg/aihelper" @@ -201,16 +202,18 @@ func New(ctx context.Context, config Config) (*Services, error) { return nil, err } - r, err := baaah.NewRouter("otto-controller", &baaah.Options{ + r, err := baaah.NewRouter("obot-controller", &baaah.Options{ DefaultRESTConfig: restConfig, Scheme: scheme.Scheme, - ElectionConfig: leader.NewDefaultElectionConfig("", "otto-controller", restConfig), + ElectionConfig: leader.NewDefaultElectionConfig("", "obot-controller", restConfig), HealthzPort: -1, }) if err != nil { return nil, err } + apply.AddValidOwnerChange("otto-controller", "obot-controller") + // For now, always auto-migrate. gatewayDB, err := db.New(dbAccess.DB, dbAccess.SQLDB, true) if err != nil { @@ -323,7 +326,7 @@ func configureDevMode(config Config) (int, Config) { func startDevMode(ctx context.Context, storageClient storage.Client) { _ = storageClient.Delete(ctx, &coordinationv1.Lease{ ObjectMeta: metav1.ObjectMeta{ - Name: "otto-controller", + Name: "obot-controller", Namespace: "kube-system", }, }) diff --git a/pkg/smtp/smtp.go b/pkg/smtp/smtp.go index 9c2833d5a..42c856df5 100644 --- a/pkg/smtp/smtp.go +++ b/pkg/smtp/smtp.go @@ -18,7 +18,7 @@ import ( "github.com/mhale/smtpd" "github.com/obot-platform/obot/logger" "github.com/obot-platform/obot/pkg/alias" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" "github.com/obot-platform/obot/pkg/system" apierror "k8s.io/apimachinery/pkg/api/errors" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" diff --git a/pkg/storage/apis/obot.obot.ai/group.go b/pkg/storage/apis/obot.obot.ai/group.go new file mode 100644 index 000000000..69dadecec --- /dev/null +++ b/pkg/storage/apis/obot.obot.ai/group.go @@ -0,0 +1,3 @@ +package obotobotplatformai + +var Group = "obot.obot.ai" diff --git a/pkg/storage/apis/otto.otto8.ai/v1/agent.go b/pkg/storage/apis/obot.obot.ai/v1/agent.go similarity index 100% rename from pkg/storage/apis/otto.otto8.ai/v1/agent.go rename to pkg/storage/apis/obot.obot.ai/v1/agent.go diff --git a/pkg/storage/apis/otto.otto8.ai/v1/alias.go b/pkg/storage/apis/obot.obot.ai/v1/alias.go similarity index 100% rename from pkg/storage/apis/otto.otto8.ai/v1/alias.go rename to pkg/storage/apis/obot.obot.ai/v1/alias.go diff --git a/pkg/storage/apis/otto.otto8.ai/v1/cronjob.go b/pkg/storage/apis/obot.obot.ai/v1/cronjob.go similarity index 100% rename from pkg/storage/apis/otto.otto8.ai/v1/cronjob.go rename to pkg/storage/apis/obot.obot.ai/v1/cronjob.go diff --git a/pkg/storage/apis/otto.otto8.ai/v1/defaultmodelalias.go b/pkg/storage/apis/obot.obot.ai/v1/defaultmodelalias.go similarity index 100% rename from pkg/storage/apis/otto.otto8.ai/v1/defaultmodelalias.go rename to pkg/storage/apis/obot.obot.ai/v1/defaultmodelalias.go diff --git a/pkg/storage/apis/otto.otto8.ai/v1/doc.go b/pkg/storage/apis/obot.obot.ai/v1/doc.go similarity index 100% rename from pkg/storage/apis/otto.otto8.ai/v1/doc.go rename to pkg/storage/apis/obot.obot.ai/v1/doc.go diff --git a/pkg/storage/apis/otto.otto8.ai/v1/emailaddress.go b/pkg/storage/apis/obot.obot.ai/v1/emailaddress.go similarity index 100% rename from pkg/storage/apis/otto.otto8.ai/v1/emailaddress.go rename to pkg/storage/apis/obot.obot.ai/v1/emailaddress.go diff --git a/pkg/storage/apis/otto.otto8.ai/v1/file.go b/pkg/storage/apis/obot.obot.ai/v1/file.go similarity index 100% rename from pkg/storage/apis/otto.otto8.ai/v1/file.go rename to pkg/storage/apis/obot.obot.ai/v1/file.go diff --git a/pkg/storage/apis/otto.otto8.ai/v1/generationed.go b/pkg/storage/apis/obot.obot.ai/v1/generationed.go similarity index 100% rename from pkg/storage/apis/otto.otto8.ai/v1/generationed.go rename to pkg/storage/apis/obot.obot.ai/v1/generationed.go diff --git a/pkg/storage/apis/otto.otto8.ai/v1/knowledgeset.go b/pkg/storage/apis/obot.obot.ai/v1/knowledgeset.go similarity index 100% rename from pkg/storage/apis/otto.otto8.ai/v1/knowledgeset.go rename to pkg/storage/apis/obot.obot.ai/v1/knowledgeset.go diff --git a/pkg/storage/apis/otto.otto8.ai/v1/knowledgesource.go b/pkg/storage/apis/obot.obot.ai/v1/knowledgesource.go similarity index 100% rename from pkg/storage/apis/otto.otto8.ai/v1/knowledgesource.go rename to pkg/storage/apis/obot.obot.ai/v1/knowledgesource.go diff --git a/pkg/storage/apis/otto.otto8.ai/v1/knowledgesummary.go b/pkg/storage/apis/obot.obot.ai/v1/knowledgesummary.go similarity index 100% rename from pkg/storage/apis/otto.otto8.ai/v1/knowledgesummary.go rename to pkg/storage/apis/obot.obot.ai/v1/knowledgesummary.go diff --git a/pkg/storage/apis/otto.otto8.ai/v1/model.go b/pkg/storage/apis/obot.obot.ai/v1/model.go similarity index 100% rename from pkg/storage/apis/otto.otto8.ai/v1/model.go rename to pkg/storage/apis/obot.obot.ai/v1/model.go diff --git a/pkg/storage/apis/otto.otto8.ai/v1/oauthapp.go b/pkg/storage/apis/obot.obot.ai/v1/oauthapp.go similarity index 100% rename from pkg/storage/apis/otto.otto8.ai/v1/oauthapp.go rename to pkg/storage/apis/obot.obot.ai/v1/oauthapp.go diff --git a/pkg/storage/apis/otto.otto8.ai/v1/prompts.go b/pkg/storage/apis/obot.obot.ai/v1/prompts.go similarity index 100% rename from pkg/storage/apis/otto.otto8.ai/v1/prompts.go rename to pkg/storage/apis/obot.obot.ai/v1/prompts.go diff --git a/pkg/storage/apis/otto.otto8.ai/v1/refs.go b/pkg/storage/apis/obot.obot.ai/v1/refs.go similarity index 100% rename from pkg/storage/apis/otto.otto8.ai/v1/refs.go rename to pkg/storage/apis/obot.obot.ai/v1/refs.go diff --git a/pkg/storage/apis/otto.otto8.ai/v1/run.go b/pkg/storage/apis/obot.obot.ai/v1/run.go similarity index 86% rename from pkg/storage/apis/otto.otto8.ai/v1/run.go rename to pkg/storage/apis/obot.obot.ai/v1/run.go index c9c1c2f25..46fb340cb 100644 --- a/pkg/storage/apis/otto.otto8.ai/v1/run.go +++ b/pkg/storage/apis/obot.obot.ai/v1/run.go @@ -7,16 +7,16 @@ import ( ) const ( - RunFinalizer = "otto.otto8.ai/run" - KnowledgeFileFinalizer = "otto.otto8.ai/knowledge-file" - WorkspaceFinalizer = "otto.otto8.ai/workspace" - KnowledgeSetFinalizer = "otto.otto8.ai/knowledge-set" - KnowledgeSourceFinalizer = "otto.otto8.ai/knowledge-source" - ToolReferenceFinalizer = "otto.otto8.ai/tool-reference" - - ModelProviderSyncAnnotation = "otto8.ai/model-provider-sync" - WorkflowSyncAnnotation = "otto8.ai/workflow-sync" - AgentSyncAnnotation = "otto8.ai/agent-sync" + RunFinalizer = "obot.obot.ai/run" + KnowledgeFileFinalizer = "obot.obot.ai/knowledge-file" + WorkspaceFinalizer = "obot.obot.ai/workspace" + KnowledgeSetFinalizer = "obot.obot.ai/knowledge-set" + KnowledgeSourceFinalizer = "obot.obot.ai/knowledge-source" + ToolReferenceFinalizer = "obot.obot.ai/tool-reference" + + ModelProviderSyncAnnotation = "obot.ai/model-provider-sync" + WorkflowSyncAnnotation = "obot.ai/workflow-sync" + AgentSyncAnnotation = "obot.ai/agent-sync" ) // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object diff --git a/pkg/storage/apis/otto.otto8.ai/v1/runstate.go b/pkg/storage/apis/obot.obot.ai/v1/runstate.go similarity index 100% rename from pkg/storage/apis/otto.otto8.ai/v1/runstate.go rename to pkg/storage/apis/obot.obot.ai/v1/runstate.go diff --git a/pkg/storage/apis/otto.otto8.ai/v1/scheme.go b/pkg/storage/apis/obot.obot.ai/v1/scheme.go similarity index 93% rename from pkg/storage/apis/otto.otto8.ai/v1/scheme.go rename to pkg/storage/apis/obot.obot.ai/v1/scheme.go index 542c5885c..8df82cbe1 100644 --- a/pkg/storage/apis/otto.otto8.ai/v1/scheme.go +++ b/pkg/storage/apis/obot.obot.ai/v1/scheme.go @@ -2,7 +2,7 @@ package v1 import ( "github.com/obot-platform/nah/pkg/fields" - otto8_gptscript_ai "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai" + obot_platform_ai "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/runtime" "k8s.io/apimachinery/pkg/runtime/schema" @@ -11,7 +11,7 @@ import ( const Version = "v1" var SchemeGroupVersion = schema.GroupVersion{ - Group: otto8_gptscript_ai.Group, + Group: obot_platform_ai.Group, Version: Version, } diff --git a/pkg/storage/apis/otto.otto8.ai/v1/template.go b/pkg/storage/apis/obot.obot.ai/v1/template.go similarity index 100% rename from pkg/storage/apis/otto.otto8.ai/v1/template.go rename to pkg/storage/apis/obot.obot.ai/v1/template.go diff --git a/pkg/storage/apis/otto.otto8.ai/v1/thread.go b/pkg/storage/apis/obot.obot.ai/v1/thread.go similarity index 100% rename from pkg/storage/apis/otto.otto8.ai/v1/thread.go rename to pkg/storage/apis/obot.obot.ai/v1/thread.go diff --git a/pkg/storage/apis/otto.otto8.ai/v1/time.go b/pkg/storage/apis/obot.obot.ai/v1/time.go similarity index 100% rename from pkg/storage/apis/otto.otto8.ai/v1/time.go rename to pkg/storage/apis/obot.obot.ai/v1/time.go diff --git a/pkg/storage/apis/otto.otto8.ai/v1/tool.go b/pkg/storage/apis/obot.obot.ai/v1/tool.go similarity index 100% rename from pkg/storage/apis/otto.otto8.ai/v1/tool.go rename to pkg/storage/apis/obot.obot.ai/v1/tool.go diff --git a/pkg/storage/apis/otto.otto8.ai/v1/toolreference.go b/pkg/storage/apis/obot.obot.ai/v1/toolreference.go similarity index 100% rename from pkg/storage/apis/otto.otto8.ai/v1/toolreference.go rename to pkg/storage/apis/obot.obot.ai/v1/toolreference.go diff --git a/pkg/storage/apis/otto.otto8.ai/v1/webhook.go b/pkg/storage/apis/obot.obot.ai/v1/webhook.go similarity index 100% rename from pkg/storage/apis/otto.otto8.ai/v1/webhook.go rename to pkg/storage/apis/obot.obot.ai/v1/webhook.go diff --git a/pkg/storage/apis/otto.otto8.ai/v1/workflow.go b/pkg/storage/apis/obot.obot.ai/v1/workflow.go similarity index 100% rename from pkg/storage/apis/otto.otto8.ai/v1/workflow.go rename to pkg/storage/apis/obot.obot.ai/v1/workflow.go diff --git a/pkg/storage/apis/otto.otto8.ai/v1/workflowexecution.go b/pkg/storage/apis/obot.obot.ai/v1/workflowexecution.go similarity index 100% rename from pkg/storage/apis/otto.otto8.ai/v1/workflowexecution.go rename to pkg/storage/apis/obot.obot.ai/v1/workflowexecution.go diff --git a/pkg/storage/apis/otto.otto8.ai/v1/workflowstep.go b/pkg/storage/apis/obot.obot.ai/v1/workflowstep.go similarity index 100% rename from pkg/storage/apis/otto.otto8.ai/v1/workflowstep.go rename to pkg/storage/apis/obot.obot.ai/v1/workflowstep.go diff --git a/pkg/storage/apis/otto.otto8.ai/v1/workspace.go b/pkg/storage/apis/obot.obot.ai/v1/workspace.go similarity index 100% rename from pkg/storage/apis/otto.otto8.ai/v1/workspace.go rename to pkg/storage/apis/obot.obot.ai/v1/workspace.go diff --git a/pkg/storage/apis/otto.otto8.ai/v1/zz_generated.deepcopy.go b/pkg/storage/apis/obot.obot.ai/v1/zz_generated.deepcopy.go similarity index 100% rename from pkg/storage/apis/otto.otto8.ai/v1/zz_generated.deepcopy.go rename to pkg/storage/apis/obot.obot.ai/v1/zz_generated.deepcopy.go diff --git a/pkg/storage/apis/otto.otto8.ai/group.go b/pkg/storage/apis/otto.otto8.ai/group.go deleted file mode 100644 index 0fde4b86e..000000000 --- a/pkg/storage/apis/otto.otto8.ai/group.go +++ /dev/null @@ -1,3 +0,0 @@ -package ottootto8ai - -var Group = "otto.otto8.ai" diff --git a/pkg/storage/openapi/generated/openapi_generated.go b/pkg/storage/openapi/generated/openapi_generated.go index 00f798ba2..75bf5e5d1 100644 --- a/pkg/storage/openapi/generated/openapi_generated.go +++ b/pkg/storage/openapi/generated/openapi_generated.go @@ -16,247 +16,247 @@ import ( func GetOpenAPIDefinitions(ref common.ReferenceCallback) map[string]common.OpenAPIDefinition { return map[string]common.OpenAPIDefinition{ - "github.com/obot-platform/obot/apiclient/types.Agent": schema_obot_platform_obot_apiclient_types_Agent(ref), - "github.com/obot-platform/obot/apiclient/types.AgentIcons": schema_obot_platform_obot_apiclient_types_AgentIcons(ref), - "github.com/obot-platform/obot/apiclient/types.AgentList": schema_obot_platform_obot_apiclient_types_AgentList(ref), - "github.com/obot-platform/obot/apiclient/types.AgentManifest": schema_obot_platform_obot_apiclient_types_AgentManifest(ref), - "github.com/obot-platform/obot/apiclient/types.Assistant": schema_obot_platform_obot_apiclient_types_Assistant(ref), - "github.com/obot-platform/obot/apiclient/types.AssistantList": schema_obot_platform_obot_apiclient_types_AssistantList(ref), - "github.com/obot-platform/obot/apiclient/types.AssistantTool": schema_obot_platform_obot_apiclient_types_AssistantTool(ref), - "github.com/obot-platform/obot/apiclient/types.AssistantToolList": schema_obot_platform_obot_apiclient_types_AssistantToolList(ref), - "github.com/obot-platform/obot/apiclient/types.Credential": schema_obot_platform_obot_apiclient_types_Credential(ref), - "github.com/obot-platform/obot/apiclient/types.CredentialList": schema_obot_platform_obot_apiclient_types_CredentialList(ref), - "github.com/obot-platform/obot/apiclient/types.CronJob": schema_obot_platform_obot_apiclient_types_CronJob(ref), - "github.com/obot-platform/obot/apiclient/types.CronJobList": schema_obot_platform_obot_apiclient_types_CronJobList(ref), - "github.com/obot-platform/obot/apiclient/types.CronJobManifest": schema_obot_platform_obot_apiclient_types_CronJobManifest(ref), - "github.com/obot-platform/obot/apiclient/types.DefaultModelAlias": schema_obot_platform_obot_apiclient_types_DefaultModelAlias(ref), - "github.com/obot-platform/obot/apiclient/types.DefaultModelAliasList": schema_obot_platform_obot_apiclient_types_DefaultModelAliasList(ref), - "github.com/obot-platform/obot/apiclient/types.DefaultModelAliasManifest": schema_obot_platform_obot_apiclient_types_DefaultModelAliasManifest(ref), - "github.com/obot-platform/obot/apiclient/types.EmailReceiver": schema_obot_platform_obot_apiclient_types_EmailReceiver(ref), - "github.com/obot-platform/obot/apiclient/types.EmailReceiverList": schema_obot_platform_obot_apiclient_types_EmailReceiverList(ref), - "github.com/obot-platform/obot/apiclient/types.EmailReceiverManifest": schema_obot_platform_obot_apiclient_types_EmailReceiverManifest(ref), - "github.com/obot-platform/obot/apiclient/types.EnvVar": schema_obot_platform_obot_apiclient_types_EnvVar(ref), - "github.com/obot-platform/obot/apiclient/types.ErrHTTP": schema_obot_platform_obot_apiclient_types_ErrHTTP(ref), - "github.com/obot-platform/obot/apiclient/types.File": schema_obot_platform_obot_apiclient_types_File(ref), - "github.com/obot-platform/obot/apiclient/types.FileList": schema_obot_platform_obot_apiclient_types_FileList(ref), - "github.com/obot-platform/obot/apiclient/types.If": schema_obot_platform_obot_apiclient_types_If(ref), - "github.com/obot-platform/obot/apiclient/types.Item": schema_obot_platform_obot_apiclient_types_Item(ref), - "github.com/obot-platform/obot/apiclient/types.KnowledgeFile": schema_obot_platform_obot_apiclient_types_KnowledgeFile(ref), - "github.com/obot-platform/obot/apiclient/types.KnowledgeFileList": schema_obot_platform_obot_apiclient_types_KnowledgeFileList(ref), - "github.com/obot-platform/obot/apiclient/types.KnowledgeSource": schema_obot_platform_obot_apiclient_types_KnowledgeSource(ref), - "github.com/obot-platform/obot/apiclient/types.KnowledgeSourceInput": schema_obot_platform_obot_apiclient_types_KnowledgeSourceInput(ref), - "github.com/obot-platform/obot/apiclient/types.KnowledgeSourceList": schema_obot_platform_obot_apiclient_types_KnowledgeSourceList(ref), - "github.com/obot-platform/obot/apiclient/types.KnowledgeSourceManifest": schema_obot_platform_obot_apiclient_types_KnowledgeSourceManifest(ref), - "github.com/obot-platform/obot/apiclient/types.Metadata": schema_obot_platform_obot_apiclient_types_Metadata(ref), - "github.com/obot-platform/obot/apiclient/types.Model": schema_obot_platform_obot_apiclient_types_Model(ref), - "github.com/obot-platform/obot/apiclient/types.ModelList": schema_obot_platform_obot_apiclient_types_ModelList(ref), - "github.com/obot-platform/obot/apiclient/types.ModelManifest": schema_obot_platform_obot_apiclient_types_ModelManifest(ref), - "github.com/obot-platform/obot/apiclient/types.ModelProvider": schema_obot_platform_obot_apiclient_types_ModelProvider(ref), - "github.com/obot-platform/obot/apiclient/types.ModelProviderList": schema_obot_platform_obot_apiclient_types_ModelProviderList(ref), - "github.com/obot-platform/obot/apiclient/types.ModelProviderManifest": schema_obot_platform_obot_apiclient_types_ModelProviderManifest(ref), - "github.com/obot-platform/obot/apiclient/types.ModelProviderStatus": schema_obot_platform_obot_apiclient_types_ModelProviderStatus(ref), - "github.com/obot-platform/obot/apiclient/types.ModelStatus": schema_obot_platform_obot_apiclient_types_ModelStatus(ref), - "github.com/obot-platform/obot/apiclient/types.NotionConfig": schema_obot_platform_obot_apiclient_types_NotionConfig(ref), - "github.com/obot-platform/obot/apiclient/types.OAuthApp": schema_obot_platform_obot_apiclient_types_OAuthApp(ref), - "github.com/obot-platform/obot/apiclient/types.OAuthAppList": schema_obot_platform_obot_apiclient_types_OAuthAppList(ref), - "github.com/obot-platform/obot/apiclient/types.OAuthAppLoginAuthStatus": schema_obot_platform_obot_apiclient_types_OAuthAppLoginAuthStatus(ref), - "github.com/obot-platform/obot/apiclient/types.OAuthAppManifest": schema_obot_platform_obot_apiclient_types_OAuthAppManifest(ref), - "github.com/obot-platform/obot/apiclient/types.OneDriveConfig": schema_obot_platform_obot_apiclient_types_OneDriveConfig(ref), - "github.com/obot-platform/obot/apiclient/types.Progress": schema_obot_platform_obot_apiclient_types_Progress(ref), - "github.com/obot-platform/obot/apiclient/types.Prompt": schema_obot_platform_obot_apiclient_types_Prompt(ref), - "github.com/obot-platform/obot/apiclient/types.PromptResponse": schema_obot_platform_obot_apiclient_types_PromptResponse(ref), - "github.com/obot-platform/obot/apiclient/types.Run": schema_obot_platform_obot_apiclient_types_Run(ref), - "github.com/obot-platform/obot/apiclient/types.RunList": schema_obot_platform_obot_apiclient_types_RunList(ref), - "github.com/obot-platform/obot/apiclient/types.Schedule": schema_obot_platform_obot_apiclient_types_Schedule(ref), - "github.com/obot-platform/obot/apiclient/types.Step": schema_obot_platform_obot_apiclient_types_Step(ref), - "github.com/obot-platform/obot/apiclient/types.StepTemplateInvoke": schema_obot_platform_obot_apiclient_types_StepTemplateInvoke(ref), - "github.com/obot-platform/obot/apiclient/types.SubFlow": schema_obot_platform_obot_apiclient_types_SubFlow(ref), - "github.com/obot-platform/obot/apiclient/types.Table": schema_obot_platform_obot_apiclient_types_Table(ref), - "github.com/obot-platform/obot/apiclient/types.TableList": schema_obot_platform_obot_apiclient_types_TableList(ref), - "github.com/obot-platform/obot/apiclient/types.Task": schema_obot_platform_obot_apiclient_types_Task(ref), - "github.com/obot-platform/obot/apiclient/types.TaskEmail": schema_obot_platform_obot_apiclient_types_TaskEmail(ref), - "github.com/obot-platform/obot/apiclient/types.TaskIf": schema_obot_platform_obot_apiclient_types_TaskIf(ref), - "github.com/obot-platform/obot/apiclient/types.TaskList": schema_obot_platform_obot_apiclient_types_TaskList(ref), - "github.com/obot-platform/obot/apiclient/types.TaskManifest": schema_obot_platform_obot_apiclient_types_TaskManifest(ref), - "github.com/obot-platform/obot/apiclient/types.TaskOnDemand": schema_obot_platform_obot_apiclient_types_TaskOnDemand(ref), - "github.com/obot-platform/obot/apiclient/types.TaskRun": schema_obot_platform_obot_apiclient_types_TaskRun(ref), - "github.com/obot-platform/obot/apiclient/types.TaskRunList": schema_obot_platform_obot_apiclient_types_TaskRunList(ref), - "github.com/obot-platform/obot/apiclient/types.TaskStep": schema_obot_platform_obot_apiclient_types_TaskStep(ref), - "github.com/obot-platform/obot/apiclient/types.TaskWebhook": schema_obot_platform_obot_apiclient_types_TaskWebhook(ref), - "github.com/obot-platform/obot/apiclient/types.Template": schema_obot_platform_obot_apiclient_types_Template(ref), - "github.com/obot-platform/obot/apiclient/types.Thread": schema_obot_platform_obot_apiclient_types_Thread(ref), - "github.com/obot-platform/obot/apiclient/types.ThreadList": schema_obot_platform_obot_apiclient_types_ThreadList(ref), - "github.com/obot-platform/obot/apiclient/types.ThreadManifest": schema_obot_platform_obot_apiclient_types_ThreadManifest(ref), - "github.com/obot-platform/obot/apiclient/types.Time": schema_obot_platform_obot_apiclient_types_Time(ref), - "github.com/obot-platform/obot/apiclient/types.ToolCall": schema_obot_platform_obot_apiclient_types_ToolCall(ref), - "github.com/obot-platform/obot/apiclient/types.ToolInfo": schema_obot_platform_obot_apiclient_types_ToolInfo(ref), - "github.com/obot-platform/obot/apiclient/types.ToolInput": schema_obot_platform_obot_apiclient_types_ToolInput(ref), - "github.com/obot-platform/obot/apiclient/types.ToolManifest": schema_obot_platform_obot_apiclient_types_ToolManifest(ref), - "github.com/obot-platform/obot/apiclient/types.ToolReference": schema_obot_platform_obot_apiclient_types_ToolReference(ref), - "github.com/obot-platform/obot/apiclient/types.ToolReferenceList": schema_obot_platform_obot_apiclient_types_ToolReferenceList(ref), - "github.com/obot-platform/obot/apiclient/types.ToolReferenceManifest": schema_obot_platform_obot_apiclient_types_ToolReferenceManifest(ref), - "github.com/obot-platform/obot/apiclient/types.User": schema_obot_platform_obot_apiclient_types_User(ref), - "github.com/obot-platform/obot/apiclient/types.UserList": schema_obot_platform_obot_apiclient_types_UserList(ref), - "github.com/obot-platform/obot/apiclient/types.Webhook": schema_obot_platform_obot_apiclient_types_Webhook(ref), - "github.com/obot-platform/obot/apiclient/types.WebhookList": schema_obot_platform_obot_apiclient_types_WebhookList(ref), - "github.com/obot-platform/obot/apiclient/types.WebhookManifest": schema_obot_platform_obot_apiclient_types_WebhookManifest(ref), - "github.com/obot-platform/obot/apiclient/types.WebsiteCrawlingConfig": schema_obot_platform_obot_apiclient_types_WebsiteCrawlingConfig(ref), - "github.com/obot-platform/obot/apiclient/types.While": schema_obot_platform_obot_apiclient_types_While(ref), - "github.com/obot-platform/obot/apiclient/types.Workflow": schema_obot_platform_obot_apiclient_types_Workflow(ref), - "github.com/obot-platform/obot/apiclient/types.WorkflowCall": schema_obot_platform_obot_apiclient_types_WorkflowCall(ref), - "github.com/obot-platform/obot/apiclient/types.WorkflowExecution": schema_obot_platform_obot_apiclient_types_WorkflowExecution(ref), - "github.com/obot-platform/obot/apiclient/types.WorkflowExecutionList": schema_obot_platform_obot_apiclient_types_WorkflowExecutionList(ref), - "github.com/obot-platform/obot/apiclient/types.WorkflowList": schema_obot_platform_obot_apiclient_types_WorkflowList(ref), - "github.com/obot-platform/obot/apiclient/types.WorkflowManifest": schema_obot_platform_obot_apiclient_types_WorkflowManifest(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.Agent": schema_storage_apis_ottootto8ai_v1_Agent(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.AgentList": schema_storage_apis_ottootto8ai_v1_AgentList(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.AgentSpec": schema_storage_apis_ottootto8ai_v1_AgentSpec(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.AgentStatus": schema_storage_apis_ottootto8ai_v1_AgentStatus(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.Alias": schema_storage_apis_ottootto8ai_v1_Alias(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.AliasList": schema_storage_apis_ottootto8ai_v1_AliasList(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.AliasSpec": schema_storage_apis_ottootto8ai_v1_AliasSpec(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.CronJob": schema_storage_apis_ottootto8ai_v1_CronJob(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.CronJobList": schema_storage_apis_ottootto8ai_v1_CronJobList(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.CronJobSpec": schema_storage_apis_ottootto8ai_v1_CronJobSpec(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.CronJobStatus": schema_storage_apis_ottootto8ai_v1_CronJobStatus(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.DefaultModelAlias": schema_storage_apis_ottootto8ai_v1_DefaultModelAlias(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.DefaultModelAliasList": schema_storage_apis_ottootto8ai_v1_DefaultModelAliasList(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.DefaultModelAliasSpec": schema_storage_apis_ottootto8ai_v1_DefaultModelAliasSpec(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.DefaultModelAliasStatus": schema_storage_apis_ottootto8ai_v1_DefaultModelAliasStatus(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.EmailReceiver": schema_storage_apis_ottootto8ai_v1_EmailReceiver(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.EmailReceiverList": schema_storage_apis_ottootto8ai_v1_EmailReceiverList(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.EmailReceiverSpec": schema_storage_apis_ottootto8ai_v1_EmailReceiverSpec(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.EmailReceiverStatus": schema_storage_apis_ottootto8ai_v1_EmailReceiverStatus(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.EmptyStatus": schema_storage_apis_ottootto8ai_v1_EmptyStatus(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeFile": schema_storage_apis_ottootto8ai_v1_KnowledgeFile(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeFileList": schema_storage_apis_ottootto8ai_v1_KnowledgeFileList(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeFileSpec": schema_storage_apis_ottootto8ai_v1_KnowledgeFileSpec(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeFileStatus": schema_storage_apis_ottootto8ai_v1_KnowledgeFileStatus(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSet": schema_storage_apis_ottootto8ai_v1_KnowledgeSet(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSetList": schema_storage_apis_ottootto8ai_v1_KnowledgeSetList(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSetManifest": schema_storage_apis_ottootto8ai_v1_KnowledgeSetManifest(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSetSpec": schema_storage_apis_ottootto8ai_v1_KnowledgeSetSpec(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSetStatus": schema_storage_apis_ottootto8ai_v1_KnowledgeSetStatus(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSource": schema_storage_apis_ottootto8ai_v1_KnowledgeSource(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSourceList": schema_storage_apis_ottootto8ai_v1_KnowledgeSourceList(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSourceSpec": schema_storage_apis_ottootto8ai_v1_KnowledgeSourceSpec(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSourceStatus": schema_storage_apis_ottootto8ai_v1_KnowledgeSourceStatus(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSummary": schema_storage_apis_ottootto8ai_v1_KnowledgeSummary(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSummaryList": schema_storage_apis_ottootto8ai_v1_KnowledgeSummaryList(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSummarySpec": schema_storage_apis_ottootto8ai_v1_KnowledgeSummarySpec(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSummaryStatus": schema_storage_apis_ottootto8ai_v1_KnowledgeSummaryStatus(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.Model": schema_storage_apis_ottootto8ai_v1_Model(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.ModelList": schema_storage_apis_ottootto8ai_v1_ModelList(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.ModelSpec": schema_storage_apis_ottootto8ai_v1_ModelSpec(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.ModelStatus": schema_storage_apis_ottootto8ai_v1_ModelStatus(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.OAuthApp": schema_storage_apis_ottootto8ai_v1_OAuthApp(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.OAuthAppList": schema_storage_apis_ottootto8ai_v1_OAuthAppList(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.OAuthAppLogin": schema_storage_apis_ottootto8ai_v1_OAuthAppLogin(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.OAuthAppLoginList": schema_storage_apis_ottootto8ai_v1_OAuthAppLoginList(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.OAuthAppLoginSpec": schema_storage_apis_ottootto8ai_v1_OAuthAppLoginSpec(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.OAuthAppLoginStatus": schema_storage_apis_ottootto8ai_v1_OAuthAppLoginStatus(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.OAuthAppSpec": schema_storage_apis_ottootto8ai_v1_OAuthAppSpec(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.Ref": schema_storage_apis_ottootto8ai_v1_Ref(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.Run": schema_storage_apis_ottootto8ai_v1_Run(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.RunList": schema_storage_apis_ottootto8ai_v1_RunList(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.RunSpec": schema_storage_apis_ottootto8ai_v1_RunSpec(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.RunState": schema_storage_apis_ottootto8ai_v1_RunState(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.RunStateList": schema_storage_apis_ottootto8ai_v1_RunStateList(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.RunStateSpec": schema_storage_apis_ottootto8ai_v1_RunStateSpec(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.RunStatus": schema_storage_apis_ottootto8ai_v1_RunStatus(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.SubCall": schema_storage_apis_ottootto8ai_v1_SubCall(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.Thread": schema_storage_apis_ottootto8ai_v1_Thread(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.ThreadList": schema_storage_apis_ottootto8ai_v1_ThreadList(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.ThreadSpec": schema_storage_apis_ottootto8ai_v1_ThreadSpec(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.ThreadStatus": schema_storage_apis_ottootto8ai_v1_ThreadStatus(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.Tool": schema_storage_apis_ottootto8ai_v1_Tool(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.ToolList": schema_storage_apis_ottootto8ai_v1_ToolList(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.ToolReference": schema_storage_apis_ottootto8ai_v1_ToolReference(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.ToolReferenceList": schema_storage_apis_ottootto8ai_v1_ToolReferenceList(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.ToolReferenceSpec": schema_storage_apis_ottootto8ai_v1_ToolReferenceSpec(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.ToolReferenceStatus": schema_storage_apis_ottootto8ai_v1_ToolReferenceStatus(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.ToolShortDescription": schema_storage_apis_ottootto8ai_v1_ToolShortDescription(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.ToolSpec": schema_storage_apis_ottootto8ai_v1_ToolSpec(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.ToolStatus": schema_storage_apis_ottootto8ai_v1_ToolStatus(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.Webhook": schema_storage_apis_ottootto8ai_v1_Webhook(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WebhookList": schema_storage_apis_ottootto8ai_v1_WebhookList(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WebhookSpec": schema_storage_apis_ottootto8ai_v1_WebhookSpec(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WebhookStatus": schema_storage_apis_ottootto8ai_v1_WebhookStatus(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.Workflow": schema_storage_apis_ottootto8ai_v1_Workflow(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WorkflowExecution": schema_storage_apis_ottootto8ai_v1_WorkflowExecution(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WorkflowExecutionList": schema_storage_apis_ottootto8ai_v1_WorkflowExecutionList(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WorkflowExecutionSpec": schema_storage_apis_ottootto8ai_v1_WorkflowExecutionSpec(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WorkflowExecutionStatus": schema_storage_apis_ottootto8ai_v1_WorkflowExecutionStatus(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WorkflowList": schema_storage_apis_ottootto8ai_v1_WorkflowList(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WorkflowSpec": schema_storage_apis_ottootto8ai_v1_WorkflowSpec(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WorkflowStatus": schema_storage_apis_ottootto8ai_v1_WorkflowStatus(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WorkflowStep": schema_storage_apis_ottootto8ai_v1_WorkflowStep(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WorkflowStepList": schema_storage_apis_ottootto8ai_v1_WorkflowStepList(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WorkflowStepSpec": schema_storage_apis_ottootto8ai_v1_WorkflowStepSpec(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WorkflowStepStatus": schema_storage_apis_ottootto8ai_v1_WorkflowStepStatus(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.Workspace": schema_storage_apis_ottootto8ai_v1_Workspace(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WorkspaceList": schema_storage_apis_ottootto8ai_v1_WorkspaceList(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WorkspaceSpec": schema_storage_apis_ottootto8ai_v1_WorkspaceSpec(ref), - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WorkspaceStatus": schema_storage_apis_ottootto8ai_v1_WorkspaceStatus(ref), - "k8s.io/api/coordination/v1.Lease": schema_k8sio_api_coordination_v1_Lease(ref), - "k8s.io/api/coordination/v1.LeaseList": schema_k8sio_api_coordination_v1_LeaseList(ref), - "k8s.io/api/coordination/v1.LeaseSpec": schema_k8sio_api_coordination_v1_LeaseSpec(ref), - "k8s.io/apimachinery/pkg/api/resource.Quantity": schema_apimachinery_pkg_api_resource_Quantity(ref), - "k8s.io/apimachinery/pkg/api/resource.int64Amount": schema_apimachinery_pkg_api_resource_int64Amount(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.APIGroup": schema_pkg_apis_meta_v1_APIGroup(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.APIGroupList": schema_pkg_apis_meta_v1_APIGroupList(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.APIResource": schema_pkg_apis_meta_v1_APIResource(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.APIResourceList": schema_pkg_apis_meta_v1_APIResourceList(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.APIVersions": schema_pkg_apis_meta_v1_APIVersions(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.ApplyOptions": schema_pkg_apis_meta_v1_ApplyOptions(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.Condition": schema_pkg_apis_meta_v1_Condition(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.CreateOptions": schema_pkg_apis_meta_v1_CreateOptions(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.DeleteOptions": schema_pkg_apis_meta_v1_DeleteOptions(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.Duration": schema_pkg_apis_meta_v1_Duration(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.FieldSelectorRequirement": schema_pkg_apis_meta_v1_FieldSelectorRequirement(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.FieldsV1": schema_pkg_apis_meta_v1_FieldsV1(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.GetOptions": schema_pkg_apis_meta_v1_GetOptions(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.GroupKind": schema_pkg_apis_meta_v1_GroupKind(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.GroupResource": schema_pkg_apis_meta_v1_GroupResource(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.GroupVersion": schema_pkg_apis_meta_v1_GroupVersion(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.GroupVersionForDiscovery": schema_pkg_apis_meta_v1_GroupVersionForDiscovery(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.GroupVersionKind": schema_pkg_apis_meta_v1_GroupVersionKind(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.GroupVersionResource": schema_pkg_apis_meta_v1_GroupVersionResource(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.InternalEvent": schema_pkg_apis_meta_v1_InternalEvent(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector": schema_pkg_apis_meta_v1_LabelSelector(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelectorRequirement": schema_pkg_apis_meta_v1_LabelSelectorRequirement(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.List": schema_pkg_apis_meta_v1_List(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta": schema_pkg_apis_meta_v1_ListMeta(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.ListOptions": schema_pkg_apis_meta_v1_ListOptions(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.ManagedFieldsEntry": schema_pkg_apis_meta_v1_ManagedFieldsEntry(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.MicroTime": schema_pkg_apis_meta_v1_MicroTime(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta": schema_pkg_apis_meta_v1_ObjectMeta(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.OwnerReference": schema_pkg_apis_meta_v1_OwnerReference(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.PartialObjectMetadata": schema_pkg_apis_meta_v1_PartialObjectMetadata(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.PartialObjectMetadataList": schema_pkg_apis_meta_v1_PartialObjectMetadataList(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.Patch": schema_pkg_apis_meta_v1_Patch(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.PatchOptions": schema_pkg_apis_meta_v1_PatchOptions(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.Preconditions": schema_pkg_apis_meta_v1_Preconditions(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.RootPaths": schema_pkg_apis_meta_v1_RootPaths(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.ServerAddressByClientCIDR": schema_pkg_apis_meta_v1_ServerAddressByClientCIDR(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.Status": schema_pkg_apis_meta_v1_Status(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.StatusCause": schema_pkg_apis_meta_v1_StatusCause(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.StatusDetails": schema_pkg_apis_meta_v1_StatusDetails(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.Table": schema_pkg_apis_meta_v1_Table(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.TableColumnDefinition": schema_pkg_apis_meta_v1_TableColumnDefinition(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.TableOptions": schema_pkg_apis_meta_v1_TableOptions(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.TableRow": schema_pkg_apis_meta_v1_TableRow(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.TableRowCondition": schema_pkg_apis_meta_v1_TableRowCondition(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.Time": schema_pkg_apis_meta_v1_Time(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.Timestamp": schema_pkg_apis_meta_v1_Timestamp(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.TypeMeta": schema_pkg_apis_meta_v1_TypeMeta(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.UpdateOptions": schema_pkg_apis_meta_v1_UpdateOptions(ref), - "k8s.io/apimachinery/pkg/apis/meta/v1.WatchEvent": schema_pkg_apis_meta_v1_WatchEvent(ref), - "k8s.io/apimachinery/pkg/runtime.RawExtension": schema_k8sio_apimachinery_pkg_runtime_RawExtension(ref), - "k8s.io/apimachinery/pkg/runtime.TypeMeta": schema_k8sio_apimachinery_pkg_runtime_TypeMeta(ref), - "k8s.io/apimachinery/pkg/runtime.Unknown": schema_k8sio_apimachinery_pkg_runtime_Unknown(ref), - "k8s.io/apimachinery/pkg/util/intstr.IntOrString": schema_apimachinery_pkg_util_intstr_IntOrString(ref), - "k8s.io/apimachinery/pkg/version.Info": schema_k8sio_apimachinery_pkg_version_Info(ref), + "github.com/obot-platform/obot/apiclient/types.Agent": schema_obot_platform_obot_apiclient_types_Agent(ref), + "github.com/obot-platform/obot/apiclient/types.AgentIcons": schema_obot_platform_obot_apiclient_types_AgentIcons(ref), + "github.com/obot-platform/obot/apiclient/types.AgentList": schema_obot_platform_obot_apiclient_types_AgentList(ref), + "github.com/obot-platform/obot/apiclient/types.AgentManifest": schema_obot_platform_obot_apiclient_types_AgentManifest(ref), + "github.com/obot-platform/obot/apiclient/types.Assistant": schema_obot_platform_obot_apiclient_types_Assistant(ref), + "github.com/obot-platform/obot/apiclient/types.AssistantList": schema_obot_platform_obot_apiclient_types_AssistantList(ref), + "github.com/obot-platform/obot/apiclient/types.AssistantTool": schema_obot_platform_obot_apiclient_types_AssistantTool(ref), + "github.com/obot-platform/obot/apiclient/types.AssistantToolList": schema_obot_platform_obot_apiclient_types_AssistantToolList(ref), + "github.com/obot-platform/obot/apiclient/types.Credential": schema_obot_platform_obot_apiclient_types_Credential(ref), + "github.com/obot-platform/obot/apiclient/types.CredentialList": schema_obot_platform_obot_apiclient_types_CredentialList(ref), + "github.com/obot-platform/obot/apiclient/types.CronJob": schema_obot_platform_obot_apiclient_types_CronJob(ref), + "github.com/obot-platform/obot/apiclient/types.CronJobList": schema_obot_platform_obot_apiclient_types_CronJobList(ref), + "github.com/obot-platform/obot/apiclient/types.CronJobManifest": schema_obot_platform_obot_apiclient_types_CronJobManifest(ref), + "github.com/obot-platform/obot/apiclient/types.DefaultModelAlias": schema_obot_platform_obot_apiclient_types_DefaultModelAlias(ref), + "github.com/obot-platform/obot/apiclient/types.DefaultModelAliasList": schema_obot_platform_obot_apiclient_types_DefaultModelAliasList(ref), + "github.com/obot-platform/obot/apiclient/types.DefaultModelAliasManifest": schema_obot_platform_obot_apiclient_types_DefaultModelAliasManifest(ref), + "github.com/obot-platform/obot/apiclient/types.EmailReceiver": schema_obot_platform_obot_apiclient_types_EmailReceiver(ref), + "github.com/obot-platform/obot/apiclient/types.EmailReceiverList": schema_obot_platform_obot_apiclient_types_EmailReceiverList(ref), + "github.com/obot-platform/obot/apiclient/types.EmailReceiverManifest": schema_obot_platform_obot_apiclient_types_EmailReceiverManifest(ref), + "github.com/obot-platform/obot/apiclient/types.EnvVar": schema_obot_platform_obot_apiclient_types_EnvVar(ref), + "github.com/obot-platform/obot/apiclient/types.ErrHTTP": schema_obot_platform_obot_apiclient_types_ErrHTTP(ref), + "github.com/obot-platform/obot/apiclient/types.File": schema_obot_platform_obot_apiclient_types_File(ref), + "github.com/obot-platform/obot/apiclient/types.FileList": schema_obot_platform_obot_apiclient_types_FileList(ref), + "github.com/obot-platform/obot/apiclient/types.If": schema_obot_platform_obot_apiclient_types_If(ref), + "github.com/obot-platform/obot/apiclient/types.Item": schema_obot_platform_obot_apiclient_types_Item(ref), + "github.com/obot-platform/obot/apiclient/types.KnowledgeFile": schema_obot_platform_obot_apiclient_types_KnowledgeFile(ref), + "github.com/obot-platform/obot/apiclient/types.KnowledgeFileList": schema_obot_platform_obot_apiclient_types_KnowledgeFileList(ref), + "github.com/obot-platform/obot/apiclient/types.KnowledgeSource": schema_obot_platform_obot_apiclient_types_KnowledgeSource(ref), + "github.com/obot-platform/obot/apiclient/types.KnowledgeSourceInput": schema_obot_platform_obot_apiclient_types_KnowledgeSourceInput(ref), + "github.com/obot-platform/obot/apiclient/types.KnowledgeSourceList": schema_obot_platform_obot_apiclient_types_KnowledgeSourceList(ref), + "github.com/obot-platform/obot/apiclient/types.KnowledgeSourceManifest": schema_obot_platform_obot_apiclient_types_KnowledgeSourceManifest(ref), + "github.com/obot-platform/obot/apiclient/types.Metadata": schema_obot_platform_obot_apiclient_types_Metadata(ref), + "github.com/obot-platform/obot/apiclient/types.Model": schema_obot_platform_obot_apiclient_types_Model(ref), + "github.com/obot-platform/obot/apiclient/types.ModelList": schema_obot_platform_obot_apiclient_types_ModelList(ref), + "github.com/obot-platform/obot/apiclient/types.ModelManifest": schema_obot_platform_obot_apiclient_types_ModelManifest(ref), + "github.com/obot-platform/obot/apiclient/types.ModelProvider": schema_obot_platform_obot_apiclient_types_ModelProvider(ref), + "github.com/obot-platform/obot/apiclient/types.ModelProviderList": schema_obot_platform_obot_apiclient_types_ModelProviderList(ref), + "github.com/obot-platform/obot/apiclient/types.ModelProviderManifest": schema_obot_platform_obot_apiclient_types_ModelProviderManifest(ref), + "github.com/obot-platform/obot/apiclient/types.ModelProviderStatus": schema_obot_platform_obot_apiclient_types_ModelProviderStatus(ref), + "github.com/obot-platform/obot/apiclient/types.ModelStatus": schema_obot_platform_obot_apiclient_types_ModelStatus(ref), + "github.com/obot-platform/obot/apiclient/types.NotionConfig": schema_obot_platform_obot_apiclient_types_NotionConfig(ref), + "github.com/obot-platform/obot/apiclient/types.OAuthApp": schema_obot_platform_obot_apiclient_types_OAuthApp(ref), + "github.com/obot-platform/obot/apiclient/types.OAuthAppList": schema_obot_platform_obot_apiclient_types_OAuthAppList(ref), + "github.com/obot-platform/obot/apiclient/types.OAuthAppLoginAuthStatus": schema_obot_platform_obot_apiclient_types_OAuthAppLoginAuthStatus(ref), + "github.com/obot-platform/obot/apiclient/types.OAuthAppManifest": schema_obot_platform_obot_apiclient_types_OAuthAppManifest(ref), + "github.com/obot-platform/obot/apiclient/types.OneDriveConfig": schema_obot_platform_obot_apiclient_types_OneDriveConfig(ref), + "github.com/obot-platform/obot/apiclient/types.Progress": schema_obot_platform_obot_apiclient_types_Progress(ref), + "github.com/obot-platform/obot/apiclient/types.Prompt": schema_obot_platform_obot_apiclient_types_Prompt(ref), + "github.com/obot-platform/obot/apiclient/types.PromptResponse": schema_obot_platform_obot_apiclient_types_PromptResponse(ref), + "github.com/obot-platform/obot/apiclient/types.Run": schema_obot_platform_obot_apiclient_types_Run(ref), + "github.com/obot-platform/obot/apiclient/types.RunList": schema_obot_platform_obot_apiclient_types_RunList(ref), + "github.com/obot-platform/obot/apiclient/types.Schedule": schema_obot_platform_obot_apiclient_types_Schedule(ref), + "github.com/obot-platform/obot/apiclient/types.Step": schema_obot_platform_obot_apiclient_types_Step(ref), + "github.com/obot-platform/obot/apiclient/types.StepTemplateInvoke": schema_obot_platform_obot_apiclient_types_StepTemplateInvoke(ref), + "github.com/obot-platform/obot/apiclient/types.SubFlow": schema_obot_platform_obot_apiclient_types_SubFlow(ref), + "github.com/obot-platform/obot/apiclient/types.Table": schema_obot_platform_obot_apiclient_types_Table(ref), + "github.com/obot-platform/obot/apiclient/types.TableList": schema_obot_platform_obot_apiclient_types_TableList(ref), + "github.com/obot-platform/obot/apiclient/types.Task": schema_obot_platform_obot_apiclient_types_Task(ref), + "github.com/obot-platform/obot/apiclient/types.TaskEmail": schema_obot_platform_obot_apiclient_types_TaskEmail(ref), + "github.com/obot-platform/obot/apiclient/types.TaskIf": schema_obot_platform_obot_apiclient_types_TaskIf(ref), + "github.com/obot-platform/obot/apiclient/types.TaskList": schema_obot_platform_obot_apiclient_types_TaskList(ref), + "github.com/obot-platform/obot/apiclient/types.TaskManifest": schema_obot_platform_obot_apiclient_types_TaskManifest(ref), + "github.com/obot-platform/obot/apiclient/types.TaskOnDemand": schema_obot_platform_obot_apiclient_types_TaskOnDemand(ref), + "github.com/obot-platform/obot/apiclient/types.TaskRun": schema_obot_platform_obot_apiclient_types_TaskRun(ref), + "github.com/obot-platform/obot/apiclient/types.TaskRunList": schema_obot_platform_obot_apiclient_types_TaskRunList(ref), + "github.com/obot-platform/obot/apiclient/types.TaskStep": schema_obot_platform_obot_apiclient_types_TaskStep(ref), + "github.com/obot-platform/obot/apiclient/types.TaskWebhook": schema_obot_platform_obot_apiclient_types_TaskWebhook(ref), + "github.com/obot-platform/obot/apiclient/types.Template": schema_obot_platform_obot_apiclient_types_Template(ref), + "github.com/obot-platform/obot/apiclient/types.Thread": schema_obot_platform_obot_apiclient_types_Thread(ref), + "github.com/obot-platform/obot/apiclient/types.ThreadList": schema_obot_platform_obot_apiclient_types_ThreadList(ref), + "github.com/obot-platform/obot/apiclient/types.ThreadManifest": schema_obot_platform_obot_apiclient_types_ThreadManifest(ref), + "github.com/obot-platform/obot/apiclient/types.Time": schema_obot_platform_obot_apiclient_types_Time(ref), + "github.com/obot-platform/obot/apiclient/types.ToolCall": schema_obot_platform_obot_apiclient_types_ToolCall(ref), + "github.com/obot-platform/obot/apiclient/types.ToolInfo": schema_obot_platform_obot_apiclient_types_ToolInfo(ref), + "github.com/obot-platform/obot/apiclient/types.ToolInput": schema_obot_platform_obot_apiclient_types_ToolInput(ref), + "github.com/obot-platform/obot/apiclient/types.ToolManifest": schema_obot_platform_obot_apiclient_types_ToolManifest(ref), + "github.com/obot-platform/obot/apiclient/types.ToolReference": schema_obot_platform_obot_apiclient_types_ToolReference(ref), + "github.com/obot-platform/obot/apiclient/types.ToolReferenceList": schema_obot_platform_obot_apiclient_types_ToolReferenceList(ref), + "github.com/obot-platform/obot/apiclient/types.ToolReferenceManifest": schema_obot_platform_obot_apiclient_types_ToolReferenceManifest(ref), + "github.com/obot-platform/obot/apiclient/types.User": schema_obot_platform_obot_apiclient_types_User(ref), + "github.com/obot-platform/obot/apiclient/types.UserList": schema_obot_platform_obot_apiclient_types_UserList(ref), + "github.com/obot-platform/obot/apiclient/types.Webhook": schema_obot_platform_obot_apiclient_types_Webhook(ref), + "github.com/obot-platform/obot/apiclient/types.WebhookList": schema_obot_platform_obot_apiclient_types_WebhookList(ref), + "github.com/obot-platform/obot/apiclient/types.WebhookManifest": schema_obot_platform_obot_apiclient_types_WebhookManifest(ref), + "github.com/obot-platform/obot/apiclient/types.WebsiteCrawlingConfig": schema_obot_platform_obot_apiclient_types_WebsiteCrawlingConfig(ref), + "github.com/obot-platform/obot/apiclient/types.While": schema_obot_platform_obot_apiclient_types_While(ref), + "github.com/obot-platform/obot/apiclient/types.Workflow": schema_obot_platform_obot_apiclient_types_Workflow(ref), + "github.com/obot-platform/obot/apiclient/types.WorkflowCall": schema_obot_platform_obot_apiclient_types_WorkflowCall(ref), + "github.com/obot-platform/obot/apiclient/types.WorkflowExecution": schema_obot_platform_obot_apiclient_types_WorkflowExecution(ref), + "github.com/obot-platform/obot/apiclient/types.WorkflowExecutionList": schema_obot_platform_obot_apiclient_types_WorkflowExecutionList(ref), + "github.com/obot-platform/obot/apiclient/types.WorkflowList": schema_obot_platform_obot_apiclient_types_WorkflowList(ref), + "github.com/obot-platform/obot/apiclient/types.WorkflowManifest": schema_obot_platform_obot_apiclient_types_WorkflowManifest(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.Agent": schema_storage_apis_obotobotai_v1_Agent(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.AgentList": schema_storage_apis_obotobotai_v1_AgentList(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.AgentSpec": schema_storage_apis_obotobotai_v1_AgentSpec(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.AgentStatus": schema_storage_apis_obotobotai_v1_AgentStatus(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.Alias": schema_storage_apis_obotobotai_v1_Alias(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.AliasList": schema_storage_apis_obotobotai_v1_AliasList(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.AliasSpec": schema_storage_apis_obotobotai_v1_AliasSpec(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.CronJob": schema_storage_apis_obotobotai_v1_CronJob(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.CronJobList": schema_storage_apis_obotobotai_v1_CronJobList(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.CronJobSpec": schema_storage_apis_obotobotai_v1_CronJobSpec(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.CronJobStatus": schema_storage_apis_obotobotai_v1_CronJobStatus(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.DefaultModelAlias": schema_storage_apis_obotobotai_v1_DefaultModelAlias(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.DefaultModelAliasList": schema_storage_apis_obotobotai_v1_DefaultModelAliasList(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.DefaultModelAliasSpec": schema_storage_apis_obotobotai_v1_DefaultModelAliasSpec(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.DefaultModelAliasStatus": schema_storage_apis_obotobotai_v1_DefaultModelAliasStatus(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.EmailReceiver": schema_storage_apis_obotobotai_v1_EmailReceiver(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.EmailReceiverList": schema_storage_apis_obotobotai_v1_EmailReceiverList(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.EmailReceiverSpec": schema_storage_apis_obotobotai_v1_EmailReceiverSpec(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.EmailReceiverStatus": schema_storage_apis_obotobotai_v1_EmailReceiverStatus(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.EmptyStatus": schema_storage_apis_obotobotai_v1_EmptyStatus(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.KnowledgeFile": schema_storage_apis_obotobotai_v1_KnowledgeFile(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.KnowledgeFileList": schema_storage_apis_obotobotai_v1_KnowledgeFileList(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.KnowledgeFileSpec": schema_storage_apis_obotobotai_v1_KnowledgeFileSpec(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.KnowledgeFileStatus": schema_storage_apis_obotobotai_v1_KnowledgeFileStatus(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.KnowledgeSet": schema_storage_apis_obotobotai_v1_KnowledgeSet(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.KnowledgeSetList": schema_storage_apis_obotobotai_v1_KnowledgeSetList(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.KnowledgeSetManifest": schema_storage_apis_obotobotai_v1_KnowledgeSetManifest(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.KnowledgeSetSpec": schema_storage_apis_obotobotai_v1_KnowledgeSetSpec(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.KnowledgeSetStatus": schema_storage_apis_obotobotai_v1_KnowledgeSetStatus(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.KnowledgeSource": schema_storage_apis_obotobotai_v1_KnowledgeSource(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.KnowledgeSourceList": schema_storage_apis_obotobotai_v1_KnowledgeSourceList(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.KnowledgeSourceSpec": schema_storage_apis_obotobotai_v1_KnowledgeSourceSpec(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.KnowledgeSourceStatus": schema_storage_apis_obotobotai_v1_KnowledgeSourceStatus(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.KnowledgeSummary": schema_storage_apis_obotobotai_v1_KnowledgeSummary(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.KnowledgeSummaryList": schema_storage_apis_obotobotai_v1_KnowledgeSummaryList(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.KnowledgeSummarySpec": schema_storage_apis_obotobotai_v1_KnowledgeSummarySpec(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.KnowledgeSummaryStatus": schema_storage_apis_obotobotai_v1_KnowledgeSummaryStatus(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.Model": schema_storage_apis_obotobotai_v1_Model(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.ModelList": schema_storage_apis_obotobotai_v1_ModelList(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.ModelSpec": schema_storage_apis_obotobotai_v1_ModelSpec(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.ModelStatus": schema_storage_apis_obotobotai_v1_ModelStatus(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.OAuthApp": schema_storage_apis_obotobotai_v1_OAuthApp(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.OAuthAppList": schema_storage_apis_obotobotai_v1_OAuthAppList(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.OAuthAppLogin": schema_storage_apis_obotobotai_v1_OAuthAppLogin(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.OAuthAppLoginList": schema_storage_apis_obotobotai_v1_OAuthAppLoginList(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.OAuthAppLoginSpec": schema_storage_apis_obotobotai_v1_OAuthAppLoginSpec(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.OAuthAppLoginStatus": schema_storage_apis_obotobotai_v1_OAuthAppLoginStatus(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.OAuthAppSpec": schema_storage_apis_obotobotai_v1_OAuthAppSpec(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.Ref": schema_storage_apis_obotobotai_v1_Ref(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.Run": schema_storage_apis_obotobotai_v1_Run(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.RunList": schema_storage_apis_obotobotai_v1_RunList(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.RunSpec": schema_storage_apis_obotobotai_v1_RunSpec(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.RunState": schema_storage_apis_obotobotai_v1_RunState(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.RunStateList": schema_storage_apis_obotobotai_v1_RunStateList(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.RunStateSpec": schema_storage_apis_obotobotai_v1_RunStateSpec(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.RunStatus": schema_storage_apis_obotobotai_v1_RunStatus(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.SubCall": schema_storage_apis_obotobotai_v1_SubCall(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.Thread": schema_storage_apis_obotobotai_v1_Thread(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.ThreadList": schema_storage_apis_obotobotai_v1_ThreadList(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.ThreadSpec": schema_storage_apis_obotobotai_v1_ThreadSpec(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.ThreadStatus": schema_storage_apis_obotobotai_v1_ThreadStatus(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.Tool": schema_storage_apis_obotobotai_v1_Tool(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.ToolList": schema_storage_apis_obotobotai_v1_ToolList(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.ToolReference": schema_storage_apis_obotobotai_v1_ToolReference(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.ToolReferenceList": schema_storage_apis_obotobotai_v1_ToolReferenceList(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.ToolReferenceSpec": schema_storage_apis_obotobotai_v1_ToolReferenceSpec(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.ToolReferenceStatus": schema_storage_apis_obotobotai_v1_ToolReferenceStatus(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.ToolShortDescription": schema_storage_apis_obotobotai_v1_ToolShortDescription(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.ToolSpec": schema_storage_apis_obotobotai_v1_ToolSpec(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.ToolStatus": schema_storage_apis_obotobotai_v1_ToolStatus(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.Webhook": schema_storage_apis_obotobotai_v1_Webhook(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.WebhookList": schema_storage_apis_obotobotai_v1_WebhookList(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.WebhookSpec": schema_storage_apis_obotobotai_v1_WebhookSpec(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.WebhookStatus": schema_storage_apis_obotobotai_v1_WebhookStatus(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.Workflow": schema_storage_apis_obotobotai_v1_Workflow(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.WorkflowExecution": schema_storage_apis_obotobotai_v1_WorkflowExecution(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.WorkflowExecutionList": schema_storage_apis_obotobotai_v1_WorkflowExecutionList(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.WorkflowExecutionSpec": schema_storage_apis_obotobotai_v1_WorkflowExecutionSpec(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.WorkflowExecutionStatus": schema_storage_apis_obotobotai_v1_WorkflowExecutionStatus(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.WorkflowList": schema_storage_apis_obotobotai_v1_WorkflowList(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.WorkflowSpec": schema_storage_apis_obotobotai_v1_WorkflowSpec(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.WorkflowStatus": schema_storage_apis_obotobotai_v1_WorkflowStatus(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.WorkflowStep": schema_storage_apis_obotobotai_v1_WorkflowStep(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.WorkflowStepList": schema_storage_apis_obotobotai_v1_WorkflowStepList(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.WorkflowStepSpec": schema_storage_apis_obotobotai_v1_WorkflowStepSpec(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.WorkflowStepStatus": schema_storage_apis_obotobotai_v1_WorkflowStepStatus(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.Workspace": schema_storage_apis_obotobotai_v1_Workspace(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.WorkspaceList": schema_storage_apis_obotobotai_v1_WorkspaceList(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.WorkspaceSpec": schema_storage_apis_obotobotai_v1_WorkspaceSpec(ref), + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.WorkspaceStatus": schema_storage_apis_obotobotai_v1_WorkspaceStatus(ref), + "k8s.io/api/coordination/v1.Lease": schema_k8sio_api_coordination_v1_Lease(ref), + "k8s.io/api/coordination/v1.LeaseList": schema_k8sio_api_coordination_v1_LeaseList(ref), + "k8s.io/api/coordination/v1.LeaseSpec": schema_k8sio_api_coordination_v1_LeaseSpec(ref), + "k8s.io/apimachinery/pkg/api/resource.Quantity": schema_apimachinery_pkg_api_resource_Quantity(ref), + "k8s.io/apimachinery/pkg/api/resource.int64Amount": schema_apimachinery_pkg_api_resource_int64Amount(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.APIGroup": schema_pkg_apis_meta_v1_APIGroup(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.APIGroupList": schema_pkg_apis_meta_v1_APIGroupList(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.APIResource": schema_pkg_apis_meta_v1_APIResource(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.APIResourceList": schema_pkg_apis_meta_v1_APIResourceList(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.APIVersions": schema_pkg_apis_meta_v1_APIVersions(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.ApplyOptions": schema_pkg_apis_meta_v1_ApplyOptions(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.Condition": schema_pkg_apis_meta_v1_Condition(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.CreateOptions": schema_pkg_apis_meta_v1_CreateOptions(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.DeleteOptions": schema_pkg_apis_meta_v1_DeleteOptions(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.Duration": schema_pkg_apis_meta_v1_Duration(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.FieldSelectorRequirement": schema_pkg_apis_meta_v1_FieldSelectorRequirement(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.FieldsV1": schema_pkg_apis_meta_v1_FieldsV1(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.GetOptions": schema_pkg_apis_meta_v1_GetOptions(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.GroupKind": schema_pkg_apis_meta_v1_GroupKind(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.GroupResource": schema_pkg_apis_meta_v1_GroupResource(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.GroupVersion": schema_pkg_apis_meta_v1_GroupVersion(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.GroupVersionForDiscovery": schema_pkg_apis_meta_v1_GroupVersionForDiscovery(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.GroupVersionKind": schema_pkg_apis_meta_v1_GroupVersionKind(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.GroupVersionResource": schema_pkg_apis_meta_v1_GroupVersionResource(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.InternalEvent": schema_pkg_apis_meta_v1_InternalEvent(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector": schema_pkg_apis_meta_v1_LabelSelector(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelectorRequirement": schema_pkg_apis_meta_v1_LabelSelectorRequirement(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.List": schema_pkg_apis_meta_v1_List(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta": schema_pkg_apis_meta_v1_ListMeta(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.ListOptions": schema_pkg_apis_meta_v1_ListOptions(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.ManagedFieldsEntry": schema_pkg_apis_meta_v1_ManagedFieldsEntry(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.MicroTime": schema_pkg_apis_meta_v1_MicroTime(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta": schema_pkg_apis_meta_v1_ObjectMeta(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.OwnerReference": schema_pkg_apis_meta_v1_OwnerReference(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.PartialObjectMetadata": schema_pkg_apis_meta_v1_PartialObjectMetadata(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.PartialObjectMetadataList": schema_pkg_apis_meta_v1_PartialObjectMetadataList(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.Patch": schema_pkg_apis_meta_v1_Patch(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.PatchOptions": schema_pkg_apis_meta_v1_PatchOptions(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.Preconditions": schema_pkg_apis_meta_v1_Preconditions(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.RootPaths": schema_pkg_apis_meta_v1_RootPaths(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.ServerAddressByClientCIDR": schema_pkg_apis_meta_v1_ServerAddressByClientCIDR(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.Status": schema_pkg_apis_meta_v1_Status(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.StatusCause": schema_pkg_apis_meta_v1_StatusCause(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.StatusDetails": schema_pkg_apis_meta_v1_StatusDetails(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.Table": schema_pkg_apis_meta_v1_Table(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.TableColumnDefinition": schema_pkg_apis_meta_v1_TableColumnDefinition(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.TableOptions": schema_pkg_apis_meta_v1_TableOptions(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.TableRow": schema_pkg_apis_meta_v1_TableRow(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.TableRowCondition": schema_pkg_apis_meta_v1_TableRowCondition(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.Time": schema_pkg_apis_meta_v1_Time(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.Timestamp": schema_pkg_apis_meta_v1_Timestamp(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.TypeMeta": schema_pkg_apis_meta_v1_TypeMeta(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.UpdateOptions": schema_pkg_apis_meta_v1_UpdateOptions(ref), + "k8s.io/apimachinery/pkg/apis/meta/v1.WatchEvent": schema_pkg_apis_meta_v1_WatchEvent(ref), + "k8s.io/apimachinery/pkg/runtime.RawExtension": schema_k8sio_apimachinery_pkg_runtime_RawExtension(ref), + "k8s.io/apimachinery/pkg/runtime.TypeMeta": schema_k8sio_apimachinery_pkg_runtime_TypeMeta(ref), + "k8s.io/apimachinery/pkg/runtime.Unknown": schema_k8sio_apimachinery_pkg_runtime_Unknown(ref), + "k8s.io/apimachinery/pkg/util/intstr.IntOrString": schema_apimachinery_pkg_util_intstr_IntOrString(ref), + "k8s.io/apimachinery/pkg/version.Info": schema_k8sio_apimachinery_pkg_version_Info(ref), } } @@ -4516,7 +4516,7 @@ func schema_obot_platform_obot_apiclient_types_WorkflowManifest(ref common.Refer } } -func schema_storage_apis_ottootto8ai_v1_Agent(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_Agent(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -4545,24 +4545,24 @@ func schema_storage_apis_ottootto8ai_v1_Agent(ref common.ReferenceCallback) comm "spec": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.AgentSpec"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.AgentSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.AgentStatus"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.AgentStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.AgentSpec", "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.AgentStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.AgentSpec", "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.AgentStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, } } -func schema_storage_apis_ottootto8ai_v1_AgentList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_AgentList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -4595,7 +4595,7 @@ func schema_storage_apis_ottootto8ai_v1_AgentList(ref common.ReferenceCallback) Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.Agent"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.Agent"), }, }, }, @@ -4606,11 +4606,11 @@ func schema_storage_apis_ottootto8ai_v1_AgentList(ref common.ReferenceCallback) }, }, Dependencies: []string{ - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.Agent", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.Agent", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } -func schema_storage_apis_ottootto8ai_v1_AgentSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_AgentSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -4698,7 +4698,7 @@ func schema_storage_apis_ottootto8ai_v1_AgentSpec(ref common.ReferenceCallback) } } -func schema_storage_apis_ottootto8ai_v1_AgentStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_AgentStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -4772,7 +4772,7 @@ func schema_storage_apis_ottootto8ai_v1_AgentStatus(ref common.ReferenceCallback } } -func schema_storage_apis_ottootto8ai_v1_Alias(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_Alias(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -4801,24 +4801,24 @@ func schema_storage_apis_ottootto8ai_v1_Alias(ref common.ReferenceCallback) comm "spec": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.AliasSpec"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.AliasSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.EmptyStatus"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.EmptyStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.AliasSpec", "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.EmptyStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.AliasSpec", "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.EmptyStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, } } -func schema_storage_apis_ottootto8ai_v1_AliasList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_AliasList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -4851,7 +4851,7 @@ func schema_storage_apis_ottootto8ai_v1_AliasList(ref common.ReferenceCallback) Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.Alias"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.Alias"), }, }, }, @@ -4862,11 +4862,11 @@ func schema_storage_apis_ottootto8ai_v1_AliasList(ref common.ReferenceCallback) }, }, Dependencies: []string{ - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.Alias", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.Alias", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } -func schema_storage_apis_ottootto8ai_v1_AliasSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_AliasSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -4902,7 +4902,7 @@ func schema_storage_apis_ottootto8ai_v1_AliasSpec(ref common.ReferenceCallback) } } -func schema_storage_apis_ottootto8ai_v1_CronJob(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_CronJob(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -4931,24 +4931,24 @@ func schema_storage_apis_ottootto8ai_v1_CronJob(ref common.ReferenceCallback) co "spec": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.CronJobSpec"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.CronJobSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.CronJobStatus"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.CronJobStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.CronJobSpec", "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.CronJobStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.CronJobSpec", "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.CronJobStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, } } -func schema_storage_apis_ottootto8ai_v1_CronJobList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_CronJobList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -4981,7 +4981,7 @@ func schema_storage_apis_ottootto8ai_v1_CronJobList(ref common.ReferenceCallback Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.CronJob"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.CronJob"), }, }, }, @@ -4992,11 +4992,11 @@ func schema_storage_apis_ottootto8ai_v1_CronJobList(ref common.ReferenceCallback }, }, Dependencies: []string{ - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.CronJob", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.CronJob", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } -func schema_storage_apis_ottootto8ai_v1_CronJobSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_CronJobSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -5045,7 +5045,7 @@ func schema_storage_apis_ottootto8ai_v1_CronJobSpec(ref common.ReferenceCallback } } -func schema_storage_apis_ottootto8ai_v1_CronJobStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_CronJobStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -5069,7 +5069,7 @@ func schema_storage_apis_ottootto8ai_v1_CronJobStatus(ref common.ReferenceCallba } } -func schema_storage_apis_ottootto8ai_v1_DefaultModelAlias(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_DefaultModelAlias(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -5098,13 +5098,13 @@ func schema_storage_apis_ottootto8ai_v1_DefaultModelAlias(ref common.ReferenceCa "spec": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.DefaultModelAliasSpec"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.DefaultModelAliasSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.DefaultModelAliasStatus"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.DefaultModelAliasStatus"), }, }, }, @@ -5112,11 +5112,11 @@ func schema_storage_apis_ottootto8ai_v1_DefaultModelAlias(ref common.ReferenceCa }, }, Dependencies: []string{ - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.DefaultModelAliasSpec", "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.DefaultModelAliasStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.DefaultModelAliasSpec", "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.DefaultModelAliasStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, } } -func schema_storage_apis_ottootto8ai_v1_DefaultModelAliasList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_DefaultModelAliasList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -5149,7 +5149,7 @@ func schema_storage_apis_ottootto8ai_v1_DefaultModelAliasList(ref common.Referen Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.DefaultModelAlias"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.DefaultModelAlias"), }, }, }, @@ -5160,11 +5160,11 @@ func schema_storage_apis_ottootto8ai_v1_DefaultModelAliasList(ref common.Referen }, }, Dependencies: []string{ - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.DefaultModelAlias", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.DefaultModelAlias", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } -func schema_storage_apis_ottootto8ai_v1_DefaultModelAliasSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_DefaultModelAliasSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -5185,7 +5185,7 @@ func schema_storage_apis_ottootto8ai_v1_DefaultModelAliasSpec(ref common.Referen } } -func schema_storage_apis_ottootto8ai_v1_DefaultModelAliasStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_DefaultModelAliasStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -5205,7 +5205,7 @@ func schema_storage_apis_ottootto8ai_v1_DefaultModelAliasStatus(ref common.Refer } } -func schema_storage_apis_ottootto8ai_v1_EmailReceiver(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_EmailReceiver(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -5234,24 +5234,24 @@ func schema_storage_apis_ottootto8ai_v1_EmailReceiver(ref common.ReferenceCallba "spec": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.EmailReceiverSpec"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.EmailReceiverSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.EmailReceiverStatus"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.EmailReceiverStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.EmailReceiverSpec", "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.EmailReceiverStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.EmailReceiverSpec", "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.EmailReceiverStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, } } -func schema_storage_apis_ottootto8ai_v1_EmailReceiverList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_EmailReceiverList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -5284,7 +5284,7 @@ func schema_storage_apis_ottootto8ai_v1_EmailReceiverList(ref common.ReferenceCa Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.EmailReceiver"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.EmailReceiver"), }, }, }, @@ -5295,11 +5295,11 @@ func schema_storage_apis_ottootto8ai_v1_EmailReceiverList(ref common.ReferenceCa }, }, Dependencies: []string{ - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.EmailReceiver", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.EmailReceiver", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } -func schema_storage_apis_ottootto8ai_v1_EmailReceiverSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_EmailReceiverSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -5359,7 +5359,7 @@ func schema_storage_apis_ottootto8ai_v1_EmailReceiverSpec(ref common.ReferenceCa } } -func schema_storage_apis_ottootto8ai_v1_EmailReceiverStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_EmailReceiverStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -5383,7 +5383,7 @@ func schema_storage_apis_ottootto8ai_v1_EmailReceiverStatus(ref common.Reference } } -func schema_storage_apis_ottootto8ai_v1_EmptyStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_EmptyStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -5393,7 +5393,7 @@ func schema_storage_apis_ottootto8ai_v1_EmptyStatus(ref common.ReferenceCallback } } -func schema_storage_apis_ottootto8ai_v1_KnowledgeFile(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_KnowledgeFile(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -5422,24 +5422,24 @@ func schema_storage_apis_ottootto8ai_v1_KnowledgeFile(ref common.ReferenceCallba "spec": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeFileSpec"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.KnowledgeFileSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeFileStatus"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.KnowledgeFileStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeFileSpec", "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeFileStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.KnowledgeFileSpec", "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.KnowledgeFileStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, } } -func schema_storage_apis_ottootto8ai_v1_KnowledgeFileList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_KnowledgeFileList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -5472,7 +5472,7 @@ func schema_storage_apis_ottootto8ai_v1_KnowledgeFileList(ref common.ReferenceCa Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeFile"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.KnowledgeFile"), }, }, }, @@ -5483,11 +5483,11 @@ func schema_storage_apis_ottootto8ai_v1_KnowledgeFileList(ref common.ReferenceCa }, }, Dependencies: []string{ - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeFile", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.KnowledgeFile", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } -func schema_storage_apis_ottootto8ai_v1_KnowledgeFileSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_KnowledgeFileSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -5553,7 +5553,7 @@ func schema_storage_apis_ottootto8ai_v1_KnowledgeFileSpec(ref common.ReferenceCa } } -func schema_storage_apis_ottootto8ai_v1_KnowledgeFileStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_KnowledgeFileStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -5633,7 +5633,7 @@ func schema_storage_apis_ottootto8ai_v1_KnowledgeFileStatus(ref common.Reference } } -func schema_storage_apis_ottootto8ai_v1_KnowledgeSet(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_KnowledgeSet(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -5662,24 +5662,24 @@ func schema_storage_apis_ottootto8ai_v1_KnowledgeSet(ref common.ReferenceCallbac "spec": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSetSpec"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.KnowledgeSetSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSetStatus"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.KnowledgeSetStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSetSpec", "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSetStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.KnowledgeSetSpec", "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.KnowledgeSetStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, } } -func schema_storage_apis_ottootto8ai_v1_KnowledgeSetList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_KnowledgeSetList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -5712,7 +5712,7 @@ func schema_storage_apis_ottootto8ai_v1_KnowledgeSetList(ref common.ReferenceCal Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSet"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.KnowledgeSet"), }, }, }, @@ -5723,11 +5723,11 @@ func schema_storage_apis_ottootto8ai_v1_KnowledgeSetList(ref common.ReferenceCal }, }, Dependencies: []string{ - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSet", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.KnowledgeSet", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } -func schema_storage_apis_ottootto8ai_v1_KnowledgeSetManifest(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_KnowledgeSetManifest(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -5746,7 +5746,7 @@ func schema_storage_apis_ottootto8ai_v1_KnowledgeSetManifest(ref common.Referenc } } -func schema_storage_apis_ottootto8ai_v1_KnowledgeSetSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_KnowledgeSetSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -5755,7 +5755,7 @@ func schema_storage_apis_ottootto8ai_v1_KnowledgeSetSpec(ref common.ReferenceCal "manifest": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSetManifest"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.KnowledgeSetManifest"), }, }, "agentName": { @@ -5790,11 +5790,11 @@ func schema_storage_apis_ottootto8ai_v1_KnowledgeSetSpec(ref common.ReferenceCal }, }, Dependencies: []string{ - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSetManifest"}, + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.KnowledgeSetManifest"}, } } -func schema_storage_apis_ottootto8ai_v1_KnowledgeSetStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_KnowledgeSetStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -5848,7 +5848,7 @@ func schema_storage_apis_ottootto8ai_v1_KnowledgeSetStatus(ref common.ReferenceC } } -func schema_storage_apis_ottootto8ai_v1_KnowledgeSource(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_KnowledgeSource(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -5877,24 +5877,24 @@ func schema_storage_apis_ottootto8ai_v1_KnowledgeSource(ref common.ReferenceCall "spec": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSourceSpec"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.KnowledgeSourceSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSourceStatus"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.KnowledgeSourceStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSourceSpec", "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSourceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.KnowledgeSourceSpec", "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.KnowledgeSourceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, } } -func schema_storage_apis_ottootto8ai_v1_KnowledgeSourceList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_KnowledgeSourceList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -5927,7 +5927,7 @@ func schema_storage_apis_ottootto8ai_v1_KnowledgeSourceList(ref common.Reference Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSource"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.KnowledgeSource"), }, }, }, @@ -5938,11 +5938,11 @@ func schema_storage_apis_ottootto8ai_v1_KnowledgeSourceList(ref common.Reference }, }, Dependencies: []string{ - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSource", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.KnowledgeSource", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } -func schema_storage_apis_ottootto8ai_v1_KnowledgeSourceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_KnowledgeSourceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -5974,7 +5974,7 @@ func schema_storage_apis_ottootto8ai_v1_KnowledgeSourceSpec(ref common.Reference } } -func schema_storage_apis_ottootto8ai_v1_KnowledgeSourceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_KnowledgeSourceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -6051,7 +6051,7 @@ func schema_storage_apis_ottootto8ai_v1_KnowledgeSourceStatus(ref common.Referen } } -func schema_storage_apis_ottootto8ai_v1_KnowledgeSummary(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_KnowledgeSummary(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -6080,24 +6080,24 @@ func schema_storage_apis_ottootto8ai_v1_KnowledgeSummary(ref common.ReferenceCal "spec": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSummarySpec"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.KnowledgeSummarySpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSummaryStatus"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.KnowledgeSummaryStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSummarySpec", "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSummaryStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.KnowledgeSummarySpec", "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.KnowledgeSummaryStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, } } -func schema_storage_apis_ottootto8ai_v1_KnowledgeSummaryList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_KnowledgeSummaryList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -6130,7 +6130,7 @@ func schema_storage_apis_ottootto8ai_v1_KnowledgeSummaryList(ref common.Referenc Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSummary"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.KnowledgeSummary"), }, }, }, @@ -6141,11 +6141,11 @@ func schema_storage_apis_ottootto8ai_v1_KnowledgeSummaryList(ref common.Referenc }, }, Dependencies: []string{ - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSummary", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.KnowledgeSummary", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } -func schema_storage_apis_ottootto8ai_v1_KnowledgeSummarySpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_KnowledgeSummarySpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -6175,7 +6175,7 @@ func schema_storage_apis_ottootto8ai_v1_KnowledgeSummarySpec(ref common.Referenc } } -func schema_storage_apis_ottootto8ai_v1_KnowledgeSummaryStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_KnowledgeSummaryStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -6185,7 +6185,7 @@ func schema_storage_apis_ottootto8ai_v1_KnowledgeSummaryStatus(ref common.Refere } } -func schema_storage_apis_ottootto8ai_v1_Model(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_Model(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -6214,24 +6214,24 @@ func schema_storage_apis_ottootto8ai_v1_Model(ref common.ReferenceCallback) comm "spec": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.ModelSpec"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.ModelSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.ModelStatus"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.ModelStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.ModelSpec", "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.ModelStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.ModelSpec", "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.ModelStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, } } -func schema_storage_apis_ottootto8ai_v1_ModelList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_ModelList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -6264,7 +6264,7 @@ func schema_storage_apis_ottootto8ai_v1_ModelList(ref common.ReferenceCallback) Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.Model"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.Model"), }, }, }, @@ -6275,11 +6275,11 @@ func schema_storage_apis_ottootto8ai_v1_ModelList(ref common.ReferenceCallback) }, }, Dependencies: []string{ - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.Model", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.Model", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } -func schema_storage_apis_ottootto8ai_v1_ModelSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_ModelSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -6299,7 +6299,7 @@ func schema_storage_apis_ottootto8ai_v1_ModelSpec(ref common.ReferenceCallback) } } -func schema_storage_apis_ottootto8ai_v1_ModelStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_ModelStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -6323,7 +6323,7 @@ func schema_storage_apis_ottootto8ai_v1_ModelStatus(ref common.ReferenceCallback } } -func schema_storage_apis_ottootto8ai_v1_OAuthApp(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_OAuthApp(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -6352,24 +6352,24 @@ func schema_storage_apis_ottootto8ai_v1_OAuthApp(ref common.ReferenceCallback) c "spec": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.OAuthAppSpec"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.OAuthAppSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.EmptyStatus"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.EmptyStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.EmptyStatus", "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.OAuthAppSpec", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.EmptyStatus", "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.OAuthAppSpec", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, } } -func schema_storage_apis_ottootto8ai_v1_OAuthAppList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_OAuthAppList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -6402,7 +6402,7 @@ func schema_storage_apis_ottootto8ai_v1_OAuthAppList(ref common.ReferenceCallbac Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.OAuthApp"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.OAuthApp"), }, }, }, @@ -6413,11 +6413,11 @@ func schema_storage_apis_ottootto8ai_v1_OAuthAppList(ref common.ReferenceCallbac }, }, Dependencies: []string{ - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.OAuthApp", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.OAuthApp", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } -func schema_storage_apis_ottootto8ai_v1_OAuthAppLogin(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_OAuthAppLogin(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -6446,24 +6446,24 @@ func schema_storage_apis_ottootto8ai_v1_OAuthAppLogin(ref common.ReferenceCallba "spec": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.OAuthAppLoginSpec"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.OAuthAppLoginSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.OAuthAppLoginStatus"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.OAuthAppLoginStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.OAuthAppLoginSpec", "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.OAuthAppLoginStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.OAuthAppLoginSpec", "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.OAuthAppLoginStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, } } -func schema_storage_apis_ottootto8ai_v1_OAuthAppLoginList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_OAuthAppLoginList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -6496,7 +6496,7 @@ func schema_storage_apis_ottootto8ai_v1_OAuthAppLoginList(ref common.ReferenceCa Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.OAuthAppLogin"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.OAuthAppLogin"), }, }, }, @@ -6507,11 +6507,11 @@ func schema_storage_apis_ottootto8ai_v1_OAuthAppLoginList(ref common.ReferenceCa }, }, Dependencies: []string{ - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.OAuthAppLogin", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.OAuthAppLogin", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } -func schema_storage_apis_ottootto8ai_v1_OAuthAppLoginSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_OAuthAppLoginSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -6549,7 +6549,7 @@ func schema_storage_apis_ottootto8ai_v1_OAuthAppLoginSpec(ref common.ReferenceCa } } -func schema_storage_apis_ottootto8ai_v1_OAuthAppLoginStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_OAuthAppLoginStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -6569,7 +6569,7 @@ func schema_storage_apis_ottootto8ai_v1_OAuthAppLoginStatus(ref common.Reference } } -func schema_storage_apis_ottootto8ai_v1_OAuthAppSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_OAuthAppSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -6589,7 +6589,7 @@ func schema_storage_apis_ottootto8ai_v1_OAuthAppSpec(ref common.ReferenceCallbac } } -func schema_storage_apis_ottootto8ai_v1_Ref(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_Ref(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -6630,7 +6630,7 @@ func schema_storage_apis_ottootto8ai_v1_Ref(ref common.ReferenceCallback) common } } -func schema_storage_apis_ottootto8ai_v1_Run(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_Run(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -6659,24 +6659,24 @@ func schema_storage_apis_ottootto8ai_v1_Run(ref common.ReferenceCallback) common "spec": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.RunSpec"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.RunSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.RunStatus"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.RunStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.RunSpec", "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.RunStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.RunSpec", "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.RunStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, } } -func schema_storage_apis_ottootto8ai_v1_RunList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_RunList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -6709,7 +6709,7 @@ func schema_storage_apis_ottootto8ai_v1_RunList(ref common.ReferenceCallback) co Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.Run"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.Run"), }, }, }, @@ -6720,11 +6720,11 @@ func schema_storage_apis_ottootto8ai_v1_RunList(ref common.ReferenceCallback) co }, }, Dependencies: []string{ - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.Run", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.Run", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } -func schema_storage_apis_ottootto8ai_v1_RunSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_RunSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -6845,7 +6845,7 @@ func schema_storage_apis_ottootto8ai_v1_RunSpec(ref common.ReferenceCallback) co } } -func schema_storage_apis_ottootto8ai_v1_RunState(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_RunState(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -6874,24 +6874,24 @@ func schema_storage_apis_ottootto8ai_v1_RunState(ref common.ReferenceCallback) c "spec": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.RunStateSpec"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.RunStateSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.EmptyStatus"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.EmptyStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.EmptyStatus", "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.RunStateSpec", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.EmptyStatus", "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.RunStateSpec", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, } } -func schema_storage_apis_ottootto8ai_v1_RunStateList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_RunStateList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -6924,7 +6924,7 @@ func schema_storage_apis_ottootto8ai_v1_RunStateList(ref common.ReferenceCallbac Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.RunState"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.RunState"), }, }, }, @@ -6935,11 +6935,11 @@ func schema_storage_apis_ottootto8ai_v1_RunStateList(ref common.ReferenceCallbac }, }, Dependencies: []string{ - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.RunState", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.RunState", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } -func schema_storage_apis_ottootto8ai_v1_RunStateSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_RunStateSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -6993,7 +6993,7 @@ func schema_storage_apis_ottootto8ai_v1_RunStateSpec(ref common.ReferenceCallbac } } -func schema_storage_apis_ottootto8ai_v1_RunStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_RunStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -7038,7 +7038,7 @@ func schema_storage_apis_ottootto8ai_v1_RunStatus(ref common.ReferenceCallback) }, "subCall": { SchemaProps: spec.SchemaProps{ - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.SubCall"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.SubCall"), }, }, }, @@ -7046,11 +7046,11 @@ func schema_storage_apis_ottootto8ai_v1_RunStatus(ref common.ReferenceCallback) }, }, Dependencies: []string{ - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.SubCall", "k8s.io/apimachinery/pkg/apis/meta/v1.Condition", "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.SubCall", "k8s.io/apimachinery/pkg/apis/meta/v1.Condition", "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, } } -func schema_storage_apis_ottootto8ai_v1_SubCall(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_SubCall(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -7080,7 +7080,7 @@ func schema_storage_apis_ottootto8ai_v1_SubCall(ref common.ReferenceCallback) co } } -func schema_storage_apis_ottootto8ai_v1_Thread(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_Thread(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -7109,24 +7109,24 @@ func schema_storage_apis_ottootto8ai_v1_Thread(ref common.ReferenceCallback) com "spec": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.ThreadSpec"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.ThreadSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.ThreadStatus"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.ThreadStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.ThreadSpec", "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.ThreadStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.ThreadSpec", "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.ThreadStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, } } -func schema_storage_apis_ottootto8ai_v1_ThreadList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_ThreadList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -7159,7 +7159,7 @@ func schema_storage_apis_ottootto8ai_v1_ThreadList(ref common.ReferenceCallback) Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.Thread"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.Thread"), }, }, }, @@ -7170,11 +7170,11 @@ func schema_storage_apis_ottootto8ai_v1_ThreadList(ref common.ReferenceCallback) }, }, Dependencies: []string{ - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.Thread", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.Thread", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } -func schema_storage_apis_ottootto8ai_v1_ThreadSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_ThreadSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -7318,7 +7318,7 @@ func schema_storage_apis_ottootto8ai_v1_ThreadSpec(ref common.ReferenceCallback) } } -func schema_storage_apis_ottootto8ai_v1_ThreadStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_ThreadStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -7386,7 +7386,7 @@ func schema_storage_apis_ottootto8ai_v1_ThreadStatus(ref common.ReferenceCallbac } } -func schema_storage_apis_ottootto8ai_v1_Tool(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_Tool(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -7415,24 +7415,24 @@ func schema_storage_apis_ottootto8ai_v1_Tool(ref common.ReferenceCallback) commo "spec": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.ToolSpec"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.ToolSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.ToolStatus"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.ToolStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.ToolSpec", "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.ToolStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.ToolSpec", "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.ToolStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, } } -func schema_storage_apis_ottootto8ai_v1_ToolList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_ToolList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -7465,7 +7465,7 @@ func schema_storage_apis_ottootto8ai_v1_ToolList(ref common.ReferenceCallback) c Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.Tool"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.Tool"), }, }, }, @@ -7476,11 +7476,11 @@ func schema_storage_apis_ottootto8ai_v1_ToolList(ref common.ReferenceCallback) c }, }, Dependencies: []string{ - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.Tool", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.Tool", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } -func schema_storage_apis_ottootto8ai_v1_ToolReference(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_ToolReference(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -7509,24 +7509,24 @@ func schema_storage_apis_ottootto8ai_v1_ToolReference(ref common.ReferenceCallba "spec": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.ToolReferenceSpec"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.ToolReferenceSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.ToolReferenceStatus"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.ToolReferenceStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.ToolReferenceSpec", "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.ToolReferenceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.ToolReferenceSpec", "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.ToolReferenceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, } } -func schema_storage_apis_ottootto8ai_v1_ToolReferenceList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_ToolReferenceList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -7559,7 +7559,7 @@ func schema_storage_apis_ottootto8ai_v1_ToolReferenceList(ref common.ReferenceCa Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.ToolReference"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.ToolReference"), }, }, }, @@ -7570,11 +7570,11 @@ func schema_storage_apis_ottootto8ai_v1_ToolReferenceList(ref common.ReferenceCa }, }, Dependencies: []string{ - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.ToolReference", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.ToolReference", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } -func schema_storage_apis_ottootto8ai_v1_ToolReferenceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_ToolReferenceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -7610,7 +7610,7 @@ func schema_storage_apis_ottootto8ai_v1_ToolReferenceSpec(ref common.ReferenceCa } } -func schema_storage_apis_ottootto8ai_v1_ToolReferenceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_ToolReferenceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -7635,7 +7635,7 @@ func schema_storage_apis_ottootto8ai_v1_ToolReferenceStatus(ref common.Reference }, "tool": { SchemaProps: spec.SchemaProps{ - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.ToolShortDescription"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.ToolShortDescription"), }, }, "error": { @@ -7648,11 +7648,11 @@ func schema_storage_apis_ottootto8ai_v1_ToolReferenceStatus(ref common.Reference }, }, Dependencies: []string{ - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.ToolShortDescription", "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.ToolShortDescription", "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, } } -func schema_storage_apis_ottootto8ai_v1_ToolShortDescription(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_ToolShortDescription(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -7736,7 +7736,7 @@ func schema_storage_apis_ottootto8ai_v1_ToolShortDescription(ref common.Referenc } } -func schema_storage_apis_ottootto8ai_v1_ToolSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_ToolSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -7776,7 +7776,7 @@ func schema_storage_apis_ottootto8ai_v1_ToolSpec(ref common.ReferenceCallback) c } } -func schema_storage_apis_ottootto8ai_v1_ToolStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_ToolStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -7786,7 +7786,7 @@ func schema_storage_apis_ottootto8ai_v1_ToolStatus(ref common.ReferenceCallback) } } -func schema_storage_apis_ottootto8ai_v1_Webhook(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_Webhook(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -7815,24 +7815,24 @@ func schema_storage_apis_ottootto8ai_v1_Webhook(ref common.ReferenceCallback) co "spec": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WebhookSpec"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.WebhookSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WebhookStatus"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.WebhookStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WebhookSpec", "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WebhookStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.WebhookSpec", "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.WebhookStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, } } -func schema_storage_apis_ottootto8ai_v1_WebhookList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_WebhookList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -7865,7 +7865,7 @@ func schema_storage_apis_ottootto8ai_v1_WebhookList(ref common.ReferenceCallback Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.Webhook"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.Webhook"), }, }, }, @@ -7876,11 +7876,11 @@ func schema_storage_apis_ottootto8ai_v1_WebhookList(ref common.ReferenceCallback }, }, Dependencies: []string{ - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.Webhook", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.Webhook", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } -func schema_storage_apis_ottootto8ai_v1_WebhookSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_WebhookSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -7962,7 +7962,7 @@ func schema_storage_apis_ottootto8ai_v1_WebhookSpec(ref common.ReferenceCallback } } -func schema_storage_apis_ottootto8ai_v1_WebhookStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_WebhookStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -7993,7 +7993,7 @@ func schema_storage_apis_ottootto8ai_v1_WebhookStatus(ref common.ReferenceCallba } } -func schema_storage_apis_ottootto8ai_v1_Workflow(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_Workflow(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -8022,24 +8022,24 @@ func schema_storage_apis_ottootto8ai_v1_Workflow(ref common.ReferenceCallback) c "spec": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WorkflowSpec"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.WorkflowSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WorkflowStatus"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.WorkflowStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WorkflowSpec", "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WorkflowStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.WorkflowSpec", "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.WorkflowStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, } } -func schema_storage_apis_ottootto8ai_v1_WorkflowExecution(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_WorkflowExecution(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -8068,24 +8068,24 @@ func schema_storage_apis_ottootto8ai_v1_WorkflowExecution(ref common.ReferenceCa "spec": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WorkflowExecutionSpec"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.WorkflowExecutionSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WorkflowExecutionStatus"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.WorkflowExecutionStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WorkflowExecutionSpec", "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WorkflowExecutionStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.WorkflowExecutionSpec", "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.WorkflowExecutionStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, } } -func schema_storage_apis_ottootto8ai_v1_WorkflowExecutionList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_WorkflowExecutionList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -8118,7 +8118,7 @@ func schema_storage_apis_ottootto8ai_v1_WorkflowExecutionList(ref common.Referen Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WorkflowExecution"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.WorkflowExecution"), }, }, }, @@ -8129,11 +8129,11 @@ func schema_storage_apis_ottootto8ai_v1_WorkflowExecutionList(ref common.Referen }, }, Dependencies: []string{ - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WorkflowExecution", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.WorkflowExecution", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } -func schema_storage_apis_ottootto8ai_v1_WorkflowExecutionSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_WorkflowExecutionSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -8224,7 +8224,7 @@ func schema_storage_apis_ottootto8ai_v1_WorkflowExecutionSpec(ref common.Referen } } -func schema_storage_apis_ottootto8ai_v1_WorkflowExecutionStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_WorkflowExecutionStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -8278,7 +8278,7 @@ func schema_storage_apis_ottootto8ai_v1_WorkflowExecutionStatus(ref common.Refer } } -func schema_storage_apis_ottootto8ai_v1_WorkflowList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_WorkflowList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -8311,7 +8311,7 @@ func schema_storage_apis_ottootto8ai_v1_WorkflowList(ref common.ReferenceCallbac Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.Workflow"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.Workflow"), }, }, }, @@ -8322,11 +8322,11 @@ func schema_storage_apis_ottootto8ai_v1_WorkflowList(ref common.ReferenceCallbac }, }, Dependencies: []string{ - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.Workflow", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.Workflow", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } -func schema_storage_apis_ottootto8ai_v1_WorkflowSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_WorkflowSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -8378,7 +8378,7 @@ func schema_storage_apis_ottootto8ai_v1_WorkflowSpec(ref common.ReferenceCallbac } } -func schema_storage_apis_ottootto8ai_v1_WorkflowStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_WorkflowStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -8452,7 +8452,7 @@ func schema_storage_apis_ottootto8ai_v1_WorkflowStatus(ref common.ReferenceCallb } } -func schema_storage_apis_ottootto8ai_v1_WorkflowStep(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_WorkflowStep(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -8481,24 +8481,24 @@ func schema_storage_apis_ottootto8ai_v1_WorkflowStep(ref common.ReferenceCallbac "spec": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WorkflowStepSpec"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.WorkflowStepSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WorkflowStepStatus"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.WorkflowStepStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WorkflowStepSpec", "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WorkflowStepStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.WorkflowStepSpec", "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.WorkflowStepStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, } } -func schema_storage_apis_ottootto8ai_v1_WorkflowStepList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_WorkflowStepList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -8531,7 +8531,7 @@ func schema_storage_apis_ottootto8ai_v1_WorkflowStepList(ref common.ReferenceCal Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WorkflowStep"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.WorkflowStep"), }, }, }, @@ -8542,11 +8542,11 @@ func schema_storage_apis_ottootto8ai_v1_WorkflowStepList(ref common.ReferenceCal }, }, Dependencies: []string{ - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WorkflowStep", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.WorkflowStep", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } -func schema_storage_apis_ottootto8ai_v1_WorkflowStepSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_WorkflowStepSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -8584,7 +8584,7 @@ func schema_storage_apis_ottootto8ai_v1_WorkflowStepSpec(ref common.ReferenceCal } } -func schema_storage_apis_ottootto8ai_v1_WorkflowStepStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_WorkflowStepStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -8609,7 +8609,7 @@ func schema_storage_apis_ottootto8ai_v1_WorkflowStepStatus(ref common.ReferenceC Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.SubCall"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.SubCall"), }, }, }, @@ -8651,11 +8651,11 @@ func schema_storage_apis_ottootto8ai_v1_WorkflowStepStatus(ref common.ReferenceC }, }, Dependencies: []string{ - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.SubCall"}, + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.SubCall"}, } } -func schema_storage_apis_ottootto8ai_v1_Workspace(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_Workspace(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -8684,24 +8684,24 @@ func schema_storage_apis_ottootto8ai_v1_Workspace(ref common.ReferenceCallback) "spec": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WorkspaceSpec"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.WorkspaceSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WorkspaceStatus"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.WorkspaceStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WorkspaceSpec", "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WorkspaceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.WorkspaceSpec", "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.WorkspaceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, } } -func schema_storage_apis_ottootto8ai_v1_WorkspaceList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_WorkspaceList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -8734,7 +8734,7 @@ func schema_storage_apis_ottootto8ai_v1_WorkspaceList(ref common.ReferenceCallba Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.Workspace"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.Workspace"), }, }, }, @@ -8745,11 +8745,11 @@ func schema_storage_apis_ottootto8ai_v1_WorkspaceList(ref common.ReferenceCallba }, }, Dependencies: []string{ - "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.Workspace", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1.Workspace", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } -func schema_storage_apis_ottootto8ai_v1_WorkspaceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_WorkspaceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -8805,7 +8805,7 @@ func schema_storage_apis_ottootto8ai_v1_WorkspaceSpec(ref common.ReferenceCallba } } -func schema_storage_apis_ottootto8ai_v1_WorkspaceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_storage_apis_obotobotai_v1_WorkspaceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ diff --git a/pkg/storage/registry/apigroups/agent/apigroup.go b/pkg/storage/registry/apigroups/agent/apigroup.go index 8328dc21f..425083650 100644 --- a/pkg/storage/registry/apigroups/agent/apigroup.go +++ b/pkg/storage/registry/apigroups/agent/apigroup.go @@ -5,7 +5,7 @@ import ( "github.com/obot-platform/kinm/pkg/apigroup" "github.com/obot-platform/nah/pkg/typed" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" "github.com/obot-platform/obot/pkg/storage/registry/generic" "github.com/obot-platform/obot/pkg/storage/scheme" "github.com/obot-platform/obot/pkg/storage/services" diff --git a/pkg/storage/scheme/scheme.go b/pkg/storage/scheme/scheme.go index 9a87d227a..53f21cf83 100644 --- a/pkg/storage/scheme/scheme.go +++ b/pkg/storage/scheme/scheme.go @@ -2,7 +2,7 @@ package scheme import ( "github.com/obot-platform/nah/pkg/restconfig" - v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/obot.obot.ai/v1" coordinationv1 "k8s.io/api/coordination/v1" corev1 "k8s.io/api/core/v1" ) diff --git a/run.sh b/run.sh index d10c04767..f62919aa7 100644 --- a/run.sh +++ b/run.sh @@ -19,7 +19,7 @@ mkdir -p /run/sshd mkdir -p /data/cache # This is YAML export OBOT_SERVER_VERSIONS="$(cat <