From 4004a5c69f321fbfe469eaac86275689ce25c8de Mon Sep 17 00:00:00 2001 From: Donnie Adams Date: Tue, 17 Dec 2024 08:05:03 -0500 Subject: [PATCH] chore: move to obot-platform org Signed-off-by: Donnie Adams --- .dockerignore | 2 +- .envrc.dev | 2 +- .github/workflows/docker-build.yml | 4 +- .github/workflows/release.yml | 4 +- .gitignore | 2 +- .goreleaser.yaml | 18 +- Dockerfile | 22 +- Makefile | 4 +- README.md | 16 +- apiclient/agent.go | 2 +- apiclient/client.go | 2 +- apiclient/create.go | 2 +- apiclient/credentials.go | 2 +- apiclient/emailreceiver.go | 2 +- apiclient/files.go | 2 +- apiclient/go.mod | 2 +- apiclient/go.sum | 3 +- apiclient/invoke.go | 2 +- apiclient/run.go | 2 +- apiclient/task.go | 2 +- apiclient/thread.go | 2 +- apiclient/toolref.go | 2 +- apiclient/webhook.go | 2 +- apiclient/workflow.go | 2 +- generate.go | 6 +- go.mod | 19 +- go.sum | 18 +- logger/go.mod | 2 +- main.go | 2 +- pkg/aihelper/runprompt.go | 2 +- pkg/alias/get.go | 10 +- pkg/api/authn/anonymous.go | 2 +- pkg/api/authn/noauth.go | 2 +- pkg/api/authz/thread.go | 4 +- pkg/api/errors.go | 2 +- pkg/api/handlers/agent.go | 14 +- pkg/api/handlers/assistants.go | 16 +- pkg/api/handlers/availablemodels.go | 12 +- pkg/api/handlers/credentials.go | 4 +- pkg/api/handlers/cronjob.go | 12 +- pkg/api/handlers/defaultmodelalias.go | 8 +- pkg/api/handlers/emailreceiver.go | 10 +- pkg/api/handlers/files.go | 8 +- pkg/api/handlers/invoke.go | 10 +- pkg/api/handlers/knowledgesource.go | 6 +- pkg/api/handlers/model.go | 10 +- pkg/api/handlers/modelprovider.go | 8 +- pkg/api/handlers/prompt.go | 2 +- pkg/api/handlers/runs.go | 10 +- pkg/api/handlers/tables.go | 6 +- pkg/api/handlers/tasks.go | 18 +- pkg/api/handlers/threads.go | 8 +- pkg/api/handlers/toolreferences.go | 8 +- pkg/api/handlers/version.go | 6 +- pkg/api/handlers/webhooks.go | 10 +- pkg/api/handlers/workflows.go | 18 +- pkg/api/request.go | 8 +- pkg/api/router/router.go | 6 +- pkg/api/server/server.go | 12 +- pkg/availablemodels/availablemodels.go | 2 +- pkg/cli/agents.go | 6 +- pkg/cli/create.go | 8 +- pkg/cli/credentials.go | 6 +- pkg/cli/credentials_delete.go | 6 +- pkg/cli/edit.go | 8 +- pkg/cli/edit/edit.go | 2 +- pkg/cli/emailreceiver.go | 4 +- pkg/cli/events/events.go | 4 +- pkg/cli/events/printer.go | 8 +- pkg/cli/internal/token.go | 8 +- pkg/cli/invoke.go | 6 +- pkg/cli/invokeclient/input.go | 6 +- pkg/cli/invokeclient/invoke.go | 8 +- pkg/cli/rm.go | 4 +- pkg/cli/root.go | 18 +- pkg/cli/run_debug.go | 2 +- pkg/cli/run_print.go | 4 +- pkg/cli/runs.go | 6 +- pkg/cli/server.go | 4 +- pkg/cli/threadprint.go | 6 +- pkg/cli/threads.go | 6 +- pkg/cli/tools.go | 6 +- pkg/cli/tools_register.go | 4 +- pkg/cli/tools_unregister.go | 4 +- pkg/cli/tools_update.go | 2 +- pkg/cli/update.go | 6 +- pkg/cli/version.go | 2 +- pkg/cli/webhooks.go | 4 +- pkg/cli/workflow_auth.go | 4 +- pkg/cli/workflows.go | 6 +- pkg/controller/controller.go | 10 +- pkg/controller/data/data.go | 2 +- pkg/controller/handlers/agents/agents.go | 12 +- pkg/controller/handlers/alias/alias.go | 12 +- pkg/controller/handlers/cleanup/cleanup.go | 8 +- pkg/controller/handlers/cronjob/cronjob.go | 10 +- .../handlers/knowledgefile/knowledgefile.go | 12 +- .../handlers/knowledgeset/knowledgeset.go | 16 +- .../knowledgesource/knowledgesource.go | 20 +- .../handlers/knowledgesource/metadata.go | 2 +- .../handlers/knowledgesource/reschedule.go | 6 +- .../handlers/oauthapp/oauthapplogin.go | 12 +- pkg/controller/handlers/runs/runs.go | 6 +- pkg/controller/handlers/threads/threads.go | 12 +- .../handlers/toolreference/toolreference.go | 24 +- pkg/controller/handlers/webhook/webhook.go | 6 +- pkg/controller/handlers/workflow/files.go | 10 +- pkg/controller/handlers/workflow/ids.go | 4 +- pkg/controller/handlers/workflow/oauth.go | 8 +- pkg/controller/handlers/workflow/workflow.go | 4 +- .../workflowexecution/workflowexecution.go | 14 +- pkg/controller/handlers/workflowstep/if.go | 8 +- .../handlers/workflowstep/invoke.go | 10 +- .../handlers/workflowstep/subflow.go | 16 +- pkg/controller/handlers/workflowstep/while.go | 8 +- .../handlers/workflowstep/workflowstep.go | 12 +- .../handlers/workspace/workspace.go | 6 +- pkg/controller/routes.go | 36 +- pkg/credstores/credstore.go | 2 +- pkg/events/events.go | 18 +- pkg/gateway/client/auth.go | 6 +- pkg/gateway/client/client.go | 2 +- pkg/gateway/client/identity.go | 4 +- pkg/gateway/client/user.go | 4 +- pkg/gateway/db/db.go | 2 +- pkg/gateway/log/log.go | 2 +- pkg/gateway/server/authprovider.go | 10 +- pkg/gateway/server/dispatcher/dispatcher.go | 12 +- pkg/gateway/server/llmproxy.go | 8 +- pkg/gateway/server/middleware.go | 6 +- pkg/gateway/server/oauth.go | 6 +- pkg/gateway/server/oauth_apps.go | 20 +- pkg/gateway/server/router.go | 4 +- pkg/gateway/server/server.go | 12 +- pkg/gateway/server/token.go | 10 +- pkg/gateway/server/tokenreview.go | 2 +- pkg/gateway/server/user.go | 6 +- pkg/gateway/types/oauth_apps.go | 2 +- pkg/gateway/types/providers.go | 2 +- pkg/gateway/types/users.go | 2 +- pkg/invoke/invoker.go | 58 +- pkg/invoke/step.go | 8 +- pkg/invoke/system.go | 2 +- pkg/invoke/workflow.go | 12 +- pkg/jwt/jwt.go | 14 +- pkg/mvl/redirect.go | 2 +- pkg/proxy/proxy.go | 4 +- pkg/render/render.go | 6 +- pkg/render/workflow.go | 8 +- pkg/server/server.go | 8 +- pkg/services/config.go | 58 +- pkg/smtp/smtp.go | 8 +- pkg/storage/apis/otto.otto8.ai/v1/agent.go | 4 +- pkg/storage/apis/otto.otto8.ai/v1/cronjob.go | 6 +- .../otto.otto8.ai/v1/defaultmodelalias.go | 2 +- .../apis/otto.otto8.ai/v1/emailaddress.go | 6 +- pkg/storage/apis/otto.otto8.ai/v1/file.go | 4 +- .../apis/otto.otto8.ai/v1/knowledgesource.go | 2 +- pkg/storage/apis/otto.otto8.ai/v1/model.go | 4 +- pkg/storage/apis/otto.otto8.ai/v1/oauthapp.go | 6 +- pkg/storage/apis/otto.otto8.ai/v1/run.go | 2 +- pkg/storage/apis/otto.otto8.ai/v1/scheme.go | 4 +- pkg/storage/apis/otto.otto8.ai/v1/thread.go | 2 +- pkg/storage/apis/otto.otto8.ai/v1/time.go | 2 +- .../apis/otto.otto8.ai/v1/toolreference.go | 4 +- pkg/storage/apis/otto.otto8.ai/v1/webhook.go | 6 +- pkg/storage/apis/otto.otto8.ai/v1/workflow.go | 4 +- .../otto.otto8.ai/v1/workflowexecution.go | 4 +- .../apis/otto.otto8.ai/v1/workflowstep.go | 4 +- .../apis/otto.otto8.ai/v1/workspace.go | 2 +- .../otto.otto8.ai/v1/zz_generated.deepcopy.go | 2 +- pkg/storage/authn/authn.go | 2 +- .../openapi/generated/openapi_generated.go | 1258 ++++++++--------- .../registry/apigroups/agent/apigroup.go | 12 +- pkg/storage/registry/generic/store.go | 10 +- pkg/storage/scheme/scheme.go | 4 +- pkg/storage/server.go | 14 +- pkg/storage/services/config.go | 12 +- pkg/storage/tables/converter.go | 2 +- pkg/system/bin.go | 2 +- pkg/system/tools.go | 2 +- pkg/version/version.go | 2 +- pkg/webhook/webhook.go | 4 +- run.sh | 18 +- tools/package-tools.sh | 18 +- tools/vendor.go | 2 +- .../model-providers/ModelProviderForm.tsx | 10 +- .../components/model-providers/constants.ts | 20 +- ui/user/src/routes/+page.svelte | 2 +- 189 files changed, 1339 insertions(+), 1335 deletions(-) diff --git a/.dockerignore b/.dockerignore index 1a5342e3..285a3183 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,4 +1,4 @@ **/node_modules/ otto8-tools/ .local/ -acorn-tools/ +obot-tools/ diff --git a/.envrc.dev b/.envrc.dev index 30686ed5..ed863c2e 100644 --- a/.envrc.dev +++ b/.envrc.dev @@ -1,3 +1,3 @@ export KUBECONFIG=$(pwd)/tools/devmode-kubeconfig -export ACORN_DEV_MODE=true +export OBOT_DEV_MODE=true export WORKSPACE_PROVIDER_IGNORE_WORKSPACE_NOT_FOUND=true diff --git a/.github/workflows/docker-build.yml b/.github/workflows/docker-build.yml index f91a5080..904af44c 100644 --- a/.github/workflows/docker-build.yml +++ b/.github/workflows/docker-build.yml @@ -50,7 +50,7 @@ jobs: push: true tags: | ghcr.io/${{ github.repository }}:${{ github.ref_name }} - ${{ github.ref_type == 'tag' && !contains(github.ref_name, '-rc') && format('docker.io/acorn/{0}:{1}', github.event.repository.name, github.ref_name) || '' }} + ${{ github.ref_type == 'tag' && !contains(github.ref_name, '-rc') && format('docker.io/obot/{0}:{1}', github.event.repository.name, github.ref_name) || '' }} platforms: linux/amd64,linux/arm64 - name: Setup crane @@ -60,7 +60,7 @@ jobs: if: ${{ github.ref_type == 'tag' && !contains(github.ref_name, '-rc') }} run: | crane tag ghcr.io/${{ github.repository }}:${{ github.ref_name }} latest - crane tag docker.io/acorn/${{ github.event.repository.name }}:${{ github.ref_name }} latest + crane tag docker.io/obot/${{ github.event.repository.name }}:${{ github.ref_name }} latest - name: Deploy to Test Render if: ${{ env.DEPLOY_TO_TEST == 'true' }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 274d200b..b9865ed8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -41,5 +41,5 @@ jobs: Invoke-WebRequest -Uri 'https://aka.ms/wingetcreate/latest' -OutFile 'wingetcreate.exe' - name: Create WinGet Package Update Pull Request run: | - $url = "${{ github.server_url }}/${{ github.repository }}/releases/download/${{ github.ref_name }}/acorn_${{ github.ref_name }}_windows_amd64.zip" - ./wingetcreate.exe update --submit --token "${{ secrets.WINGET_GH_TOKEN }}" --urls $url --version "${{ github.ref_name }}" acorn-io.acorn \ No newline at end of file + $url = "${{ github.server_url }}/${{ github.repository }}/releases/download/${{ github.ref_name }}/obot_${{ github.ref_name }}_windows_amd64.zip" + ./wingetcreate.exe update --submit --token "${{ secrets.WINGET_GH_TOKEN }}" --urls $url --version "${{ github.ref_name }}" obot-platform.obot \ No newline at end of file diff --git a/.gitignore b/.gitignore index 7eebf032..df9b22a3 100644 --- a/.gitignore +++ b/.gitignore @@ -42,6 +42,6 @@ vendor/ Thumbs.db # Ignore local DB files -acorn*.db* +obot*.db* diff --git a/.goreleaser.yaml b/.goreleaser.yaml index 6ede2545..8aed5b71 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -1,6 +1,6 @@ version: 2 -project_name: "acorn" +project_name: "obot" builds: - id: build @@ -13,7 +13,7 @@ builds: - amd64 - arm64 ldflags: - - -X "github.com/acorn-io/acorn/pkg/version.Tag=v{{ .Version }}" + - -X "github.com/obot-platform/obot/pkg/version.Tag=v{{ .Version }}" archives: - format: tar.gz @@ -24,20 +24,20 @@ archives: release: github: - owner: "acorn-io" - name: "acorn" + owner: "obot-platform" + name: "obot" make_latest: false prerelease: auto brews: - - name: acorn - description: "Acorn CLI" + - name: obot + description: "Obot CLI" install: | - bin.install "acorn" - homepage: "https://github.com/acorn-io/acorn" + bin.install "obot" + homepage: "https://github.com/obot-platform/obot" skip_upload: false directory: "Formula" repository: - owner: acorn-io + owner: obot-platform name: homebrew-tap token: "{{ .Env.TAP_GITHUB_TOKEN }}" diff --git a/Dockerfile b/Dockerfile index 94da4409..38d4264b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,9 +32,9 @@ RUN git clone --branch v0.8.0 https://github.com/pgvector/pgvector.git && \ rm -rf pgvector FROM cgr.dev/chainguard/postgres:latest-dev AS final -ENV POSTGRES_USER=acorn -ENV POSTGRES_PASSWORD=acorn -ENV POSTGRES_DB=acorn +ENV POSTGRES_USER=obot +ENV POSTGRES_PASSWORD=obot +ENV POSTGRES_DB=obot ENV PGDATA=/data/postgresql COPY --from=build-pgvector /usr/lib/postgresql17/vector.so /usr/lib/postgresql17/ @@ -49,19 +49,19 @@ RUN mkdir /run/sshd && /usr/sbin/sshd COPY encryption.yaml / COPY --chmod=0755 run.sh /bin/run.sh -COPY --link --from=tools /app/acorn-tools /acorn-tools -COPY --from=bin /app/bin/acorn /bin/ +COPY --link --from=tools /app/obot-tools /obot-tools +COPY --from=bin /app/bin/obot /bin/ EXPOSE 22 # libreoffice executables -ENV PATH=/acorn-tools/venv/bin:$PATH:/usr/lib/libreoffice/program +ENV PATH=/obot-tools/venv/bin:$PATH:/usr/lib/libreoffice/program ENV HOME=/data ENV XDG_CACHE_HOME=/data/cache -ENV GPTSCRIPT_SYSTEM_TOOLS_DIR=/acorn-tools/ -ENV ACORN_SERVER_WORKSPACE_TOOL=/acorn-tools/workspace-provider -ENV ACORN_SERVER_DATASETS_TOOL=/acorn-tools/datasets -ENV ACORN_SERVER_TOOL_REGISTRY=/acorn-tools -ENV ACORN_SERVER_ENCRYPTION_CONFIG_FILE=/encryption.yaml +ENV GPTSCRIPT_SYSTEM_TOOLS_DIR=/obot-tools/ +ENV OBOT_SERVER_WORKSPACE_TOOL=/obot-tools/workspace-provider +ENV OBOT_SERVER_DATASETS_TOOL=/obot-tools/datasets +ENV OBOT_SERVER_TOOL_REGISTRY=/obot-tools +ENV OBOT_SERVER_ENCRYPTION_CONFIG_FILE=/encryption.yaml ENV GOMEMLIMIT=1GiB ENV BAAAH_THREADINESS=20 ENV TERM=vt100 diff --git a/Makefile b/Makefile index e97523f2..312e0419 100644 --- a/Makefile +++ b/Makefile @@ -29,10 +29,10 @@ serve-docs: # Build the project -GIT_TAG := $(shell git describe --tags --exact-match 2>/dev/null | xargs -I {} echo -X 'github.com/acorn-io/acorn/pkg/version.Tag={}') +GIT_TAG := $(shell git describe --tags --exact-match 2>/dev/null | xargs -I {} echo -X 'github.com/obot-platform/obot/pkg/version.Tag={}') GO_LD_FLAGS := "-s -w $(GIT_TAG)" build: - go build -ldflags=$(GO_LD_FLAGS) -o bin/acorn . + go build -ldflags=$(GO_LD_FLAGS) -o bin/obot . dev: ./tools/dev.sh $(ARGS) diff --git a/README.md b/README.md index 6133039d..e4e50c7f 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# Acorn +# Obot -Acorn is an open source AI agent platform. Key features include: +Obot is an open source AI agent platform. Key features include: - Ability to build agents to support a variety of usecases including copilots, assistants, and autonomous agentic workflows. - Integration with leading LLM providers - Built-in RAG for your data @@ -8,18 +8,18 @@ Acorn is an open source AI agent platform. Key features include: - OAuth 2.0 authentication ### Getting Started -Launch Acorn via docker: +Launch Obot via docker: ```bash -docker run -d -p 8080:8080 -e "OPENAI_API_KEY=" ghcr.io/acorn-io/acorn:latest +docker run -d -p 8080:8080 -e "OPENAI_API_KEY=" ghcr.io/obot-platform/obot:latest ``` Then visit http://localhost:8080. -The `acorn` CLI can be installed via brew on MacOS or Linux: +The `obot` CLI can be installed via brew on MacOS or Linux: ```bash -brew tap acorn-io/tap -brew install acorn +brew tap obot-platform/tap +brew install obot ``` -or by downloading the binary for your platform from our [latest release](https://github.com/acorn-io/acorn/releases/latest). +or by downloading the binary for your platform from our [latest release](https://github.com/obot-platform/obot/releases/latest). ### Next Steps diff --git a/apiclient/agent.go b/apiclient/agent.go index 07cff00d..85a8e121 100644 --- a/apiclient/agent.go +++ b/apiclient/agent.go @@ -6,7 +6,7 @@ import ( "net/http" "sort" - "github.com/acorn-io/acorn/apiclient/types" + "github.com/obot-platform/obot/apiclient/types" ) func (c *Client) UpdateAgent(ctx context.Context, id string, manifest types.AgentManifest) (*types.Agent, error) { diff --git a/apiclient/client.go b/apiclient/client.go index 9c9bbc18..3e289dcf 100644 --- a/apiclient/client.go +++ b/apiclient/client.go @@ -12,8 +12,8 @@ import ( "strings" "unicode/utf8" - "github.com/acorn-io/acorn/apiclient/types" "github.com/acorn-io/acorn/logger" + "github.com/obot-platform/obot/apiclient/types" ) var log = logger.Package() diff --git a/apiclient/create.go b/apiclient/create.go index f191c0fb..26690efb 100644 --- a/apiclient/create.go +++ b/apiclient/create.go @@ -6,7 +6,7 @@ import ( "io" "net/http" - "github.com/acorn-io/acorn/apiclient/types" + "github.com/obot-platform/obot/apiclient/types" ) func (c *Client) getGeneric(ctx context.Context, typeName, ref string) (string, error) { diff --git a/apiclient/credentials.go b/apiclient/credentials.go index 363313eb..9ce40d23 100644 --- a/apiclient/credentials.go +++ b/apiclient/credentials.go @@ -5,7 +5,7 @@ import ( "net/http" "net/url" - "github.com/acorn-io/acorn/apiclient/types" + "github.com/obot-platform/obot/apiclient/types" ) type ListCredentialsOptions struct { diff --git a/apiclient/emailreceiver.go b/apiclient/emailreceiver.go index b6f1e4c7..7f4342fa 100644 --- a/apiclient/emailreceiver.go +++ b/apiclient/emailreceiver.go @@ -6,7 +6,7 @@ import ( "net/http" "sort" - "github.com/acorn-io/acorn/apiclient/types" + "github.com/obot-platform/obot/apiclient/types" ) func (c *Client) GetEmailReceiver(ctx context.Context, id string) (*types.EmailReceiver, error) { diff --git a/apiclient/files.go b/apiclient/files.go index 38fdb929..ceac6729 100644 --- a/apiclient/files.go +++ b/apiclient/files.go @@ -5,7 +5,7 @@ import ( "fmt" "net/http" - "github.com/acorn-io/acorn/apiclient/types" + "github.com/obot-platform/obot/apiclient/types" ) type ListFileOptions struct { diff --git a/apiclient/go.mod b/apiclient/go.mod index 1cf41279..0d7fd1f2 100644 --- a/apiclient/go.mod +++ b/apiclient/go.mod @@ -1,4 +1,4 @@ -module github.com/acorn-io/acorn/apiclient +module github.com/obot-platform/obot/apiclient go 1.23.1 diff --git a/apiclient/go.sum b/apiclient/go.sum index 285249f0..14cc51fc 100644 --- a/apiclient/go.sum +++ b/apiclient/go.sum @@ -1,4 +1,3 @@ -github.com/acorn-io/acorn/logger v0.0.0-20241216130324-9a09554e0785 h1:nOyU2uk23fpVxfUh/s+5syXbvqpE2tHPl5chkUEFbg4= github.com/acorn-io/acorn/logger v0.0.0-20241216130324-9a09554e0785/go.mod h1:p1+KVqMIAMjKoQoYiNwG9uNlkdCP3pw85lFLI/+tsYE= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= @@ -26,6 +25,8 @@ github.com/mailru/easyjson v0.7.7 h1:UGYAvKxe3sBsEDzO8ZeWOSlIQfWFlxbzLZe7hwFURr0 github.com/mailru/easyjson v0.7.7/go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJJLY9Nlc= github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 h1:RWengNIwukTxcDr9M+97sNutRR1RKhG96O6jWumTTnw= github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826/go.mod h1:TaXosZuwdSHYgviHp1DAtfrULt5eUgsSMsZf+YrPgl8= +github.com/acorn-io/acorn/logger v0.0.0-20241216130324-9a09554e0785 h1:nOyU2uk23fpVxfUh/s+5syXbvqpE2tHPl5chkUEFbg4= +github.com/acorn-io/acorn/logger v0.0.0-20241216130324-9a09554e0785/go.mod h1:p1+KVqMIAMjKoQoYiNwG9uNlkdCP3pw85lFLI/+tsYE= github.com/perimeterx/marshmallow v1.1.5 h1:a2LALqQ1BlHM8PZblsDdidgv1mWi1DgC2UmX50IvK2s= github.com/perimeterx/marshmallow v1.1.5/go.mod h1:dsXbUu8CRzfYP5a87xpp0xq9S3u0Vchtcl8we9tYaXw= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= diff --git a/apiclient/invoke.go b/apiclient/invoke.go index b0e62b31..789365d8 100644 --- a/apiclient/invoke.go +++ b/apiclient/invoke.go @@ -7,7 +7,7 @@ import ( "io" "net/http" - "github.com/acorn-io/acorn/apiclient/types" + "github.com/obot-platform/obot/apiclient/types" ) type InvokeOptions struct { diff --git a/apiclient/run.go b/apiclient/run.go index aa5384df..9d68570b 100644 --- a/apiclient/run.go +++ b/apiclient/run.go @@ -6,7 +6,7 @@ import ( "net/http" "sort" - "github.com/acorn-io/acorn/apiclient/types" + "github.com/obot-platform/obot/apiclient/types" ) type ListRunsOptions struct { diff --git a/apiclient/task.go b/apiclient/task.go index b4f63253..d67779df 100644 --- a/apiclient/task.go +++ b/apiclient/task.go @@ -6,7 +6,7 @@ import ( "net/http" "sort" - "github.com/acorn-io/acorn/apiclient/types" + "github.com/obot-platform/obot/apiclient/types" ) type ListTasksOptions struct { diff --git a/apiclient/thread.go b/apiclient/thread.go index fc07665b..2e3a4595 100644 --- a/apiclient/thread.go +++ b/apiclient/thread.go @@ -6,7 +6,7 @@ import ( "net/http" "sort" - "github.com/acorn-io/acorn/apiclient/types" + "github.com/obot-platform/obot/apiclient/types" ) func (c *Client) DeleteThread(ctx context.Context, id string) error { diff --git a/apiclient/toolref.go b/apiclient/toolref.go index 0666a5d9..28e47369 100644 --- a/apiclient/toolref.go +++ b/apiclient/toolref.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/acorn-io/acorn/apiclient/types" + "github.com/obot-platform/obot/apiclient/types" ) type ListToolReferencesOptions struct { diff --git a/apiclient/webhook.go b/apiclient/webhook.go index 8977e9eb..ffc3f662 100644 --- a/apiclient/webhook.go +++ b/apiclient/webhook.go @@ -6,7 +6,7 @@ import ( "net/http" "sort" - "github.com/acorn-io/acorn/apiclient/types" + "github.com/obot-platform/obot/apiclient/types" ) func (c *Client) GetWebhook(ctx context.Context, id string) (result *types.Webhook, _ error) { diff --git a/apiclient/workflow.go b/apiclient/workflow.go index 3558bf05..806d8e25 100644 --- a/apiclient/workflow.go +++ b/apiclient/workflow.go @@ -6,7 +6,7 @@ import ( "net/http" "sort" - "github.com/acorn-io/acorn/apiclient/types" + "github.com/obot-platform/obot/apiclient/types" ) func (c *Client) UpdateWorkflow(ctx context.Context, id string, manifest types.WorkflowManifest) (*types.Workflow, error) { diff --git a/generate.go b/generate.go index 8b1c744b..9ea52131 100644 --- a/generate.go +++ b/generate.go @@ -1,5 +1,5 @@ -//go:generate go run github.com/acorn-io/nah/cmd/deepcopy ./pkg/storage/apis/otto.otto8.ai/v1/ -//go:generate go run github.com/acorn-io/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/acorn-io/acorn/pkg/storage/openapi/generated github.com/acorn-io/acorn/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/acorn-io/acorn/apiclient/types +//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 ./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 package main diff --git a/go.mod b/go.mod index d7c5f9b4..ae3c9728 100644 --- a/go.mod +++ b/go.mod @@ -1,19 +1,14 @@ -module github.com/acorn-io/acorn +module github.com/obot-platform/obot go 1.23.2 replace ( - github.com/acorn-io/acorn/apiclient => ./apiclient - github.com/acorn-io/acorn/logger => ./logger - github.com/oauth2-proxy/oauth2-proxy/v7 => github.com/acorn-io/oauth2-proxy/v7 v7.0.0-20241008204315-265dabe17f43 + github.com/oauth2-proxy/oauth2-proxy/v7 => github.com/obot-platform/oauth2-proxy/v7 v7.0.0-20241008204315-265dabe17f43 + github.com/obot-platform/obot/apiclient => ./apiclient + github.com/obot-platform/obot/logger => ./logger ) require ( - github.com/acorn-io/acorn/apiclient v0.0.0-00010101000000-000000000000 - github.com/acorn-io/acorn/logger v0.0.0-20241216130324-9a09554e0785 - github.com/acorn-io/kinm v0.0.0-20241216114326-54409c6274c9 - github.com/acorn-io/nah v0.0.0-20241216115213-e6506200369b - github.com/acorn-io/namegenerator v0.0.0-20220915160418-9e3d5a0ffe78 github.com/adrg/xdg v0.5.3 github.com/dustin/go-humanize v1.0.1 github.com/fatih/color v1.18.0 @@ -26,6 +21,11 @@ require ( github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de github.com/mhale/smtpd v0.8.3 github.com/oauth2-proxy/oauth2-proxy/v7 v7.0.0-00010101000000-000000000000 + github.com/obot-platform/kinm v0.0.0-20241217120617-52c566a38b04 + github.com/obot-platform/nah v0.0.0-20241217120500-e9169e4a999f + github.com/obot-platform/namegenerator v0.0.0-20241217121223-fc58bdb7dca2 + github.com/obot-platform/obot/apiclient v0.0.0-00010101000000-000000000000 + github.com/obot-platform/obot/logger v0.0.0-20241216130324-9a09554e0785 github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c github.com/pterm/pterm v0.12.79 github.com/robfig/cron/v3 v3.0.1 @@ -64,6 +64,7 @@ require ( github.com/NYTimes/gziphandler v1.1.1 // indirect github.com/ProtonMail/go-crypto v1.0.0 // indirect github.com/a8m/envsubst v1.4.2 // indirect + github.com/acorn-io/acorn/logger v0.0.0-20241216130324-9a09554e0785 // indirect github.com/alecthomas/chroma/v2 v2.14.0 // indirect github.com/andybalholm/brotli v1.1.1 // indirect github.com/antlr4-go/antlr/v4 v4.13.0 // indirect diff --git a/go.sum b/go.sum index 962f5480..8f652d14 100644 --- a/go.sum +++ b/go.sum @@ -63,14 +63,8 @@ github.com/ProtonMail/go-crypto v1.0.0 h1:LRuvITjQWX+WIfr930YHG2HNfjR1uOfyf5vE0k github.com/ProtonMail/go-crypto v1.0.0/go.mod h1:EjAoLdwvbIOoOQr3ihjnSoLZRtE8azugULFRteWMNc0= github.com/a8m/envsubst v1.4.2 h1:4yWIHXOLEJHQEFd4UjrWDrYeYlV7ncFWJOCBRLOZHQg= github.com/a8m/envsubst v1.4.2/go.mod h1:MVUTQNGQ3tsjOOtKCNd+fl8RzhsXcDvvAEzkhGtlsbY= -github.com/acorn-io/kinm v0.0.0-20241216114326-54409c6274c9 h1:D6ix6cYaJd3PkecrZ2lrFgKVh9Y1Kf/EoMcvhxS0p1g= -github.com/acorn-io/kinm v0.0.0-20241216114326-54409c6274c9/go.mod h1:YnPbuK3hwtklDdfHwTYIYyQJ9o99v0iVfH0QRbMwVjk= -github.com/acorn-io/nah v0.0.0-20241216115213-e6506200369b h1:pk/MwKWLDFKIXRz8DaF2q1jRtNJrKGa/nKlvwyDllD8= -github.com/acorn-io/nah v0.0.0-20241216115213-e6506200369b/go.mod h1:msiAG3DYDrXylQnlCzUtFnRaD+SddoVKkATexcy86u0= -github.com/acorn-io/namegenerator v0.0.0-20220915160418-9e3d5a0ffe78 h1:5zs9L/CXNkuTdJSbhFWczAorbmx67nqlqswx5CQi7XI= -github.com/acorn-io/namegenerator v0.0.0-20220915160418-9e3d5a0ffe78/go.mod h1:/5647+1/L7m7Aq7upTLtfLznTLYttURzH7Y23LKrW0M= -github.com/acorn-io/oauth2-proxy/v7 v7.0.0-20241008204315-265dabe17f43 h1:5kFvaFvH46CoJP+MxiM79wuV2K97CGgQ+HpoRdHsNZE= -github.com/acorn-io/oauth2-proxy/v7 v7.0.0-20241008204315-265dabe17f43/go.mod h1:lxQ1wbphpjECcCoy8gfsrDHQVenNKgm+p6Oskdkl97g= +github.com/acorn-io/acorn/logger v0.0.0-20241216130324-9a09554e0785 h1:nOyU2uk23fpVxfUh/s+5syXbvqpE2tHPl5chkUEFbg4= +github.com/acorn-io/acorn/logger v0.0.0-20241216130324-9a09554e0785/go.mod h1:p1+KVqMIAMjKoQoYiNwG9uNlkdCP3pw85lFLI/+tsYE= github.com/adrg/xdg v0.5.3 h1:xRnxJXne7+oWDatRhR1JLnvuccuIeCoBu2rtuLqQB78= github.com/adrg/xdg v0.5.3/go.mod h1:nlTsY+NNiCBGCK2tpm09vRqfVzrc2fLmXGpBLF0zlTQ= github.com/alecthomas/assert/v2 v2.7.0 h1:QtqSACNS3tF7oasA8CU6A6sXZSBDqnm7RfpLl9bZqbE= @@ -513,6 +507,14 @@ github.com/nxadm/tail v1.4.11 h1:8feyoE3OzPrcshW5/MJ4sGESc5cqmGkGCWlco4l0bqY= github.com/nxadm/tail v1.4.11/go.mod h1:OTaG3NK980DZzxbRq6lEuzgU+mug70nY11sMd4JXXHc= github.com/oauth2-proxy/mockoidc v0.0.0-20240214162133-caebfff84d25 h1:9bCMuD3TcnjeqjPT2gSlha4asp8NvgcFRYExCaikCxk= github.com/oauth2-proxy/mockoidc v0.0.0-20240214162133-caebfff84d25/go.mod h1:eDjgYHYDJbPLBLsyZ6qRaugP0mX8vePOhZ5id1fdzJw= +github.com/obot-platform/kinm v0.0.0-20241217120617-52c566a38b04 h1:bXfMrHhTtosZgqt+IwZ/yGq8t20MnI7RYoS6bVYYtsU= +github.com/obot-platform/kinm v0.0.0-20241217120617-52c566a38b04/go.mod h1:RzrH0geIlbiTHDGZ8bpCk5k1hwdU9uu3l4zJn9n0pZU= +github.com/obot-platform/nah v0.0.0-20241217120500-e9169e4a999f h1:yyexIHgaPtNrfaPLxDx+xbnibJTKKJK05jDDlIqXC04= +github.com/obot-platform/nah v0.0.0-20241217120500-e9169e4a999f/go.mod h1:KG1jLO9FeYvCPGI0iDqe5oqDqOFLd3/dt/iwuMianmI= +github.com/obot-platform/namegenerator v0.0.0-20241217121223-fc58bdb7dca2 h1:jiyBM/TYxU6UNVS9ff8Y8n55DOKDYohKkIZjfHpjfTY= +github.com/obot-platform/namegenerator v0.0.0-20241217121223-fc58bdb7dca2/go.mod h1:isbKX6EfvvG/ojjFB2ZLyz27+2xoG3yRmpTSE+ytWEs= +github.com/obot-platform/oauth2-proxy/v7 v7.0.0-20241008204315-265dabe17f43 h1:mlwIf3/uOo0ISweKuyFHhvPzSut4oQeWWpTkzsmTPgE= +github.com/obot-platform/oauth2-proxy/v7 v7.0.0-20241008204315-265dabe17f43/go.mod h1:lxQ1wbphpjECcCoy8gfsrDHQVenNKgm+p6Oskdkl97g= github.com/ohler55/ojg v1.24.1 h1:PaVLelrNgT5/0ppPaUtey54tOVp245z33fkhL2jljjY= github.com/ohler55/ojg v1.24.1/go.mod h1:gQhDVpQLqrmnd2eqGAvJtn+NfKoYJbe/A4Sj3/Vro4o= github.com/olekukonko/tablewriter v0.0.6-0.20230925090304-df64c4bbad77 h1:3bMMZ1f+GPXFQ1uNaYbO/uECWvSfqEA+ZEXn1rFAT88= diff --git a/logger/go.mod b/logger/go.mod index b198bb15..eb8ce9a7 100644 --- a/logger/go.mod +++ b/logger/go.mod @@ -1,4 +1,4 @@ -module github.com/acorn-io/acorn/logger +module github.com/obot-platform/obot/logger go 1.23.1 diff --git a/main.go b/main.go index 1aeb6ad5..35233aab 100644 --- a/main.go +++ b/main.go @@ -3,9 +3,9 @@ package main import ( "os" - "github.com/acorn-io/acorn/pkg/cli" "github.com/gptscript-ai/cmd" "github.com/gptscript-ai/gptscript/pkg/embedded" + "github.com/obot-platform/obot/pkg/cli" ) func main() { diff --git a/pkg/aihelper/runprompt.go b/pkg/aihelper/runprompt.go index d632cc3b..b5960a1e 100644 --- a/pkg/aihelper/runprompt.go +++ b/pkg/aihelper/runprompt.go @@ -4,8 +4,8 @@ import ( "context" "encoding/json" - "github.com/acorn-io/nah/pkg/typed" "github.com/gptscript-ai/go-gptscript" + "github.com/obot-platform/nah/pkg/typed" ) type AIHelper struct { diff --git a/pkg/alias/get.go b/pkg/alias/get.go index a9fa61b5..774fb48e 100644 --- a/pkg/alias/get.go +++ b/pkg/alias/get.go @@ -5,11 +5,11 @@ import ( "errors" "fmt" - "github.com/acorn-io/acorn/pkg/hash" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" - "github.com/acorn-io/acorn/pkg/system" - "github.com/acorn-io/nah/pkg/name" - "github.com/acorn-io/nah/pkg/router" + "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" + "github.com/obot-platform/obot/pkg/system" apierrors "k8s.io/apimachinery/pkg/api/errors" "k8s.io/apimachinery/pkg/runtime" "k8s.io/apimachinery/pkg/runtime/schema" diff --git a/pkg/api/authn/anonymous.go b/pkg/api/authn/anonymous.go index ca9281d9..6e277add 100644 --- a/pkg/api/authn/anonymous.go +++ b/pkg/api/authn/anonymous.go @@ -3,7 +3,7 @@ package authn import ( "net/http" - "github.com/acorn-io/acorn/pkg/api/authz" + "github.com/obot-platform/obot/pkg/api/authz" "k8s.io/apiserver/pkg/authentication/authenticator" "k8s.io/apiserver/pkg/authentication/user" ) diff --git a/pkg/api/authn/noauth.go b/pkg/api/authn/noauth.go index 962798bc..d9c3163d 100644 --- a/pkg/api/authn/noauth.go +++ b/pkg/api/authn/noauth.go @@ -3,7 +3,7 @@ package authn import ( "net/http" - "github.com/acorn-io/acorn/pkg/api/authz" + "github.com/obot-platform/obot/pkg/api/authz" "k8s.io/apiserver/pkg/authentication/authenticator" "k8s.io/apiserver/pkg/authentication/user" ) diff --git a/pkg/api/authz/thread.go b/pkg/api/authz/thread.go index bd79846c..3ef0278f 100644 --- a/pkg/api/authz/thread.go +++ b/pkg/api/authz/thread.go @@ -9,8 +9,8 @@ import ( ) func authorizeThread(req *http.Request, user user.Info) bool { - thread := types.FirstSet(user.GetExtra()["acorn:threadID"]...) - agent := types.FirstSet(user.GetExtra()["acorn:agentID"]...) + thread := types.FirstSet(user.GetExtra()["obot:threadID"]...) + agent := types.FirstSet(user.GetExtra()["obot:agentID"]...) if thread == "" || agent == "" { return false } diff --git a/pkg/api/errors.go b/pkg/api/errors.go index 455caf0c..b9ed9534 100644 --- a/pkg/api/errors.go +++ b/pkg/api/errors.go @@ -4,7 +4,7 @@ import ( "errors" "net/http" - "github.com/acorn-io/acorn/apiclient/types" + "github.com/obot-platform/obot/apiclient/types" apierrors "k8s.io/apimachinery/pkg/api/errors" ) diff --git a/pkg/api/handlers/agent.go b/pkg/api/handlers/agent.go index 57cf637a..18d4db11 100644 --- a/pkg/api/handlers/agent.go +++ b/pkg/api/handlers/agent.go @@ -6,14 +6,14 @@ import ( "reflect" "strings" - "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/acorn/pkg/alias" - "github.com/acorn-io/acorn/pkg/api" - "github.com/acorn-io/acorn/pkg/render" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" - "github.com/acorn-io/acorn/pkg/system" - "github.com/acorn-io/acorn/pkg/wait" "github.com/gptscript-ai/go-gptscript" + "github.com/obot-platform/obot/apiclient/types" + "github.com/obot-platform/obot/pkg/alias" + "github.com/obot-platform/obot/pkg/api" + "github.com/obot-platform/obot/pkg/render" + v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + "github.com/obot-platform/obot/pkg/system" + "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/api/handlers/assistants.go b/pkg/api/handlers/assistants.go index b7769f8e..934ac5fd 100644 --- a/pkg/api/handlers/assistants.go +++ b/pkg/api/handlers/assistants.go @@ -7,15 +7,15 @@ import ( "sort" "strings" - "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/acorn/pkg/alias" - "github.com/acorn-io/acorn/pkg/api" - "github.com/acorn-io/acorn/pkg/events" - "github.com/acorn-io/acorn/pkg/invoke" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" - "github.com/acorn-io/acorn/pkg/system" - "github.com/acorn-io/nah/pkg/name" "github.com/gptscript-ai/go-gptscript" + "github.com/obot-platform/nah/pkg/name" + "github.com/obot-platform/obot/apiclient/types" + "github.com/obot-platform/obot/pkg/alias" + "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" + "github.com/obot-platform/obot/pkg/system" apierrors "k8s.io/apimachinery/pkg/api/errors" kclient "sigs.k8s.io/controller-runtime/pkg/client" ) diff --git a/pkg/api/handlers/availablemodels.go b/pkg/api/handlers/availablemodels.go index fbbfee5b..d8324eec 100644 --- a/pkg/api/handlers/availablemodels.go +++ b/pkg/api/handlers/availablemodels.go @@ -4,14 +4,14 @@ import ( "fmt" "strings" - "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/acorn/pkg/api" - "github.com/acorn-io/acorn/pkg/availablemodels" - "github.com/acorn-io/acorn/pkg/gateway/server/dispatcher" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" - "github.com/acorn-io/acorn/pkg/system" openai "github.com/gptscript-ai/chat-completion-client" "github.com/gptscript-ai/go-gptscript" + "github.com/obot-platform/obot/apiclient/types" + "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" + "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/credentials.go b/pkg/api/handlers/credentials.go index 39c7a84b..ce8e1e52 100644 --- a/pkg/api/handlers/credentials.go +++ b/pkg/api/handlers/credentials.go @@ -5,9 +5,9 @@ import ( "maps" "slices" - "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/acorn/pkg/api" "github.com/gptscript-ai/go-gptscript" + "github.com/obot-platform/obot/apiclient/types" + "github.com/obot-platform/obot/pkg/api" ) func ListCredentials(req api.Context) error { diff --git a/pkg/api/handlers/cronjob.go b/pkg/api/handlers/cronjob.go index f9da590f..892c3577 100644 --- a/pkg/api/handlers/cronjob.go +++ b/pkg/api/handlers/cronjob.go @@ -5,12 +5,12 @@ import ( "net/http" "time" - "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/acorn/pkg/alias" - "github.com/acorn-io/acorn/pkg/api" - "github.com/acorn-io/acorn/pkg/controller/handlers/cronjob" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" - "github.com/acorn-io/acorn/pkg/system" + "github.com/obot-platform/obot/apiclient/types" + "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" + "github.com/obot-platform/obot/pkg/system" "github.com/robfig/cron/v3" apierrors "k8s.io/apimachinery/pkg/api/errors" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" diff --git a/pkg/api/handlers/defaultmodelalias.go b/pkg/api/handlers/defaultmodelalias.go index bcb20436..d485b014 100644 --- a/pkg/api/handlers/defaultmodelalias.go +++ b/pkg/api/handlers/defaultmodelalias.go @@ -1,10 +1,10 @@ package handlers import ( - "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/acorn/pkg/api" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" - "github.com/acorn-io/acorn/pkg/system" + "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" + "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 02b0afee..108606f6 100644 --- a/pkg/api/handlers/emailreceiver.go +++ b/pkg/api/handlers/emailreceiver.go @@ -1,11 +1,11 @@ package handlers import ( - "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/acorn/pkg/alias" - "github.com/acorn-io/acorn/pkg/api" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" - "github.com/acorn-io/acorn/pkg/system" + "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" + "github.com/obot-platform/obot/pkg/system" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" ) diff --git a/pkg/api/handlers/files.go b/pkg/api/handlers/files.go index 32d6504b..e64a4735 100644 --- a/pkg/api/handlers/files.go +++ b/pkg/api/handlers/files.go @@ -8,11 +8,11 @@ import ( "path/filepath" "strings" - "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/acorn/pkg/api" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" - "github.com/acorn-io/acorn/pkg/storage/selectors" "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" + "github.com/obot-platform/obot/pkg/storage/selectors" apierrors "k8s.io/apimachinery/pkg/api/errors" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/fields" diff --git a/pkg/api/handlers/invoke.go b/pkg/api/handlers/invoke.go index 3d44932e..d27c6e47 100644 --- a/pkg/api/handlers/invoke.go +++ b/pkg/api/handlers/invoke.go @@ -1,11 +1,11 @@ package handlers import ( - "github.com/acorn-io/acorn/pkg/alias" - "github.com/acorn-io/acorn/pkg/api" - "github.com/acorn-io/acorn/pkg/invoke" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" - "github.com/acorn-io/acorn/pkg/system" + "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" + "github.com/obot-platform/obot/pkg/system" apierrors "k8s.io/apimachinery/pkg/api/errors" ) diff --git a/pkg/api/handlers/knowledgesource.go b/pkg/api/handlers/knowledgesource.go index 731e5e74..730593a0 100644 --- a/pkg/api/handlers/knowledgesource.go +++ b/pkg/api/handlers/knowledgesource.go @@ -4,9 +4,9 @@ import ( "bytes" "encoding/json" - "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/acorn/pkg/gz" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" + "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" ) func convertKnowledgeSource(agentName string, knowledgeSource v1.KnowledgeSource) types.KnowledgeSource { diff --git a/pkg/api/handlers/model.go b/pkg/api/handlers/model.go index 089b51af..cad4343c 100644 --- a/pkg/api/handlers/model.go +++ b/pkg/api/handlers/model.go @@ -6,11 +6,11 @@ import ( "fmt" "net/http" - "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/acorn/pkg/api" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" - "github.com/acorn-io/acorn/pkg/storage/selectors" - "github.com/acorn-io/acorn/pkg/system" + "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" + "github.com/obot-platform/obot/pkg/storage/selectors" + "github.com/obot-platform/obot/pkg/system" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/fields" kclient "sigs.k8s.io/controller-runtime/pkg/client" diff --git a/pkg/api/handlers/modelprovider.go b/pkg/api/handlers/modelprovider.go index 3996eabf..717ec3d2 100644 --- a/pkg/api/handlers/modelprovider.go +++ b/pkg/api/handlers/modelprovider.go @@ -4,11 +4,11 @@ import ( "fmt" "strings" - "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/acorn/pkg/api" - "github.com/acorn-io/acorn/pkg/gateway/server/dispatcher" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" "github.com/gptscript-ai/go-gptscript" + "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" "k8s.io/apimachinery/pkg/fields" kclient "sigs.k8s.io/controller-runtime/pkg/client" ) diff --git a/pkg/api/handlers/prompt.go b/pkg/api/handlers/prompt.go index 8e67b808..16256e3a 100644 --- a/pkg/api/handlers/prompt.go +++ b/pkg/api/handlers/prompt.go @@ -1,8 +1,8 @@ package handlers import ( - "github.com/acorn-io/acorn/pkg/api" "github.com/gptscript-ai/go-gptscript" + "github.com/obot-platform/obot/pkg/api" ) type PromptHandler struct { diff --git a/pkg/api/handlers/runs.go b/pkg/api/handlers/runs.go index 19083016..bd52c0da 100644 --- a/pkg/api/handlers/runs.go +++ b/pkg/api/handlers/runs.go @@ -1,12 +1,12 @@ package handlers import ( - "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/acorn/pkg/api" - "github.com/acorn-io/acorn/pkg/events" - "github.com/acorn-io/acorn/pkg/gz" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" "github.com/gptscript-ai/go-gptscript" + "github.com/obot-platform/obot/apiclient/types" + "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" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" ) diff --git a/pkg/api/handlers/tables.go b/pkg/api/handlers/tables.go index 36a7b52a..abb62f83 100644 --- a/pkg/api/handlers/tables.go +++ b/pkg/api/handlers/tables.go @@ -5,10 +5,10 @@ import ( "fmt" "regexp" - "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/acorn/pkg/api" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" "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" ) type TableHandler struct { diff --git a/pkg/api/handlers/tasks.go b/pkg/api/handlers/tasks.go index 9f186dcf..cf97162d 100644 --- a/pkg/api/handlers/tasks.go +++ b/pkg/api/handlers/tasks.go @@ -6,15 +6,15 @@ import ( "time" "unicode/utf8" - "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/acorn/pkg/api" - "github.com/acorn-io/acorn/pkg/events" - "github.com/acorn-io/acorn/pkg/invoke" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" - "github.com/acorn-io/acorn/pkg/system" - "github.com/acorn-io/acorn/pkg/wait" - "github.com/acorn-io/nah/pkg/name" - "github.com/acorn-io/nah/pkg/randomtoken" + "github.com/obot-platform/nah/pkg/name" + "github.com/obot-platform/nah/pkg/randomtoken" + "github.com/obot-platform/obot/apiclient/types" + "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" + "github.com/obot-platform/obot/pkg/system" + "github.com/obot-platform/obot/pkg/wait" apierrors "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/api/handlers/threads.go b/pkg/api/handlers/threads.go index 4f1ed061..0dcdc9cc 100644 --- a/pkg/api/handlers/threads.go +++ b/pkg/api/handlers/threads.go @@ -7,11 +7,11 @@ import ( "strconv" "strings" - "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/acorn/pkg/api" - "github.com/acorn-io/acorn/pkg/events" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" "github.com/gptscript-ai/go-gptscript" + "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" 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 be408678..d606404c 100644 --- a/pkg/api/handlers/toolreferences.go +++ b/pkg/api/handlers/toolreferences.go @@ -7,11 +7,11 @@ import ( "strconv" "strings" - "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/acorn/pkg/api" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" - "github.com/acorn-io/nah/pkg/name" "github.com/gptscript-ai/go-gptscript" + "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" apierrors "k8s.io/apimachinery/pkg/api/errors" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" ) diff --git a/pkg/api/handlers/version.go b/pkg/api/handlers/version.go index 2c07031e..c9e7cdb0 100644 --- a/pkg/api/handlers/version.go +++ b/pkg/api/handlers/version.go @@ -3,8 +3,8 @@ package handlers import ( "os" - "github.com/acorn-io/acorn/pkg/api" - "github.com/acorn-io/acorn/pkg/version" + "github.com/obot-platform/obot/pkg/api" + "github.com/obot-platform/obot/pkg/version" "sigs.k8s.io/yaml" ) @@ -24,7 +24,7 @@ func (v *VersionHandler) GetVersion(req api.Context) error { func (v *VersionHandler) getVersionResponse() map[string]string { values := make(map[string]string) - versions := os.Getenv("ACORN_SERVER_VERSIONS") + versions := os.Getenv("OBOT_SERVER_VERSIONS") if versions != "" { if err := yaml.Unmarshal([]byte(versions), &values); err != nil { values["error"] = err.Error() diff --git a/pkg/api/handlers/webhooks.go b/pkg/api/handlers/webhooks.go index e17c807d..c012fb71 100644 --- a/pkg/api/handlers/webhooks.go +++ b/pkg/api/handlers/webhooks.go @@ -11,11 +11,11 @@ import ( "slices" "strings" - "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/acorn/pkg/alias" - "github.com/acorn-io/acorn/pkg/api" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" - "github.com/acorn-io/acorn/pkg/system" + "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" + "github.com/obot-platform/obot/pkg/system" "golang.org/x/crypto/bcrypt" apierrors "k8s.io/apimachinery/pkg/api/errors" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" diff --git a/pkg/api/handlers/workflows.go b/pkg/api/handlers/workflows.go index 8b2795ff..3cf27164 100644 --- a/pkg/api/handlers/workflows.go +++ b/pkg/api/handlers/workflows.go @@ -4,16 +4,16 @@ import ( "fmt" "strings" - "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/acorn/pkg/alias" - "github.com/acorn-io/acorn/pkg/api" - "github.com/acorn-io/acorn/pkg/controller/handlers/workflow" - "github.com/acorn-io/acorn/pkg/invoke" - "github.com/acorn-io/acorn/pkg/render" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" - "github.com/acorn-io/acorn/pkg/system" - "github.com/acorn-io/acorn/pkg/wait" "github.com/gptscript-ai/go-gptscript" + "github.com/obot-platform/obot/apiclient/types" + "github.com/obot-platform/obot/pkg/alias" + "github.com/obot-platform/obot/pkg/api" + "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" + "github.com/obot-platform/obot/pkg/system" + "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/api/request.go b/pkg/api/request.go index fd0c92b5..c26dc5e5 100644 --- a/pkg/api/request.go +++ b/pkg/api/request.go @@ -8,11 +8,11 @@ import ( "strconv" "time" - "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/acorn/pkg/api/authz" - "github.com/acorn-io/acorn/pkg/storage" - "github.com/acorn-io/acorn/pkg/system" "github.com/gptscript-ai/go-gptscript" + "github.com/obot-platform/obot/apiclient/types" + "github.com/obot-platform/obot/pkg/api/authz" + "github.com/obot-platform/obot/pkg/storage" + "github.com/obot-platform/obot/pkg/system" apierrors "k8s.io/apimachinery/pkg/api/errors" "k8s.io/apimachinery/pkg/api/meta" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" diff --git a/pkg/api/router/router.go b/pkg/api/router/router.go index fe8dc324..98b9ffa6 100644 --- a/pkg/api/router/router.go +++ b/pkg/api/router/router.go @@ -3,9 +3,9 @@ package router import ( "net/http" - "github.com/acorn-io/acorn/pkg/api/handlers" - "github.com/acorn-io/acorn/pkg/services" - "github.com/acorn-io/acorn/ui" + "github.com/obot-platform/obot/pkg/api/handlers" + "github.com/obot-platform/obot/pkg/services" + "github.com/obot-platform/obot/ui" ) func Router(services *services.Services) (http.Handler, error) { diff --git a/pkg/api/server/server.go b/pkg/api/server/server.go index d38b1636..6ad55a25 100644 --- a/pkg/api/server/server.go +++ b/pkg/api/server/server.go @@ -6,13 +6,13 @@ import ( "slices" "strings" - "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/acorn/pkg/api" - "github.com/acorn-io/acorn/pkg/api/authn" - "github.com/acorn-io/acorn/pkg/api/authz" - "github.com/acorn-io/acorn/pkg/proxy" - "github.com/acorn-io/acorn/pkg/storage" "github.com/gptscript-ai/go-gptscript" + "github.com/obot-platform/obot/apiclient/types" + "github.com/obot-platform/obot/pkg/api" + "github.com/obot-platform/obot/pkg/api/authn" + "github.com/obot-platform/obot/pkg/api/authz" + "github.com/obot-platform/obot/pkg/proxy" + "github.com/obot-platform/obot/pkg/storage" apierrors "k8s.io/apimachinery/pkg/api/errors" ) diff --git a/pkg/availablemodels/availablemodels.go b/pkg/availablemodels/availablemodels.go index 1d57d372..40ae8dfc 100644 --- a/pkg/availablemodels/availablemodels.go +++ b/pkg/availablemodels/availablemodels.go @@ -7,8 +7,8 @@ import ( "io" "net/http" - "github.com/acorn-io/acorn/pkg/gateway/server/dispatcher" openai "github.com/gptscript-ai/chat-completion-client" + "github.com/obot-platform/obot/pkg/gateway/server/dispatcher" ) func ForProvider(ctx context.Context, dispatcher *dispatcher.Dispatcher, modelProviderNamespace, modelProviderName string) (*openai.ModelsList, error) { diff --git a/pkg/cli/agents.go b/pkg/cli/agents.go index db94db00..91864846 100644 --- a/pkg/cli/agents.go +++ b/pkg/cli/agents.go @@ -3,14 +3,14 @@ package cli import ( "fmt" - "github.com/acorn-io/acorn/apiclient" - "github.com/acorn-io/acorn/apiclient/types" "github.com/dustin/go-humanize" + "github.com/obot-platform/obot/apiclient" + "github.com/obot-platform/obot/apiclient/types" "github.com/spf13/cobra" ) type Agents struct { - root *Acorn + root *Obot Quiet bool `usage:"Only print IDs of agents" short:"q"` Wide bool `usage:"Print more information" short:"w"` Output string `usage:"Output format (table, json, yaml)" short:"o" default:"table"` diff --git a/pkg/cli/create.go b/pkg/cli/create.go index 623c6f60..daed140b 100644 --- a/pkg/cli/create.go +++ b/pkg/cli/create.go @@ -12,9 +12,9 @@ import ( "strings" "time" - "github.com/acorn-io/acorn/pkg/cli/edit" - "github.com/acorn-io/acorn/pkg/cli/templates" - "github.com/acorn-io/namegenerator" + "github.com/obot-platform/namegenerator" + "github.com/obot-platform/obot/pkg/cli/edit" + "github.com/obot-platform/obot/pkg/cli/templates" "github.com/pterm/pterm" "github.com/spf13/cobra" "golang.org/x/text/cases" @@ -24,7 +24,7 @@ import ( type Create struct { Quiet bool `usage:"Only print ID after successful creation." short:"q"` - root *Acorn + root *Obot } func (l *Create) Customize(cmd *cobra.Command) { diff --git a/pkg/cli/credentials.go b/pkg/cli/credentials.go index 54360810..22bb79cc 100644 --- a/pkg/cli/credentials.go +++ b/pkg/cli/credentials.go @@ -4,14 +4,14 @@ import ( "fmt" "strings" - "github.com/acorn-io/acorn/apiclient" - "github.com/acorn-io/acorn/apiclient/types" "github.com/dustin/go-humanize" + "github.com/obot-platform/obot/apiclient" + "github.com/obot-platform/obot/apiclient/types" "github.com/spf13/cobra" ) type Credentials struct { - root *Acorn + root *Obot Wide bool `usage:"Print more information" short:"w"` Quiet bool `usage:"Only print IDs of credentials" short:"q"` ThreadID string `usage:"Specific thread list credentials for" short:"t"` diff --git a/pkg/cli/credentials_delete.go b/pkg/cli/credentials_delete.go index 29bebbcd..7dec38b3 100644 --- a/pkg/cli/credentials_delete.go +++ b/pkg/cli/credentials_delete.go @@ -4,13 +4,13 @@ import ( "fmt" "strings" - "github.com/acorn-io/acorn/apiclient" - "github.com/acorn-io/acorn/pkg/system" + "github.com/obot-platform/obot/apiclient" + "github.com/obot-platform/obot/pkg/system" "github.com/spf13/cobra" ) type CredentialsDelete struct { - root *Acorn + root *Obot Quiet bool `usage:"Only print IDs of credentials" short:"q"` } diff --git a/pkg/cli/edit.go b/pkg/cli/edit.go index 51923faf..ea87e412 100644 --- a/pkg/cli/edit.go +++ b/pkg/cli/edit.go @@ -4,15 +4,15 @@ import ( "context" "fmt" - "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/acorn/pkg/cli/edit" - "github.com/acorn-io/acorn/pkg/system" + "github.com/obot-platform/obot/apiclient/types" + "github.com/obot-platform/obot/pkg/cli/edit" + "github.com/obot-platform/obot/pkg/system" "github.com/spf13/cobra" "sigs.k8s.io/yaml" ) type Edit struct { - root *Acorn + root *Obot Prompt bool `usage:"Edit just the prompt for the agent" short:"p"` } diff --git a/pkg/cli/edit/edit.go b/pkg/cli/edit/edit.go index 09917933..d154f5d9 100644 --- a/pkg/cli/edit/edit.go +++ b/pkg/cli/edit/edit.go @@ -11,7 +11,7 @@ import ( var ( envs = []string{ - "ACORN_EDITOR", + "OBOT_EDITOR", "EDITOR", } ) diff --git a/pkg/cli/emailreceiver.go b/pkg/cli/emailreceiver.go index f05b0160..67d04b84 100644 --- a/pkg/cli/emailreceiver.go +++ b/pkg/cli/emailreceiver.go @@ -3,13 +3,13 @@ package cli import ( "fmt" - "github.com/acorn-io/acorn/apiclient/types" "github.com/dustin/go-humanize" + "github.com/obot-platform/obot/apiclient/types" "github.com/spf13/cobra" ) type EmailReceivers struct { - root *Acorn + root *Obot Quiet bool `usage:"Only print IDs of agents" short:"q"` Wide bool `usage:"Print more information" short:"w"` Output string `usage:"Output format (table, json, yaml)" short:"o" default:"table"` diff --git a/pkg/cli/events/events.go b/pkg/cli/events/events.go index 671d0bfb..d92ca803 100644 --- a/pkg/cli/events/events.go +++ b/pkg/cli/events/events.go @@ -3,8 +3,8 @@ package events import ( "context" - "github.com/acorn-io/acorn/apiclient" - "github.com/acorn-io/acorn/apiclient/types" + "github.com/obot-platform/obot/apiclient" + "github.com/obot-platform/obot/apiclient/types" ) type Printer interface { diff --git a/pkg/cli/events/printer.go b/pkg/cli/events/printer.go index 1f07def4..a1fcec1e 100644 --- a/pkg/cli/events/printer.go +++ b/pkg/cli/events/printer.go @@ -9,11 +9,11 @@ import ( "strings" "time" - "github.com/acorn-io/acorn/apiclient" - "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/acorn/logger" - "github.com/acorn-io/acorn/pkg/cli/textio" "github.com/fatih/color" + "github.com/obot-platform/obot/apiclient" + "github.com/obot-platform/obot/apiclient/types" + "github.com/obot-platform/obot/logger" + "github.com/obot-platform/obot/pkg/cli/textio" ) var log = logger.Package() diff --git a/pkg/cli/internal/token.go b/pkg/cli/internal/token.go index c4ee82e3..6550d0c8 100644 --- a/pkg/cli/internal/token.go +++ b/pkg/cli/internal/token.go @@ -13,11 +13,11 @@ import ( "path/filepath" "time" - types2 "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/acorn/pkg/gateway/types" "github.com/adrg/xdg" "github.com/fatih/color" "github.com/google/uuid" + types2 "github.com/obot-platform/obot/apiclient/types" + "github.com/obot-platform/obot/pkg/gateway/types" "github.com/pkg/browser" ) @@ -53,7 +53,7 @@ func Token(ctx context.Context, baseURL string) (string, error) { ctx, sigCancel := signal.NotifyContext(ctx, os.Interrupt) defer sigCancel() - tokenFile, err := xdg.ConfigFile(filepath.Join("acorn", "token")) + tokenFile, err := xdg.ConfigFile(filepath.Join("obot", "token")) if err != nil { return "", err } @@ -88,7 +88,7 @@ func Token(ctx context.Context, baseURL string) (string, error) { fmt.Println(color.GreenString("========================")) fmt.Println() fmt.Println(color.CyanString(serviceName) + " is used for authentication using the browser. This can be bypassed by setting") - fmt.Println("the env var " + color.CyanString("ACORN_API_KEY") + " to your API key.") + fmt.Println("the env var " + color.CyanString("OBOT_API_KEY") + " to your API key.") fmt.Println() fmt.Println(color.GreenString("Press ENTER to continue (CTRL+C to exit)")) if err := enter(ctx); err != nil { diff --git a/pkg/cli/invoke.go b/pkg/cli/invoke.go index b09a26a6..851bc054 100644 --- a/pkg/cli/invoke.go +++ b/pkg/cli/invoke.go @@ -5,8 +5,8 @@ import ( "os" "strings" - "github.com/acorn-io/acorn/pkg/cli/invokeclient" - "github.com/acorn-io/acorn/pkg/system" + "github.com/obot-platform/obot/pkg/cli/invokeclient" + "github.com/obot-platform/obot/pkg/system" "github.com/spf13/cobra" "golang.org/x/term" ) @@ -17,7 +17,7 @@ type Invoke struct { Quiet *bool `usage:"Only print output characters" short:"q"` Verbose bool `usage:"Print more information" short:"v"` Async bool `usage:"Run the agent asynchronously" short:"a"` - root *Acorn + root *Obot } func (l *Invoke) GetQuiet() bool { diff --git a/pkg/cli/invokeclient/input.go b/pkg/cli/invokeclient/input.go index d2a0d706..f5ee561e 100644 --- a/pkg/cli/invokeclient/input.go +++ b/pkg/cli/invokeclient/input.go @@ -1,9 +1,9 @@ package invokeclient import ( - "github.com/acorn-io/acorn/apiclient" - "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/acorn/pkg/cli/textio" + "github.com/obot-platform/obot/apiclient" + "github.com/obot-platform/obot/apiclient/types" + "github.com/obot-platform/obot/pkg/cli/textio" ) type QuietInputter struct { diff --git a/pkg/cli/invokeclient/invoke.go b/pkg/cli/invokeclient/invoke.go index 2de0f7d3..c7e71a6c 100644 --- a/pkg/cli/invokeclient/invoke.go +++ b/pkg/cli/invokeclient/invoke.go @@ -4,10 +4,10 @@ import ( "context" "fmt" - "github.com/acorn-io/acorn/apiclient" - "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/acorn/pkg/cli/events" - "github.com/acorn-io/acorn/pkg/system" + "github.com/obot-platform/obot/apiclient" + "github.com/obot-platform/obot/apiclient/types" + "github.com/obot-platform/obot/pkg/cli/events" + "github.com/obot-platform/obot/pkg/system" ) type inputter interface { diff --git a/pkg/cli/rm.go b/pkg/cli/rm.go index f00c7118..56da83bc 100644 --- a/pkg/cli/rm.go +++ b/pkg/cli/rm.go @@ -4,12 +4,12 @@ import ( "errors" "fmt" - "github.com/acorn-io/acorn/pkg/system" + "github.com/obot-platform/obot/pkg/system" "github.com/spf13/cobra" ) type Delete struct { - root *Acorn + root *Obot } func (l *Delete) Customize(cmd *cobra.Command) { diff --git a/pkg/cli/root.go b/pkg/cli/root.go index 896392ea..df36867b 100644 --- a/pkg/cli/root.go +++ b/pkg/cli/root.go @@ -3,22 +3,22 @@ package cli import ( "os" - "github.com/acorn-io/acorn/apiclient" - "github.com/acorn-io/acorn/logger" - "github.com/acorn-io/acorn/pkg/cli/internal" "github.com/fatih/color" "github.com/gptscript-ai/cmd" "github.com/gptscript-ai/gptscript/pkg/env" + "github.com/obot-platform/obot/apiclient" + "github.com/obot-platform/obot/logger" + "github.com/obot-platform/obot/pkg/cli/internal" "github.com/spf13/cobra" "golang.org/x/term" ) -type Acorn struct { +type Obot struct { Debug bool `usage:"Enable debug logging"` Client *apiclient.Client } -func (a *Acorn) PersistentPre(*cobra.Command, []string) error { +func (a *Obot) PersistentPre(*cobra.Command, []string) error { if os.Getenv("NO_COLOR") != "" || !term.IsTerminal(int(os.Stdout.Fd())) { color.NoColor = true } @@ -35,10 +35,10 @@ func (a *Acorn) PersistentPre(*cobra.Command, []string) error { } func New() *cobra.Command { - root := &Acorn{ + root := &Obot{ Client: &apiclient.Client{ - BaseURL: env.VarOrDefault("ACORN_BASE_URL", "http://localhost:8080/api"), - Token: os.Getenv("ACORN_TOKEN"), + BaseURL: env.VarOrDefault("OBOT_BASE_URL", "http://localhost:8080/api"), + Token: os.Getenv("OBOT_TOKEN"), }, } return cmd.Command(root, @@ -63,6 +63,6 @@ func New() *cobra.Command { ) } -func (a *Acorn) Run(cmd *cobra.Command, _ []string) error { +func (a *Obot) Run(cmd *cobra.Command, _ []string) error { return cmd.Help() } diff --git a/pkg/cli/run_debug.go b/pkg/cli/run_debug.go index 9094e0fc..27e8472b 100644 --- a/pkg/cli/run_debug.go +++ b/pkg/cli/run_debug.go @@ -8,7 +8,7 @@ import ( ) type Debug struct { - root *Acorn + root *Obot } func (l *Debug) Customize(cmd *cobra.Command) { diff --git a/pkg/cli/run_print.go b/pkg/cli/run_print.go index 2900b046..e36526b9 100644 --- a/pkg/cli/run_print.go +++ b/pkg/cli/run_print.go @@ -1,12 +1,12 @@ package cli import ( - "github.com/acorn-io/acorn/pkg/cli/events" + "github.com/obot-platform/obot/pkg/cli/events" "github.com/spf13/cobra" ) type RunPrint struct { - root *Acorn + root *Obot Quiet bool `usage:"Only print the response content of the runs" short:"q"` Verbose bool `usage:"Print more information" short:"v"` } diff --git a/pkg/cli/runs.go b/pkg/cli/runs.go index 540f4634..cace3e98 100644 --- a/pkg/cli/runs.go +++ b/pkg/cli/runs.go @@ -5,15 +5,15 @@ import ( "iter" "strings" - "github.com/acorn-io/acorn/apiclient" - "github.com/acorn-io/acorn/apiclient/types" "github.com/dustin/go-humanize" + "github.com/obot-platform/obot/apiclient" + "github.com/obot-platform/obot/apiclient/types" "github.com/pterm/pterm" "github.com/spf13/cobra" ) type Runs struct { - root *Acorn + root *Obot Wide bool `usage:"Print more information" short:"w"` Quiet bool `usage:"Only print IDs of runs" short:"q"` Output string `usage:"Output format (table, json, yaml)" short:"o" default:"table"` diff --git a/pkg/cli/server.go b/pkg/cli/server.go index 053006d5..87dad360 100644 --- a/pkg/cli/server.go +++ b/pkg/cli/server.go @@ -1,8 +1,8 @@ package cli import ( - "github.com/acorn-io/acorn/pkg/server" - "github.com/acorn-io/acorn/pkg/services" + "github.com/obot-platform/obot/pkg/server" + "github.com/obot-platform/obot/pkg/services" "github.com/spf13/cobra" ) diff --git a/pkg/cli/threadprint.go b/pkg/cli/threadprint.go index 00b884bd..54fa756a 100644 --- a/pkg/cli/threadprint.go +++ b/pkg/cli/threadprint.go @@ -1,13 +1,13 @@ package cli import ( - "github.com/acorn-io/acorn/apiclient" - "github.com/acorn-io/acorn/pkg/cli/events" + "github.com/obot-platform/obot/apiclient" + "github.com/obot-platform/obot/pkg/cli/events" "github.com/spf13/cobra" ) type ThreadPrint struct { - root *Acorn + root *Obot Quiet bool `usage:"Only print response content of threads" short:"q"` Follow bool `usage:"Follow the thread and print new events" short:"f"` Verbose bool `usage:"Print more information" short:"v"` diff --git a/pkg/cli/threads.go b/pkg/cli/threads.go index 63e74172..d1328033 100644 --- a/pkg/cli/threads.go +++ b/pkg/cli/threads.go @@ -3,14 +3,14 @@ package cli import ( "fmt" - "github.com/acorn-io/acorn/apiclient" - "github.com/acorn-io/acorn/apiclient/types" "github.com/dustin/go-humanize" + "github.com/obot-platform/obot/apiclient" + "github.com/obot-platform/obot/apiclient/types" "github.com/spf13/cobra" ) type Threads struct { - root *Acorn + root *Obot Quiet bool `usage:"Only print IDs of threads" short:"q"` Wide bool `usage:"Print more information" short:"w"` Output string `usage:"Output format (table, json, yaml)" short:"o" default:"table"` diff --git a/pkg/cli/tools.go b/pkg/cli/tools.go index 203eec72..556e0eb2 100644 --- a/pkg/cli/tools.go +++ b/pkg/cli/tools.go @@ -3,13 +3,13 @@ package cli import ( "fmt" - "github.com/acorn-io/acorn/apiclient" - "github.com/acorn-io/acorn/apiclient/types" + "github.com/obot-platform/obot/apiclient" + "github.com/obot-platform/obot/apiclient/types" "github.com/spf13/cobra" ) type Tools struct { - root *Acorn + root *Obot Quiet bool `usage:"Only print IDs of tools" short:"q"` Output string `usage:"Output format (table, json, yaml)" short:"o" default:"table"` } diff --git a/pkg/cli/tools_register.go b/pkg/cli/tools_register.go index 2e3262e8..0c8efdc8 100644 --- a/pkg/cli/tools_register.go +++ b/pkg/cli/tools_register.go @@ -3,12 +3,12 @@ package cli import ( "fmt" - "github.com/acorn-io/acorn/apiclient/types" + "github.com/obot-platform/obot/apiclient/types" "github.com/spf13/cobra" ) type ToolRegister struct { - root *Acorn + root *Obot Quiet bool `usage:"Only print IDs of created tool references:" short:"q"` } diff --git a/pkg/cli/tools_unregister.go b/pkg/cli/tools_unregister.go index 44351cbd..14a236d0 100644 --- a/pkg/cli/tools_unregister.go +++ b/pkg/cli/tools_unregister.go @@ -3,12 +3,12 @@ package cli import ( "fmt" - "github.com/acorn-io/acorn/apiclient/types" + "github.com/obot-platform/obot/apiclient/types" "github.com/spf13/cobra" ) type ToolUnregister struct { - root *Acorn + root *Obot Quiet bool `usage:"Only print IDs of unregistered tool references" short:"q"` } diff --git a/pkg/cli/tools_update.go b/pkg/cli/tools_update.go index e8236727..984b22be 100644 --- a/pkg/cli/tools_update.go +++ b/pkg/cli/tools_update.go @@ -7,7 +7,7 @@ import ( ) type ToolUpdate struct { - root *Acorn + root *Obot Quiet bool `usage:"Only print IDs of updated step template" short:"q"` } diff --git a/pkg/cli/update.go b/pkg/cli/update.go index 36526d0c..01c8c328 100644 --- a/pkg/cli/update.go +++ b/pkg/cli/update.go @@ -4,14 +4,14 @@ import ( "fmt" "os" - "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/acorn/pkg/system" + "github.com/obot-platform/obot/apiclient/types" + "github.com/obot-platform/obot/pkg/system" "github.com/spf13/cobra" "sigs.k8s.io/yaml" ) type Update struct { - root *Acorn + root *Obot Quiet bool `usage:"Only print IDs of updated agent/workflow" short:"q"` } diff --git a/pkg/cli/version.go b/pkg/cli/version.go index fbdf1b4d..f83df401 100644 --- a/pkg/cli/version.go +++ b/pkg/cli/version.go @@ -3,7 +3,7 @@ package cli import ( "fmt" - "github.com/acorn-io/acorn/pkg/version" + "github.com/obot-platform/obot/pkg/version" "github.com/spf13/cobra" ) diff --git a/pkg/cli/webhooks.go b/pkg/cli/webhooks.go index d8e488b5..86b9cfc1 100644 --- a/pkg/cli/webhooks.go +++ b/pkg/cli/webhooks.go @@ -3,13 +3,13 @@ package cli import ( "fmt" - "github.com/acorn-io/acorn/apiclient/types" "github.com/dustin/go-humanize" + "github.com/obot-platform/obot/apiclient/types" "github.com/spf13/cobra" ) type Webhooks struct { - root *Acorn + root *Obot Quiet bool `usage:"Only print IDs of agents" short:"q"` Wide bool `usage:"Print more information" short:"w"` Output string `usage:"Output format (table, json, yaml)" short:"o" default:"table"` diff --git a/pkg/cli/workflow_auth.go b/pkg/cli/workflow_auth.go index f6689aae..01af002f 100644 --- a/pkg/cli/workflow_auth.go +++ b/pkg/cli/workflow_auth.go @@ -1,12 +1,12 @@ package cli import ( - "github.com/acorn-io/acorn/pkg/cli/events" + "github.com/obot-platform/obot/pkg/cli/events" "github.com/spf13/cobra" ) type WorkflowAuth struct { - root *Acorn + root *Obot } func (l *WorkflowAuth) Customize(cmd *cobra.Command) { diff --git a/pkg/cli/workflows.go b/pkg/cli/workflows.go index 520964ed..12a2c5e1 100644 --- a/pkg/cli/workflows.go +++ b/pkg/cli/workflows.go @@ -3,14 +3,14 @@ package cli import ( "fmt" - "github.com/acorn-io/acorn/apiclient" - "github.com/acorn-io/acorn/apiclient/types" "github.com/dustin/go-humanize" + "github.com/obot-platform/obot/apiclient" + "github.com/obot-platform/obot/apiclient/types" "github.com/spf13/cobra" ) type Workflows struct { - root *Acorn + root *Obot Quiet bool `usage:"Only print IDs of agents" short:"q"` Wide bool `usage:"Print more information" short:"w"` Output string `usage:"Output format (table, json, yaml)" short:"o" default:"table"` diff --git a/pkg/controller/controller.go b/pkg/controller/controller.go index 7a10b858..a17de2a6 100644 --- a/pkg/controller/controller.go +++ b/pkg/controller/controller.go @@ -4,13 +4,13 @@ import ( "context" "fmt" - "github.com/acorn-io/acorn/pkg/controller/data" - "github.com/acorn-io/acorn/pkg/controller/handlers/toolreference" - "github.com/acorn-io/acorn/pkg/services" - "github.com/acorn-io/nah/pkg/router" + "github.com/obot-platform/nah/pkg/router" + "github.com/obot-platform/obot/pkg/controller/data" + "github.com/obot-platform/obot/pkg/controller/handlers/toolreference" + "github.com/obot-platform/obot/pkg/services" // Enable logrus logging in nah - _ "github.com/acorn-io/nah/pkg/logrus" + _ "github.com/obot-platform/nah/pkg/logrus" ) type Controller struct { diff --git a/pkg/controller/data/data.go b/pkg/controller/data/data.go index 04762942..bd313f56 100644 --- a/pkg/controller/data/data.go +++ b/pkg/controller/data/data.go @@ -4,7 +4,7 @@ import ( "context" _ "embed" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.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/handlers/agents/agents.go b/pkg/controller/handlers/agents/agents.go index a3768d49..f1d5e998 100644 --- a/pkg/controller/handlers/agents/agents.go +++ b/pkg/controller/handlers/agents/agents.go @@ -4,12 +4,12 @@ import ( "context" "fmt" - "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/acorn/pkg/create" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" - "github.com/acorn-io/acorn/pkg/system" - "github.com/acorn-io/nah/pkg/name" - "github.com/acorn-io/nah/pkg/router" + "github.com/obot-platform/nah/pkg/name" + "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" + "github.com/obot-platform/obot/pkg/system" "k8s.io/apimachinery/pkg/api/equality" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/fields" diff --git a/pkg/controller/handlers/alias/alias.go b/pkg/controller/handlers/alias/alias.go index d85c9eb2..c42f8f3d 100644 --- a/pkg/controller/handlers/alias/alias.go +++ b/pkg/controller/handlers/alias/alias.go @@ -3,12 +3,12 @@ package alias import ( "fmt" - "github.com/acorn-io/acorn/logger" - "github.com/acorn-io/acorn/pkg/alias" - "github.com/acorn-io/acorn/pkg/create" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" - "github.com/acorn-io/nah/pkg/router" - "github.com/acorn-io/nah/pkg/uncached" + "github.com/obot-platform/nah/pkg/router" + "github.com/obot-platform/nah/pkg/uncached" + "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" 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 ccaf3b00..14a332f4 100644 --- a/pkg/controller/handlers/cleanup/cleanup.go +++ b/pkg/controller/handlers/cleanup/cleanup.go @@ -1,10 +1,10 @@ package cleanup import ( - "github.com/acorn-io/acorn/logger" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" - "github.com/acorn-io/nah/pkg/router" - "github.com/acorn-io/nah/pkg/uncached" + "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" 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 d8be2e1f..67c081c7 100644 --- a/pkg/controller/handlers/cronjob/cronjob.go +++ b/pkg/controller/handlers/cronjob/cronjob.go @@ -4,11 +4,11 @@ import ( "fmt" "time" - "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/acorn/pkg/alias" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" - "github.com/acorn-io/acorn/pkg/system" - "github.com/acorn-io/nah/pkg/router" + "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" + "github.com/obot-platform/obot/pkg/system" "github.com/robfig/cron/v3" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/fields" diff --git a/pkg/controller/handlers/knowledgefile/knowledgefile.go b/pkg/controller/handlers/knowledgefile/knowledgefile.go index 0313439a..1e24e042 100644 --- a/pkg/controller/handlers/knowledgefile/knowledgefile.go +++ b/pkg/controller/handlers/knowledgefile/knowledgefile.go @@ -9,13 +9,13 @@ import ( "strings" "time" - "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/acorn/pkg/invoke" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" - "github.com/acorn-io/acorn/pkg/system" - "github.com/acorn-io/nah/pkg/router" - "github.com/acorn-io/nah/pkg/typed" "github.com/gptscript-ai/go-gptscript" + "github.com/obot-platform/nah/pkg/router" + "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" + "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 edfe4c4a..7228ca5f 100644 --- a/pkg/controller/handlers/knowledgeset/knowledgeset.go +++ b/pkg/controller/handlers/knowledgeset/knowledgeset.go @@ -4,14 +4,14 @@ import ( "context" "fmt" - "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/acorn/pkg/aihelper" - "github.com/acorn-io/acorn/pkg/create" - "github.com/acorn-io/acorn/pkg/invoke" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" - "github.com/acorn-io/acorn/pkg/system" - "github.com/acorn-io/nah/pkg/name" - "github.com/acorn-io/nah/pkg/router" + "github.com/obot-platform/nah/pkg/name" + "github.com/obot-platform/nah/pkg/router" + "github.com/obot-platform/obot/apiclient/types" + "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" + "github.com/obot-platform/obot/pkg/system" apierrors "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/knowledgesource/knowledgesource.go b/pkg/controller/handlers/knowledgesource/knowledgesource.go index 08a945b2..5aab4833 100644 --- a/pkg/controller/handlers/knowledgesource/knowledgesource.go +++ b/pkg/controller/handlers/knowledgesource/knowledgesource.go @@ -5,17 +5,17 @@ import ( "context" "time" - "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/acorn/logger" - "github.com/acorn-io/acorn/pkg/create" - "github.com/acorn-io/acorn/pkg/gz" - "github.com/acorn-io/acorn/pkg/invoke" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" - "github.com/acorn-io/acorn/pkg/system" - "github.com/acorn-io/acorn/pkg/wait" - "github.com/acorn-io/nah/pkg/name" - "github.com/acorn-io/nah/pkg/router" "github.com/gptscript-ai/go-gptscript" + "github.com/obot-platform/nah/pkg/name" + "github.com/obot-platform/nah/pkg/router" + "github.com/obot-platform/obot/apiclient/types" + "github.com/obot-platform/obot/logger" + "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" + "github.com/obot-platform/obot/pkg/system" + "github.com/obot-platform/obot/pkg/wait" 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/knowledgesource/metadata.go b/pkg/controller/handlers/knowledgesource/metadata.go index bc2b9424..cf407ca6 100644 --- a/pkg/controller/handlers/knowledgesource/metadata.go +++ b/pkg/controller/handlers/knowledgesource/metadata.go @@ -7,8 +7,8 @@ import ( "fmt" "path/filepath" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" "github.com/gptscript-ai/go-gptscript" + v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.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 b984c54e..5c2bbc2d 100644 --- a/pkg/controller/handlers/knowledgesource/reschedule.go +++ b/pkg/controller/handlers/knowledgesource/reschedule.go @@ -4,9 +4,9 @@ import ( "fmt" "time" - "github.com/acorn-io/acorn/apiclient/types" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" - "github.com/acorn-io/nah/pkg/router" + "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" "github.com/robfig/cron/v3" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" ) diff --git a/pkg/controller/handlers/oauthapp/oauthapplogin.go b/pkg/controller/handlers/oauthapp/oauthapplogin.go index 04f74d9b..496d607a 100644 --- a/pkg/controller/handlers/oauthapp/oauthapplogin.go +++ b/pkg/controller/handlers/oauthapp/oauthapplogin.go @@ -4,13 +4,13 @@ import ( "errors" "time" - "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/acorn/pkg/invoke" - "github.com/acorn-io/acorn/pkg/render" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" - "github.com/acorn-io/acorn/pkg/system" - "github.com/acorn-io/nah/pkg/router" "github.com/gptscript-ai/go-gptscript" + "github.com/obot-platform/nah/pkg/router" + "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" + "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 4990dc4e..d9887e9a 100644 --- a/pkg/controller/handlers/runs/runs.go +++ b/pkg/controller/handlers/runs/runs.go @@ -4,10 +4,10 @@ import ( "fmt" "time" - "github.com/acorn-io/acorn/pkg/invoke" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" - "github.com/acorn-io/nah/pkg/router" "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" 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 eb9016bb..53153fad 100644 --- a/pkg/controller/handlers/threads/threads.go +++ b/pkg/controller/handlers/threads/threads.go @@ -3,12 +3,12 @@ package threads import ( "context" - "github.com/acorn-io/acorn/pkg/create" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" - "github.com/acorn-io/acorn/pkg/system" - "github.com/acorn-io/acorn/pkg/wait" - "github.com/acorn-io/nah/pkg/name" - "github.com/acorn-io/nah/pkg/router" + "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" + "github.com/obot-platform/obot/pkg/system" + "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/handlers/toolreference/toolreference.go b/pkg/controller/handlers/toolreference/toolreference.go index 11824b72..8394ff79 100644 --- a/pkg/controller/handlers/toolreference/toolreference.go +++ b/pkg/controller/handlers/toolreference/toolreference.go @@ -10,16 +10,16 @@ import ( "strings" "time" - "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/acorn/logger" - "github.com/acorn-io/acorn/pkg/availablemodels" - "github.com/acorn-io/acorn/pkg/gateway/server/dispatcher" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" - "github.com/acorn-io/acorn/pkg/system" - "github.com/acorn-io/nah/pkg/apply" - "github.com/acorn-io/nah/pkg/name" - "github.com/acorn-io/nah/pkg/router" "github.com/gptscript-ai/go-gptscript" + "github.com/obot-platform/nah/pkg/apply" + "github.com/obot-platform/nah/pkg/name" + "github.com/obot-platform/nah/pkg/router" + "github.com/obot-platform/obot/apiclient/types" + "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" + "github.com/obot-platform/obot/pkg/system" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/fields" "sigs.k8s.io/controller-runtime/pkg/client" @@ -294,12 +294,12 @@ func (h *Handler) EnsureOpenAIEnvCredentialAndDefaults(ctx context.Context, c cl ToolName: "openai-model-provider", Type: gptscript.CredentialTypeModelProvider, Env: map[string]string{ - "ACORN_OPENAI_MODEL_PROVIDER_API_KEY": os.Getenv("OPENAI_API_KEY"), + "OBOT_OPENAI_MODEL_PROVIDER_API_KEY": os.Getenv("OPENAI_API_KEY"), }, }); err != nil { return err } - } else if cred.Env["ACORN_OPENAI_MODEL_PROVIDER_API_KEY"] != os.Getenv("OPENAI_API_KEY") { + } else if cred.Env["OBOT_OPENAI_MODEL_PROVIDER_API_KEY"] != os.Getenv("OPENAI_API_KEY") { // If the credential exists, but has a different value, then update it. // The only way to update it is to delete the existing credential and recreate it. if err = h.gptClient.DeleteCredential(ctx, string(openAIModelProvider.UID), "openai-model-provider"); err != nil { @@ -310,7 +310,7 @@ func (h *Handler) EnsureOpenAIEnvCredentialAndDefaults(ctx context.Context, c cl ToolName: "openai-model-provider", Type: gptscript.CredentialTypeModelProvider, Env: map[string]string{ - "ACORN_OPENAI_MODEL_PROVIDER_API_KEY": os.Getenv("OPENAI_API_KEY"), + "OBOT_OPENAI_MODEL_PROVIDER_API_KEY": os.Getenv("OPENAI_API_KEY"), }, }) } diff --git a/pkg/controller/handlers/webhook/webhook.go b/pkg/controller/handlers/webhook/webhook.go index b34d8298..a77d46df 100644 --- a/pkg/controller/handlers/webhook/webhook.go +++ b/pkg/controller/handlers/webhook/webhook.go @@ -1,9 +1,9 @@ package webhook import ( - "github.com/acorn-io/acorn/apiclient/types" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" - "github.com/acorn-io/nah/pkg/router" + "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" "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 81e26286..cc0ccf3a 100644 --- a/pkg/controller/handlers/workflow/files.go +++ b/pkg/controller/handlers/workflow/files.go @@ -3,11 +3,11 @@ package workflow import ( "context" - "github.com/acorn-io/acorn/pkg/create" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" - "github.com/acorn-io/acorn/pkg/system" - "github.com/acorn-io/nah/pkg/name" - "github.com/acorn-io/nah/pkg/router" + "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" + "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/ids.go b/pkg/controller/handlers/workflow/ids.go index 27907e23..c3ca0c53 100644 --- a/pkg/controller/handlers/workflow/ids.go +++ b/pkg/controller/handlers/workflow/ids.go @@ -1,8 +1,8 @@ package workflow import ( - "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/nah/pkg/randomtoken" + "github.com/obot-platform/nah/pkg/randomtoken" + "github.com/obot-platform/obot/apiclient/types" ) func PopulateIDs(manifest types.WorkflowManifest) types.WorkflowManifest { diff --git a/pkg/controller/handlers/workflow/oauth.go b/pkg/controller/handlers/workflow/oauth.go index 4973bab6..80a15e99 100644 --- a/pkg/controller/handlers/workflow/oauth.go +++ b/pkg/controller/handlers/workflow/oauth.go @@ -3,10 +3,10 @@ package workflow import ( "fmt" - "github.com/acorn-io/acorn/apiclient/types" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" - "github.com/acorn-io/acorn/pkg/system" - "github.com/acorn-io/nah/pkg/router" + "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" + "github.com/obot-platform/obot/pkg/system" "k8s.io/apimachinery/pkg/api/equality" apierror "k8s.io/apimachinery/pkg/api/errors" "k8s.io/apimachinery/pkg/fields" diff --git a/pkg/controller/handlers/workflow/workflow.go b/pkg/controller/handlers/workflow/workflow.go index 80113671..b9465c69 100644 --- a/pkg/controller/handlers/workflow/workflow.go +++ b/pkg/controller/handlers/workflow/workflow.go @@ -1,8 +1,8 @@ package workflow import ( - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" - "github.com/acorn-io/nah/pkg/router" + "github.com/obot-platform/nah/pkg/router" + v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.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 ef2fc0e9..f1b85dc1 100644 --- a/pkg/controller/handlers/workflowexecution/workflowexecution.go +++ b/pkg/controller/handlers/workflowexecution/workflowexecution.go @@ -4,13 +4,13 @@ import ( "context" "time" - "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/acorn/pkg/controller/handlers/workflowstep" - "github.com/acorn-io/acorn/pkg/invoke" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" - "github.com/acorn-io/acorn/pkg/system" - "github.com/acorn-io/nah/pkg/apply" - "github.com/acorn-io/nah/pkg/router" + "github.com/obot-platform/nah/pkg/apply" + "github.com/obot-platform/nah/pkg/router" + "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" + "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 e7deedc7..fb2e4d98 100644 --- a/pkg/controller/handlers/workflowstep/if.go +++ b/pkg/controller/handlers/workflowstep/if.go @@ -5,10 +5,10 @@ import ( "fmt" "strings" - "github.com/acorn-io/acorn/apiclient/types" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" - "github.com/acorn-io/nah/pkg/apply" - "github.com/acorn-io/nah/pkg/router" + "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" 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 515ccc65..c1b85479 100644 --- a/pkg/controller/handlers/workflowstep/invoke.go +++ b/pkg/controller/handlers/workflowstep/invoke.go @@ -1,12 +1,12 @@ package workflowstep import ( - "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/acorn/pkg/invoke" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" - "github.com/acorn-io/nah/pkg/router" - "github.com/acorn-io/nah/pkg/uncached" "github.com/gptscript-ai/go-gptscript" + "github.com/obot-platform/nah/pkg/router" + "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" "k8s.io/client-go/util/retry" ) diff --git a/pkg/controller/handlers/workflowstep/subflow.go b/pkg/controller/handlers/workflowstep/subflow.go index 74e89412..9212c1aa 100644 --- a/pkg/controller/handlers/workflowstep/subflow.go +++ b/pkg/controller/handlers/workflowstep/subflow.go @@ -4,15 +4,15 @@ import ( "fmt" "strings" - "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/acorn/pkg/invoke" - "github.com/acorn-io/acorn/pkg/render" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" - "github.com/acorn-io/acorn/pkg/system" - "github.com/acorn-io/nah/pkg/apply" - "github.com/acorn-io/nah/pkg/name" - "github.com/acorn-io/nah/pkg/router" "github.com/gptscript-ai/go-gptscript" + "github.com/obot-platform/nah/pkg/apply" + "github.com/obot-platform/nah/pkg/name" + "github.com/obot-platform/nah/pkg/router" + "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" + "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 6c8e6e0d..4d7ee201 100644 --- a/pkg/controller/handlers/workflowstep/while.go +++ b/pkg/controller/handlers/workflowstep/while.go @@ -3,10 +3,10 @@ package workflowstep import ( "fmt" - "github.com/acorn-io/acorn/apiclient/types" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" - "github.com/acorn-io/nah/pkg/apply" - "github.com/acorn-io/nah/pkg/router" + "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" 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 be008d0a..cd6d4377 100644 --- a/pkg/controller/handlers/workflowstep/workflowstep.go +++ b/pkg/controller/handlers/workflowstep/workflowstep.go @@ -5,12 +5,12 @@ import ( "regexp" "strings" - "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/acorn/pkg/invoke" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" - "github.com/acorn-io/acorn/pkg/system" - "github.com/acorn-io/nah/pkg/name" - "github.com/acorn-io/nah/pkg/router" + "github.com/obot-platform/nah/pkg/name" + "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" + "github.com/obot-platform/obot/pkg/system" apierrors "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/workspace/workspace.go b/pkg/controller/handlers/workspace/workspace.go index b2b9b72c..1577d200 100644 --- a/pkg/controller/handlers/workspace/workspace.go +++ b/pkg/controller/handlers/workspace/workspace.go @@ -3,10 +3,10 @@ package workspace import ( "context" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" - "github.com/acorn-io/acorn/pkg/wait" - "github.com/acorn-io/nah/pkg/router" "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" + "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 91ecd065..0b42fcde 100644 --- a/pkg/controller/routes.go +++ b/pkg/controller/routes.go @@ -1,24 +1,24 @@ package controller import ( - "github.com/acorn-io/acorn/pkg/controller/handlers/agents" - "github.com/acorn-io/acorn/pkg/controller/handlers/alias" - "github.com/acorn-io/acorn/pkg/controller/handlers/cleanup" - "github.com/acorn-io/acorn/pkg/controller/handlers/cronjob" - "github.com/acorn-io/acorn/pkg/controller/handlers/knowledgefile" - "github.com/acorn-io/acorn/pkg/controller/handlers/knowledgeset" - "github.com/acorn-io/acorn/pkg/controller/handlers/knowledgesource" - "github.com/acorn-io/acorn/pkg/controller/handlers/oauthapp" - "github.com/acorn-io/acorn/pkg/controller/handlers/runs" - "github.com/acorn-io/acorn/pkg/controller/handlers/threads" - "github.com/acorn-io/acorn/pkg/controller/handlers/toolreference" - "github.com/acorn-io/acorn/pkg/controller/handlers/webhook" - "github.com/acorn-io/acorn/pkg/controller/handlers/workflow" - "github.com/acorn-io/acorn/pkg/controller/handlers/workflowexecution" - "github.com/acorn-io/acorn/pkg/controller/handlers/workflowstep" - "github.com/acorn-io/acorn/pkg/controller/handlers/workspace" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" - "github.com/acorn-io/nah/pkg/handlers" + "github.com/obot-platform/nah/pkg/handlers" + "github.com/obot-platform/obot/pkg/controller/handlers/agents" + "github.com/obot-platform/obot/pkg/controller/handlers/alias" + "github.com/obot-platform/obot/pkg/controller/handlers/cleanup" + "github.com/obot-platform/obot/pkg/controller/handlers/cronjob" + "github.com/obot-platform/obot/pkg/controller/handlers/knowledgefile" + "github.com/obot-platform/obot/pkg/controller/handlers/knowledgeset" + "github.com/obot-platform/obot/pkg/controller/handlers/knowledgesource" + "github.com/obot-platform/obot/pkg/controller/handlers/oauthapp" + "github.com/obot-platform/obot/pkg/controller/handlers/runs" + "github.com/obot-platform/obot/pkg/controller/handlers/threads" + "github.com/obot-platform/obot/pkg/controller/handlers/toolreference" + "github.com/obot-platform/obot/pkg/controller/handlers/webhook" + "github.com/obot-platform/obot/pkg/controller/handlers/workflow" + "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" ) func (c *Controller) setupRoutes() error { diff --git a/pkg/credstores/credstore.go b/pkg/credstores/credstore.go index 6d40abc1..d6d928d5 100644 --- a/pkg/credstores/credstore.go +++ b/pkg/credstores/credstore.go @@ -7,7 +7,7 @@ import ( "os/exec" "strings" - "github.com/acorn-io/acorn/logger" + "github.com/obot-platform/obot/logger" ) type Options struct { diff --git a/pkg/events/events.go b/pkg/events/events.go index d37efb93..24c499a7 100644 --- a/pkg/events/events.go +++ b/pkg/events/events.go @@ -11,15 +11,15 @@ import ( "sync" "time" - "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/acorn/logger" - "github.com/acorn-io/acorn/pkg/gz" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" - "github.com/acorn-io/acorn/pkg/system" - "github.com/acorn-io/acorn/pkg/wait" - "github.com/acorn-io/nah/pkg/router" - "github.com/acorn-io/nah/pkg/typed" "github.com/gptscript-ai/go-gptscript" + "github.com/obot-platform/nah/pkg/router" + "github.com/obot-platform/nah/pkg/typed" + "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" + "github.com/obot-platform/obot/pkg/system" + "github.com/obot-platform/obot/pkg/wait" apierrors "k8s.io/apimachinery/pkg/api/errors" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" kclient "sigs.k8s.io/controller-runtime/pkg/client" @@ -773,7 +773,7 @@ func getToolCallOutput(frames gptscript.CallFrames, callID string) string { func isSubCallTargetIDs(tool gptscript.Tool) (agentID string, workflowID string) { for _, line := range strings.Split(tool.Instructions, "\n") { - suffix, ok := strings.CutPrefix(line, "#ACORN_SUBCALL: TARGET: ") + suffix, ok := strings.CutPrefix(line, "#OBOT_SUBCALL: TARGET: ") if !ok { continue } diff --git a/pkg/gateway/client/auth.go b/pkg/gateway/client/auth.go index 46d76a32..69a03a06 100644 --- a/pkg/gateway/client/auth.go +++ b/pkg/gateway/client/auth.go @@ -5,9 +5,9 @@ import ( "net/http" "slices" - types2 "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/acorn/pkg/api/authz" - "github.com/acorn-io/acorn/pkg/gateway/types" + types2 "github.com/obot-platform/obot/apiclient/types" + "github.com/obot-platform/obot/pkg/api/authz" + "github.com/obot-platform/obot/pkg/gateway/types" "k8s.io/apiserver/pkg/authentication/authenticator" "k8s.io/apiserver/pkg/authentication/user" ) diff --git a/pkg/gateway/client/client.go b/pkg/gateway/client/client.go index 9159997a..143bcd1e 100644 --- a/pkg/gateway/client/client.go +++ b/pkg/gateway/client/client.go @@ -3,7 +3,7 @@ package client import ( "strconv" - "github.com/acorn-io/acorn/pkg/gateway/db" + "github.com/obot-platform/obot/pkg/gateway/db" ) type Client struct { diff --git a/pkg/gateway/client/identity.go b/pkg/gateway/client/identity.go index ac348026..3042544c 100644 --- a/pkg/gateway/client/identity.go +++ b/pkg/gateway/client/identity.go @@ -4,8 +4,8 @@ import ( "context" "errors" - types2 "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/acorn/pkg/gateway/types" + types2 "github.com/obot-platform/obot/apiclient/types" + "github.com/obot-platform/obot/pkg/gateway/types" "gorm.io/gorm" ) diff --git a/pkg/gateway/client/user.go b/pkg/gateway/client/user.go index 90630557..f180b79e 100644 --- a/pkg/gateway/client/user.go +++ b/pkg/gateway/client/user.go @@ -7,8 +7,8 @@ import ( "net/http" "time" - "github.com/acorn-io/acorn/pkg/gateway/types" - "github.com/acorn-io/acorn/pkg/proxy" + "github.com/obot-platform/obot/pkg/gateway/types" + "github.com/obot-platform/obot/pkg/proxy" "gorm.io/gorm" ) diff --git a/pkg/gateway/db/db.go b/pkg/gateway/db/db.go index c2a05d93..44aa3b25 100644 --- a/pkg/gateway/db/db.go +++ b/pkg/gateway/db/db.go @@ -5,7 +5,7 @@ import ( "database/sql" "net/http" - "github.com/acorn-io/acorn/pkg/gateway/types" + "github.com/obot-platform/obot/pkg/gateway/types" "gorm.io/gorm" ) diff --git a/pkg/gateway/log/log.go b/pkg/gateway/log/log.go index 2b982621..4a309355 100644 --- a/pkg/gateway/log/log.go +++ b/pkg/gateway/log/log.go @@ -4,7 +4,7 @@ import ( "context" "log/slog" - kcontext "github.com/acorn-io/acorn/pkg/gateway/context" + kcontext "github.com/obot-platform/obot/pkg/gateway/context" ) func New() *slog.Logger { diff --git a/pkg/gateway/server/authprovider.go b/pkg/gateway/server/authprovider.go index 69a335d0..7edc484d 100644 --- a/pkg/gateway/server/authprovider.go +++ b/pkg/gateway/server/authprovider.go @@ -5,11 +5,11 @@ import ( "fmt" "net/http" - types2 "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/acorn/pkg/api" - kcontext "github.com/acorn-io/acorn/pkg/gateway/context" - ktime "github.com/acorn-io/acorn/pkg/gateway/time" - "github.com/acorn-io/acorn/pkg/gateway/types" + types2 "github.com/obot-platform/obot/apiclient/types" + "github.com/obot-platform/obot/pkg/api" + kcontext "github.com/obot-platform/obot/pkg/gateway/context" + ktime "github.com/obot-platform/obot/pkg/gateway/time" + "github.com/obot-platform/obot/pkg/gateway/types" "gorm.io/gorm" "gorm.io/gorm/clause" ) diff --git a/pkg/gateway/server/dispatcher/dispatcher.go b/pkg/gateway/server/dispatcher/dispatcher.go index a9da6c59..d5c6cc59 100644 --- a/pkg/gateway/server/dispatcher/dispatcher.go +++ b/pkg/gateway/server/dispatcher/dispatcher.go @@ -12,13 +12,13 @@ import ( "strings" "sync" - "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/acorn/pkg/alias" - "github.com/acorn-io/acorn/pkg/invoke" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" - "github.com/acorn-io/acorn/pkg/system" "github.com/gptscript-ai/go-gptscript" "github.com/gptscript-ai/gptscript/pkg/engine" + "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" + "github.com/obot-platform/obot/pkg/system" apierrors "k8s.io/apimachinery/pkg/api/errors" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" kclient "sigs.k8s.io/controller-runtime/pkg/client" @@ -200,7 +200,7 @@ func (d *Dispatcher) startModelProvider(ctx context.Context, namespace, modelPro } if modelProvider.Name == "openai-model-provider" { - d.openAICred = cred.Env["ACORN_OPENAI_MODEL_PROVIDER_API_KEY"] + d.openAICred = cred.Env["OBOT_OPENAI_MODEL_PROVIDER_API_KEY"] } } diff --git a/pkg/gateway/server/llmproxy.go b/pkg/gateway/server/llmproxy.go index 14bed571..53d2ae21 100644 --- a/pkg/gateway/server/llmproxy.go +++ b/pkg/gateway/server/llmproxy.go @@ -6,10 +6,10 @@ import ( "net/http/httputil" "strings" - types2 "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/acorn/pkg/api" - "github.com/acorn-io/acorn/pkg/gateway/types" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" + 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" ) func (s *Server) llmProxy(req api.Context) error { diff --git a/pkg/gateway/server/middleware.go b/pkg/gateway/server/middleware.go index af0c2a59..bcf1faf3 100644 --- a/pkg/gateway/server/middleware.go +++ b/pkg/gateway/server/middleware.go @@ -4,9 +4,9 @@ import ( "fmt" "runtime/debug" - "github.com/acorn-io/acorn/pkg/api" - "github.com/acorn-io/acorn/pkg/gateway/context" - "github.com/acorn-io/acorn/pkg/gateway/log" + "github.com/obot-platform/obot/pkg/api" + "github.com/obot-platform/obot/pkg/gateway/context" + "github.com/obot-platform/obot/pkg/gateway/log" ) func apply(h api.HandlerFunc, m ...api.Middleware) api.HandlerFunc { diff --git a/pkg/gateway/server/oauth.go b/pkg/gateway/server/oauth.go index f1eedacd..6b6ebcc5 100644 --- a/pkg/gateway/server/oauth.go +++ b/pkg/gateway/server/oauth.go @@ -9,9 +9,9 @@ import ( "net/url" "time" - types2 "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/acorn/pkg/api" - "github.com/acorn-io/acorn/pkg/gateway/types" + types2 "github.com/obot-platform/obot/apiclient/types" + "github.com/obot-platform/obot/pkg/api" + "github.com/obot-platform/obot/pkg/gateway/types" "gorm.io/gorm" ) diff --git a/pkg/gateway/server/oauth_apps.go b/pkg/gateway/server/oauth_apps.go index 41cfed1a..4337c2d2 100644 --- a/pkg/gateway/server/oauth_apps.go +++ b/pkg/gateway/server/oauth_apps.go @@ -14,16 +14,16 @@ import ( "strings" "time" - types2 "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/acorn/pkg/alias" - "github.com/acorn-io/acorn/pkg/api" - "github.com/acorn-io/acorn/pkg/api/handlers" - kcontext "github.com/acorn-io/acorn/pkg/gateway/context" - "github.com/acorn-io/acorn/pkg/gateway/types" - "github.com/acorn-io/acorn/pkg/mvl" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" - "github.com/acorn-io/acorn/pkg/storage/selectors" - "github.com/acorn-io/acorn/pkg/system" + types2 "github.com/obot-platform/obot/apiclient/types" + "github.com/obot-platform/obot/pkg/alias" + "github.com/obot-platform/obot/pkg/api" + "github.com/obot-platform/obot/pkg/api/handlers" + 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" + "github.com/obot-platform/obot/pkg/storage/selectors" + "github.com/obot-platform/obot/pkg/system" "gorm.io/gorm" apierrors "k8s.io/apimachinery/pkg/api/errors" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" diff --git a/pkg/gateway/server/router.go b/pkg/gateway/server/router.go index 2e6b8eea..cb3b4190 100644 --- a/pkg/gateway/server/router.go +++ b/pkg/gateway/server/router.go @@ -1,8 +1,8 @@ package server import ( - "github.com/acorn-io/acorn/pkg/api" - "github.com/acorn-io/acorn/pkg/api/server" + "github.com/obot-platform/obot/pkg/api" + "github.com/obot-platform/obot/pkg/api/server" ) func (s *Server) AddRoutes(mux *server.Server) { diff --git a/pkg/gateway/server/server.go b/pkg/gateway/server/server.go index 71f154cf..8f799f48 100644 --- a/pkg/gateway/server/server.go +++ b/pkg/gateway/server/server.go @@ -8,17 +8,17 @@ import ( "strings" "time" - "github.com/acorn-io/acorn/pkg/gateway/client" - "github.com/acorn-io/acorn/pkg/gateway/db" - "github.com/acorn-io/acorn/pkg/gateway/server/dispatcher" - "github.com/acorn-io/acorn/pkg/gateway/types" - "github.com/acorn-io/acorn/pkg/jwt" + "github.com/obot-platform/obot/pkg/gateway/client" + "github.com/obot-platform/obot/pkg/gateway/db" + "github.com/obot-platform/obot/pkg/gateway/server/dispatcher" + "github.com/obot-platform/obot/pkg/gateway/types" + "github.com/obot-platform/obot/pkg/jwt" "gorm.io/gorm" ) type Options struct { Hostname string - UIHostname string `name:"ui-hostname" env:"ACORN_SERVER_UI_HOSTNAME"` + UIHostname string `name:"ui-hostname" env:"OBOT_SERVER_UI_HOSTNAME"` GatewayDebug bool } diff --git a/pkg/gateway/server/token.go b/pkg/gateway/server/token.go index ab398ac3..8a7ac1d4 100644 --- a/pkg/gateway/server/token.go +++ b/pkg/gateway/server/token.go @@ -11,12 +11,12 @@ import ( "strings" "time" - types2 "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/acorn/pkg/api" - kcontext "github.com/acorn-io/acorn/pkg/gateway/context" - ktime "github.com/acorn-io/acorn/pkg/gateway/time" - "github.com/acorn-io/acorn/pkg/gateway/types" "github.com/google/uuid" + types2 "github.com/obot-platform/obot/apiclient/types" + "github.com/obot-platform/obot/pkg/api" + kcontext "github.com/obot-platform/obot/pkg/gateway/context" + ktime "github.com/obot-platform/obot/pkg/gateway/time" + "github.com/obot-platform/obot/pkg/gateway/types" "gorm.io/gorm" "gorm.io/gorm/clause" ) diff --git a/pkg/gateway/server/tokenreview.go b/pkg/gateway/server/tokenreview.go index 6ac343b7..e28d336f 100644 --- a/pkg/gateway/server/tokenreview.go +++ b/pkg/gateway/server/tokenreview.go @@ -6,7 +6,7 @@ import ( "strconv" "strings" - "github.com/acorn-io/acorn/pkg/gateway/types" + "github.com/obot-platform/obot/pkg/gateway/types" "gorm.io/gorm" "k8s.io/apiserver/pkg/authentication/authenticator" "k8s.io/apiserver/pkg/authentication/user" diff --git a/pkg/gateway/server/user.go b/pkg/gateway/server/user.go index 8fb81e79..b1402386 100644 --- a/pkg/gateway/server/user.go +++ b/pkg/gateway/server/user.go @@ -5,10 +5,10 @@ import ( "fmt" "net/http" - types2 "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/acorn/pkg/api" - "github.com/acorn-io/acorn/pkg/gateway/types" "github.com/gptscript-ai/gptscript/pkg/mvl" + types2 "github.com/obot-platform/obot/apiclient/types" + "github.com/obot-platform/obot/pkg/api" + "github.com/obot-platform/obot/pkg/gateway/types" "gorm.io/gorm" ) diff --git a/pkg/gateway/types/oauth_apps.go b/pkg/gateway/types/oauth_apps.go index b7bd2c60..4d186304 100644 --- a/pkg/gateway/types/oauth_apps.go +++ b/pkg/gateway/types/oauth_apps.go @@ -7,7 +7,7 @@ import ( "regexp" "time" - "github.com/acorn-io/acorn/apiclient/types" + "github.com/obot-platform/obot/apiclient/types" ) const ( diff --git a/pkg/gateway/types/providers.go b/pkg/gateway/types/providers.go index 24fc9076..bfb43999 100644 --- a/pkg/gateway/types/providers.go +++ b/pkg/gateway/types/providers.go @@ -7,7 +7,7 @@ import ( "strings" "time" - ktime "github.com/acorn-io/acorn/pkg/gateway/time" + ktime "github.com/obot-platform/obot/pkg/gateway/time" "gorm.io/gorm" ) diff --git a/pkg/gateway/types/users.go b/pkg/gateway/types/users.go index f9e60fa8..7a8067ba 100644 --- a/pkg/gateway/types/users.go +++ b/pkg/gateway/types/users.go @@ -6,7 +6,7 @@ import ( "strconv" "time" - types2 "github.com/acorn-io/acorn/apiclient/types" + types2 "github.com/obot-platform/obot/apiclient/types" "gorm.io/gorm" ) diff --git a/pkg/invoke/invoker.go b/pkg/invoke/invoker.go index caf1ce73..4f79efcb 100644 --- a/pkg/invoke/invoker.go +++ b/pkg/invoke/invoker.go @@ -12,20 +12,20 @@ import ( "sync" "time" - "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/acorn/logger" - "github.com/acorn-io/acorn/pkg/events" - "github.com/acorn-io/acorn/pkg/gateway/client" - "github.com/acorn-io/acorn/pkg/gz" - "github.com/acorn-io/acorn/pkg/hash" - "github.com/acorn-io/acorn/pkg/jwt" - "github.com/acorn-io/acorn/pkg/render" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" - "github.com/acorn-io/acorn/pkg/system" - "github.com/acorn-io/acorn/pkg/wait" - "github.com/acorn-io/nah/pkg/router" - "github.com/acorn-io/nah/pkg/uncached" "github.com/gptscript-ai/go-gptscript" + "github.com/obot-platform/nah/pkg/router" + "github.com/obot-platform/nah/pkg/uncached" + "github.com/obot-platform/obot/apiclient/types" + "github.com/obot-platform/obot/logger" + "github.com/obot-platform/obot/pkg/events" + "github.com/obot-platform/obot/pkg/gateway/client" + "github.com/obot-platform/obot/pkg/gz" + "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" + "github.com/obot-platform/obot/pkg/system" + "github.com/obot-platform/obot/pkg/wait" apierror "k8s.io/apimachinery/pkg/api/errors" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/client-go/util/retry" @@ -498,22 +498,22 @@ func (i *Invoker) Resume(ctx context.Context, c kclient.WithWatch, thread *v1.Th fmt.Sprintf("GPTSCRIPT_MODEL_PROVIDER_PROXY_URL=%s/api/llm-proxy", i.serverURL), "GPTSCRIPT_MODEL_PROVIDER_PROXY_TOKEN="+token, "GPTSCRIPT_MODEL_PROVIDER_TOKEN="+token, - "ACORN_SERVER_URL="+i.serverURL, - "ACORN_TOKEN="+token, - "ACORN_RUN_ID="+run.Name, - "ACORN_THREAD_ID="+thread.Name, - "ACORN_WORKFLOW_ID="+run.Spec.WorkflowName, - "ACORN_WORKFLOW_STEP_ID="+run.Spec.WorkflowStepID, - "ACORN_AGENT_ID="+run.Spec.AgentName, - "ACORN_DEFAULT_LLM_MODEL="+string(types.DefaultModelAliasTypeLLM), - "ACORN_DEFAULT_LLM_MINI_MODEL="+string(types.DefaultModelAliasTypeLLMMini), - "ACORN_DEFAULT_TEXT_EMBEDDING_MODEL="+string(types.DefaultModelAliasTypeTextEmbedding), - "ACORN_DEFAULT_IMAGE_GENERATION_MODEL="+string(types.DefaultModelAliasTypeImageGeneration), - "ACORN_DEFAULT_VISION_MODEL="+string(types.DefaultModelAliasTypeVision), - "ACORN_USER_ID="+userID, - "ACORN_USER_NAME="+userName, - "ACORN_USER_EMAIL="+userEmail, - "GPTSCRIPT_HTTP_ENV=ACORN_TOKEN,ACORN_RUN_ID,ACORN_THREAD_ID,ACORN_WORKFLOW_ID,ACORN_WORKFLOW_STEP_ID,ACORN_AGENT_ID", + "OBOT_SERVER_URL="+i.serverURL, + "OBOT_TOKEN="+token, + "OBOT_RUN_ID="+run.Name, + "OBOT_THREAD_ID="+thread.Name, + "OBOT_WORKFLOW_ID="+run.Spec.WorkflowName, + "OBOT_WORKFLOW_STEP_ID="+run.Spec.WorkflowStepID, + "OBOT_AGENT_ID="+run.Spec.AgentName, + "OBOT_DEFAULT_LLM_MODEL="+string(types.DefaultModelAliasTypeLLM), + "OBOT_DEFAULT_LLM_MINI_MODEL="+string(types.DefaultModelAliasTypeLLMMini), + "OBOT_DEFAULT_TEXT_EMBEDDING_MODEL="+string(types.DefaultModelAliasTypeTextEmbedding), + "OBOT_DEFAULT_IMAGE_GENERATION_MODEL="+string(types.DefaultModelAliasTypeImageGeneration), + "OBOT_DEFAULT_VISION_MODEL="+string(types.DefaultModelAliasTypeVision), + "OBOT_USER_ID="+userID, + "OBOT_USER_NAME="+userName, + "OBOT_USER_EMAIL="+userEmail, + "GPTSCRIPT_HTTP_ENV=OBOT_TOKEN,OBOT_RUN_ID,OBOT_THREAD_ID,OBOT_WORKFLOW_ID,OBOT_WORKFLOW_STEP_ID,OBOT_AGENT_ID", ), DefaultModel: run.Spec.DefaultModel, DefaultModelProvider: modelProvider, diff --git a/pkg/invoke/step.go b/pkg/invoke/step.go index 5cebde87..fc2bf323 100644 --- a/pkg/invoke/step.go +++ b/pkg/invoke/step.go @@ -5,10 +5,10 @@ import ( "encoding/json" "fmt" - "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/acorn/pkg/render" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" - "github.com/acorn-io/nah/pkg/router" + "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" kclient "sigs.k8s.io/controller-runtime/pkg/client" ) diff --git a/pkg/invoke/system.go b/pkg/invoke/system.go index 46be19c8..7c082cd3 100644 --- a/pkg/invoke/system.go +++ b/pkg/invoke/system.go @@ -5,7 +5,7 @@ import ( "encoding/json" "time" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" + v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" ) type SystemTaskOptions struct { diff --git a/pkg/invoke/workflow.go b/pkg/invoke/workflow.go index 62bdd39f..32ce7a3e 100644 --- a/pkg/invoke/workflow.go +++ b/pkg/invoke/workflow.go @@ -5,12 +5,12 @@ import ( "fmt" "strings" - "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/acorn/pkg/events" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" - "github.com/acorn-io/acorn/pkg/system" - "github.com/acorn-io/acorn/pkg/wait" - "github.com/acorn-io/nah/pkg/router" + "github.com/obot-platform/nah/pkg/router" + "github.com/obot-platform/obot/apiclient/types" + "github.com/obot-platform/obot/pkg/events" + v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" + "github.com/obot-platform/obot/pkg/system" + "github.com/obot-platform/obot/pkg/wait" apierror "k8s.io/apimachinery/pkg/api/errors" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/client-go/util/retry" diff --git a/pkg/jwt/jwt.go b/pkg/jwt/jwt.go index 5a14a262..1274d2e3 100644 --- a/pkg/jwt/jwt.go +++ b/pkg/jwt/jwt.go @@ -4,8 +4,8 @@ import ( "net/http" "strings" - "github.com/acorn-io/acorn/pkg/api/authz" "github.com/golang-jwt/jwt/v5" + "github.com/obot-platform/obot/pkg/api/authz" "k8s.io/apiserver/pkg/authentication/authenticator" "k8s.io/apiserver/pkg/authentication/user" ) @@ -40,12 +40,12 @@ func (t *TokenService) AuthenticateRequest(req *http.Request) (*authenticator.Re authz.AuthenticatedGroup, }, Extra: map[string][]string{ - "acorn:runID": {tokenContext.RunID}, - "acorn:threadID": {tokenContext.ThreadID}, - "acorn:agentID": {tokenContext.AgentID}, - "acorn:userID": {tokenContext.UserID}, - "acorn:userName": {tokenContext.UserName}, - "acorn:userEmail": {tokenContext.UserEmail}, + "obot:runID": {tokenContext.RunID}, + "obot:threadID": {tokenContext.ThreadID}, + "obot:agentID": {tokenContext.AgentID}, + "obot:userID": {tokenContext.UserID}, + "obot:userName": {tokenContext.UserName}, + "obot:userEmail": {tokenContext.UserEmail}, }, }, }, true, nil diff --git a/pkg/mvl/redirect.go b/pkg/mvl/redirect.go index baf622b2..15ff4402 100644 --- a/pkg/mvl/redirect.go +++ b/pkg/mvl/redirect.go @@ -1,6 +1,6 @@ package mvl -import "github.com/acorn-io/acorn/logger" +import "github.com/obot-platform/obot/logger" var Package = logger.Package diff --git a/pkg/proxy/proxy.go b/pkg/proxy/proxy.go index feca78b4..a5fdcaea 100644 --- a/pkg/proxy/proxy.go +++ b/pkg/proxy/proxy.go @@ -7,10 +7,10 @@ import ( "strings" "time" - "github.com/acorn-io/acorn/pkg/mvl" oauth2proxy "github.com/oauth2-proxy/oauth2-proxy/v7" "github.com/oauth2-proxy/oauth2-proxy/v7/pkg/apis/options" "github.com/oauth2-proxy/oauth2-proxy/v7/pkg/validation" + "github.com/obot-platform/obot/pkg/mvl" "k8s.io/apiserver/pkg/authentication/authenticator" "k8s.io/apiserver/pkg/authentication/user" ) @@ -63,7 +63,7 @@ func New(serverURL string, authProviderID uint, cfg Config) (*Proxy, error) { oauthProxyOpts.Server.BindAddress = "" oauthProxyOpts.MetricsServer.BindAddress = "" oauthProxyOpts.Cookie.Refresh = time.Hour - oauthProxyOpts.Cookie.Name = "acorn_access_token" + oauthProxyOpts.Cookie.Name = "obot_access_token" oauthProxyOpts.Cookie.Secret = cfg.AuthCookieSecret oauthProxyOpts.Cookie.Secure = strings.HasPrefix(serverURL, "https://") oauthProxyOpts.UpstreamServers = options.UpstreamConfig{ diff --git a/pkg/render/render.go b/pkg/render/render.go index c4282b57..abb8f58f 100644 --- a/pkg/render/render.go +++ b/pkg/render/render.go @@ -8,9 +8,9 @@ import ( "sort" "strings" - "github.com/acorn-io/acorn/apiclient/types" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" "github.com/gptscript-ai/go-gptscript" + "github.com/obot-platform/obot/apiclient/types" + v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" apierror "k8s.io/apimachinery/pkg/api/errors" kclient "sigs.k8s.io/controller-runtime/pkg/client" ) @@ -267,7 +267,7 @@ func manifestToTool(manifest types.AgentManifest, agentType, ref, id string) gpt } } toolDef.Instructions = fmt.Sprintf(`#!/bin/bash -#ACORN_SUBCALL: TARGET: %s +#OBOT_SUBCALL: TARGET: %s INPUT=$(${GPTSCRIPT_BIN} getenv GPTSCRIPT_INPUT) if echo "${INPUT}" | grep -q '^{'; then echo '{"%s":"%s","type":"OttoSubFlow",' diff --git a/pkg/render/workflow.go b/pkg/render/workflow.go index bc488242..0fc7846f 100644 --- a/pkg/render/workflow.go +++ b/pkg/render/workflow.go @@ -6,10 +6,10 @@ import ( "regexp" "strings" - "github.com/acorn-io/acorn/apiclient/types" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" - "github.com/acorn-io/acorn/pkg/system" - "github.com/acorn-io/nah/pkg/router" + "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" + "github.com/obot-platform/obot/pkg/system" 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/server/server.go b/pkg/server/server.go index c92ca5e0..830da81a 100644 --- a/pkg/server/server.go +++ b/pkg/server/server.go @@ -5,10 +5,10 @@ import ( "fmt" "net/http" - "github.com/acorn-io/acorn/logger" - "github.com/acorn-io/acorn/pkg/api/router" - "github.com/acorn-io/acorn/pkg/controller" - "github.com/acorn-io/acorn/pkg/services" + "github.com/obot-platform/obot/logger" + "github.com/obot-platform/obot/pkg/api/router" + "github.com/obot-platform/obot/pkg/controller" + "github.com/obot-platform/obot/pkg/services" "github.com/rs/cors" ) diff --git a/pkg/services/config.go b/pkg/services/config.go index ad238538..ecc86332 100644 --- a/pkg/services/config.go +++ b/pkg/services/config.go @@ -8,40 +8,40 @@ import ( "path/filepath" "strings" - "github.com/acorn-io/acorn/pkg/aihelper" - "github.com/acorn-io/acorn/pkg/api/authn" - "github.com/acorn-io/acorn/pkg/api/authz" - "github.com/acorn-io/acorn/pkg/api/server" - "github.com/acorn-io/acorn/pkg/credstores" - "github.com/acorn-io/acorn/pkg/events" - "github.com/acorn-io/acorn/pkg/gateway/client" - "github.com/acorn-io/acorn/pkg/gateway/db" - gserver "github.com/acorn-io/acorn/pkg/gateway/server" - "github.com/acorn-io/acorn/pkg/gateway/server/dispatcher" - "github.com/acorn-io/acorn/pkg/invoke" - "github.com/acorn-io/acorn/pkg/jwt" - "github.com/acorn-io/acorn/pkg/proxy" - "github.com/acorn-io/acorn/pkg/smtp" - "github.com/acorn-io/acorn/pkg/storage" - "github.com/acorn-io/acorn/pkg/storage/scheme" - "github.com/acorn-io/acorn/pkg/storage/services" - "github.com/acorn-io/acorn/pkg/system" - baaah "github.com/acorn-io/nah" - "github.com/acorn-io/nah/pkg/leader" - "github.com/acorn-io/nah/pkg/router" "github.com/adrg/xdg" "github.com/gptscript-ai/go-gptscript" "github.com/gptscript-ai/gptscript/pkg/cache" gptscriptai "github.com/gptscript-ai/gptscript/pkg/gptscript" "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/leader" + "github.com/obot-platform/nah/pkg/router" + "github.com/obot-platform/obot/pkg/aihelper" + "github.com/obot-platform/obot/pkg/api/authn" + "github.com/obot-platform/obot/pkg/api/authz" + "github.com/obot-platform/obot/pkg/api/server" + "github.com/obot-platform/obot/pkg/credstores" + "github.com/obot-platform/obot/pkg/events" + "github.com/obot-platform/obot/pkg/gateway/client" + "github.com/obot-platform/obot/pkg/gateway/db" + gserver "github.com/obot-platform/obot/pkg/gateway/server" + "github.com/obot-platform/obot/pkg/gateway/server/dispatcher" + "github.com/obot-platform/obot/pkg/invoke" + "github.com/obot-platform/obot/pkg/jwt" + "github.com/obot-platform/obot/pkg/proxy" + "github.com/obot-platform/obot/pkg/smtp" + "github.com/obot-platform/obot/pkg/storage" + "github.com/obot-platform/obot/pkg/storage/scheme" + "github.com/obot-platform/obot/pkg/storage/services" + "github.com/obot-platform/obot/pkg/system" coordinationv1 "k8s.io/api/coordination/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apiserver/pkg/authentication/authenticator" "k8s.io/apiserver/pkg/authentication/request/union" // Setup nah logging - _ "github.com/acorn-io/nah/pkg/logrus" + _ "github.com/obot-platform/nah/pkg/logrus" ) type ( @@ -51,17 +51,17 @@ type ( type Config struct { HTTPListenPort int `usage:"HTTP port to listen on" default:"8080" name:"http-listen-port"` - DevMode bool `usage:"Enable development mode" default:"false" name:"dev-mode" env:"ACORN_DEV_MODE"` + DevMode bool `usage:"Enable development mode" default:"false" name:"dev-mode" env:"OBOT_DEV_MODE"` DevUIPort int `usage:"The port on localhost running the dev instance of the UI" default:"5173"` AllowedOrigin string `usage:"Allowed origin for CORS"` - ToolRegistry string `usage:"The tool reference for the tool registry" default:"github.com/acorn-io/tools"` - WorkspaceProviderType string `usage:"The type of workspace provider to use for non-knowledge workspaces" default:"directory" env:"ACORN_WORKSPACE_PROVIDER_TYPE"` + ToolRegistry string `usage:"The tool reference for the tool registry" default:"github.com/obot-platform/tools"` + WorkspaceProviderType string `usage:"The type of workspace provider to use for non-knowledge workspaces" default:"directory" env:"OBOT_WORKSPACE_PROVIDER_TYPE"` WorkspaceTool string `usage:"The tool reference for the workspace provider" default:"github.com/gptscript-ai/workspace-provider"` DatasetsTool string `usage:"The tool reference for the dataset provider" default:"github.com/gptscript-ai/datasets"` HelperModel string `usage:"The model used to generate names and descriptions" default:"gpt-4o-mini"` - AWSKMSKeyARN string `usage:"The ARN of the AWS KMS key to use for encrypting credential storage" env:"ACORN_AWS_KMS_KEY_ARN" name:"aws-kms-key-arn"` + AWSKMSKeyARN string `usage:"The ARN of the AWS KMS key to use for encrypting credential storage" env:"OBOT_AWS_KMS_KEY_ARN" name:"aws-kms-key-arn"` EncryptionConfigFile string `usage:"The path to the encryption configuration file" default:"./encryption.yaml"` - KnowledgeSetIngestionLimit int `usage:"The maximum number of files to ingest into a knowledge set" default:"1000" env:"ACORN_KNOWLEDGESET_INGESTION_LIMIT" name:"knowledge-set-ingestion-limit"` + KnowledgeSetIngestionLimit int `usage:"The maximum number of files to ingest into a knowledge set" default:"1000" env:"OBOT_KNOWLEDGESET_INGESTION_LIMIT" name:"knowledge-set-ingestion-limit"` EmailServerName string `usage:"The name of the email server to display for email receivers (default: ui-hostname value)"` AuthConfig @@ -92,7 +92,7 @@ type Services struct { const ( defaultDatasetsTool = "github.com/gptscript-ai/datasets" - defaultToolsRegistry = "github.com/acorn-io/tools" + defaultToolsRegistry = "github.com/obot-platform/tools" ) func newGPTScript(ctx context.Context, workspaceTool, datasetsTool, toolsRegistry string) (*gptscript.GPTScript, error) { @@ -130,7 +130,7 @@ func newGPTScript(ctx context.Context, workspaceTool, datasetsTool, toolsRegistr } if os.Getenv("WORKSPACE_PROVIDER_DATA_HOME") == "" { - if err = os.Setenv("WORKSPACE_PROVIDER_DATA_HOME", filepath.Join(xdg.DataHome, "acorn", "workspace-provider")); err != nil { + if err = os.Setenv("WORKSPACE_PROVIDER_DATA_HOME", filepath.Join(xdg.DataHome, "obot", "workspace-provider")); err != nil { return nil, err } } diff --git a/pkg/smtp/smtp.go b/pkg/smtp/smtp.go index e693edd9..9c2833d5 100644 --- a/pkg/smtp/smtp.go +++ b/pkg/smtp/smtp.go @@ -15,11 +15,11 @@ import ( "path" "strings" - "github.com/acorn-io/acorn/logger" - "github.com/acorn-io/acorn/pkg/alias" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" - "github.com/acorn-io/acorn/pkg/system" "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" + "github.com/obot-platform/obot/pkg/system" 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/storage/apis/otto.otto8.ai/v1/agent.go b/pkg/storage/apis/otto.otto8.ai/v1/agent.go index 339f8b76..42c7f71d 100644 --- a/pkg/storage/apis/otto.otto8.ai/v1/agent.go +++ b/pkg/storage/apis/otto.otto8.ai/v1/agent.go @@ -3,8 +3,8 @@ package v1 import ( "context" - "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/nah/pkg/fields" + "github.com/obot-platform/nah/pkg/fields" + "github.com/obot-platform/obot/apiclient/types" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" kclient "sigs.k8s.io/controller-runtime/pkg/client" ) diff --git a/pkg/storage/apis/otto.otto8.ai/v1/cronjob.go b/pkg/storage/apis/otto.otto8.ai/v1/cronjob.go index 27f6ac04..eb45befe 100644 --- a/pkg/storage/apis/otto.otto8.ai/v1/cronjob.go +++ b/pkg/storage/apis/otto.otto8.ai/v1/cronjob.go @@ -3,9 +3,9 @@ package v1 import ( "slices" - "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/acorn/pkg/system" - "github.com/acorn-io/nah/pkg/fields" + "github.com/obot-platform/nah/pkg/fields" + "github.com/obot-platform/obot/apiclient/types" + "github.com/obot-platform/obot/pkg/system" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" ) diff --git a/pkg/storage/apis/otto.otto8.ai/v1/defaultmodelalias.go b/pkg/storage/apis/otto.otto8.ai/v1/defaultmodelalias.go index af44f79d..a983ea92 100644 --- a/pkg/storage/apis/otto.otto8.ai/v1/defaultmodelalias.go +++ b/pkg/storage/apis/otto.otto8.ai/v1/defaultmodelalias.go @@ -1,7 +1,7 @@ package v1 import ( - "github.com/acorn-io/acorn/apiclient/types" + "github.com/obot-platform/obot/apiclient/types" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" ) diff --git a/pkg/storage/apis/otto.otto8.ai/v1/emailaddress.go b/pkg/storage/apis/otto.otto8.ai/v1/emailaddress.go index 35e7309c..a59e9fb6 100644 --- a/pkg/storage/apis/otto.otto8.ai/v1/emailaddress.go +++ b/pkg/storage/apis/otto.otto8.ai/v1/emailaddress.go @@ -3,9 +3,9 @@ package v1 import ( "slices" - "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/acorn/pkg/system" - "github.com/acorn-io/nah/pkg/fields" + "github.com/obot-platform/nah/pkg/fields" + "github.com/obot-platform/obot/apiclient/types" + "github.com/obot-platform/obot/pkg/system" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" ) diff --git a/pkg/storage/apis/otto.otto8.ai/v1/file.go b/pkg/storage/apis/otto.otto8.ai/v1/file.go index 1c6c5527..ae92021e 100644 --- a/pkg/storage/apis/otto.otto8.ai/v1/file.go +++ b/pkg/storage/apis/otto.otto8.ai/v1/file.go @@ -4,8 +4,8 @@ import ( "crypto/sha256" "fmt" - "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/nah/pkg/fields" + "github.com/obot-platform/nah/pkg/fields" + "github.com/obot-platform/obot/apiclient/types" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" ) diff --git a/pkg/storage/apis/otto.otto8.ai/v1/knowledgesource.go b/pkg/storage/apis/otto.otto8.ai/v1/knowledgesource.go index 860dcf4f..07eab5cf 100644 --- a/pkg/storage/apis/otto.otto8.ai/v1/knowledgesource.go +++ b/pkg/storage/apis/otto.otto8.ai/v1/knowledgesource.go @@ -1,7 +1,7 @@ package v1 import ( - "github.com/acorn-io/acorn/apiclient/types" + "github.com/obot-platform/obot/apiclient/types" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" ) diff --git a/pkg/storage/apis/otto.otto8.ai/v1/model.go b/pkg/storage/apis/otto.otto8.ai/v1/model.go index 98ae9b32..3263828c 100644 --- a/pkg/storage/apis/otto.otto8.ai/v1/model.go +++ b/pkg/storage/apis/otto.otto8.ai/v1/model.go @@ -1,8 +1,8 @@ package v1 import ( - "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/nah/pkg/fields" + "github.com/obot-platform/nah/pkg/fields" + "github.com/obot-platform/obot/apiclient/types" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" ) diff --git a/pkg/storage/apis/otto.otto8.ai/v1/oauthapp.go b/pkg/storage/apis/otto.otto8.ai/v1/oauthapp.go index fd998b63..dc5abf4e 100644 --- a/pkg/storage/apis/otto.otto8.ai/v1/oauthapp.go +++ b/pkg/storage/apis/otto.otto8.ai/v1/oauthapp.go @@ -3,9 +3,9 @@ package v1 import ( "fmt" - "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/acorn/pkg/system" - "github.com/acorn-io/nah/pkg/fields" + "github.com/obot-platform/nah/pkg/fields" + "github.com/obot-platform/obot/apiclient/types" + "github.com/obot-platform/obot/pkg/system" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" ) diff --git a/pkg/storage/apis/otto.otto8.ai/v1/run.go b/pkg/storage/apis/otto.otto8.ai/v1/run.go index ef8e8ceb..f51398e6 100644 --- a/pkg/storage/apis/otto.otto8.ai/v1/run.go +++ b/pkg/storage/apis/otto.otto8.ai/v1/run.go @@ -1,8 +1,8 @@ package v1 import ( - "github.com/acorn-io/acorn/apiclient/types" gptscriptclient "github.com/gptscript-ai/go-gptscript" + "github.com/obot-platform/obot/apiclient/types" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" ) diff --git a/pkg/storage/apis/otto.otto8.ai/v1/scheme.go b/pkg/storage/apis/otto.otto8.ai/v1/scheme.go index 2b34377a..4a59e764 100644 --- a/pkg/storage/apis/otto.otto8.ai/v1/scheme.go +++ b/pkg/storage/apis/otto.otto8.ai/v1/scheme.go @@ -1,8 +1,8 @@ package v1 import ( - otto8_gptscript_ai "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai" - "github.com/acorn-io/nah/pkg/fields" + "github.com/obot-platform/nah/pkg/fields" + otto8_gptscript_ai "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/runtime" "k8s.io/apimachinery/pkg/runtime/schema" diff --git a/pkg/storage/apis/otto.otto8.ai/v1/thread.go b/pkg/storage/apis/otto.otto8.ai/v1/thread.go index 080e6ffa..807f8f9f 100644 --- a/pkg/storage/apis/otto.otto8.ai/v1/thread.go +++ b/pkg/storage/apis/otto.otto8.ai/v1/thread.go @@ -1,8 +1,8 @@ package v1 import ( - "github.com/acorn-io/acorn/apiclient/types" gptscriptclient "github.com/gptscript-ai/go-gptscript" + "github.com/obot-platform/obot/apiclient/types" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" ) diff --git a/pkg/storage/apis/otto.otto8.ai/v1/time.go b/pkg/storage/apis/otto.otto8.ai/v1/time.go index dadee161..f873bdb6 100644 --- a/pkg/storage/apis/otto.otto8.ai/v1/time.go +++ b/pkg/storage/apis/otto.otto8.ai/v1/time.go @@ -1,7 +1,7 @@ package v1 import ( - "github.com/acorn-io/acorn/apiclient/types" + "github.com/obot-platform/obot/apiclient/types" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" ) diff --git a/pkg/storage/apis/otto.otto8.ai/v1/toolreference.go b/pkg/storage/apis/otto.otto8.ai/v1/toolreference.go index 748f51fc..90e3a145 100644 --- a/pkg/storage/apis/otto.otto8.ai/v1/toolreference.go +++ b/pkg/storage/apis/otto.otto8.ai/v1/toolreference.go @@ -1,8 +1,8 @@ package v1 import ( - "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/nah/pkg/fields" + "github.com/obot-platform/nah/pkg/fields" + "github.com/obot-platform/obot/apiclient/types" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" ) diff --git a/pkg/storage/apis/otto.otto8.ai/v1/webhook.go b/pkg/storage/apis/otto.otto8.ai/v1/webhook.go index ee43e8bc..4b7f3b7c 100644 --- a/pkg/storage/apis/otto.otto8.ai/v1/webhook.go +++ b/pkg/storage/apis/otto.otto8.ai/v1/webhook.go @@ -3,9 +3,9 @@ package v1 import ( "slices" - "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/acorn/pkg/system" - "github.com/acorn-io/nah/pkg/fields" + "github.com/obot-platform/nah/pkg/fields" + "github.com/obot-platform/obot/apiclient/types" + "github.com/obot-platform/obot/pkg/system" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" ) diff --git a/pkg/storage/apis/otto.otto8.ai/v1/workflow.go b/pkg/storage/apis/otto.otto8.ai/v1/workflow.go index 8a6405a3..44b1cdde 100644 --- a/pkg/storage/apis/otto.otto8.ai/v1/workflow.go +++ b/pkg/storage/apis/otto.otto8.ai/v1/workflow.go @@ -3,8 +3,8 @@ package v1 import ( "slices" - "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/nah/pkg/fields" + "github.com/obot-platform/nah/pkg/fields" + "github.com/obot-platform/obot/apiclient/types" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" ) diff --git a/pkg/storage/apis/otto.otto8.ai/v1/workflowexecution.go b/pkg/storage/apis/otto.otto8.ai/v1/workflowexecution.go index 932ad065..8f5f7022 100644 --- a/pkg/storage/apis/otto.otto8.ai/v1/workflowexecution.go +++ b/pkg/storage/apis/otto.otto8.ai/v1/workflowexecution.go @@ -1,8 +1,8 @@ package v1 import ( - "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/nah/pkg/fields" + "github.com/obot-platform/nah/pkg/fields" + "github.com/obot-platform/obot/apiclient/types" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" ) diff --git a/pkg/storage/apis/otto.otto8.ai/v1/workflowstep.go b/pkg/storage/apis/otto.otto8.ai/v1/workflowstep.go index 82ac6492..2fa45e32 100644 --- a/pkg/storage/apis/otto.otto8.ai/v1/workflowstep.go +++ b/pkg/storage/apis/otto.otto8.ai/v1/workflowstep.go @@ -3,8 +3,8 @@ package v1 import ( "slices" - "github.com/acorn-io/acorn/apiclient/types" - "github.com/acorn-io/nah/pkg/fields" + "github.com/obot-platform/nah/pkg/fields" + "github.com/obot-platform/obot/apiclient/types" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" ) diff --git a/pkg/storage/apis/otto.otto8.ai/v1/workspace.go b/pkg/storage/apis/otto.otto8.ai/v1/workspace.go index 4e1f9412..27be6cc9 100644 --- a/pkg/storage/apis/otto.otto8.ai/v1/workspace.go +++ b/pkg/storage/apis/otto.otto8.ai/v1/workspace.go @@ -1,7 +1,7 @@ package v1 import ( - "github.com/acorn-io/nah/pkg/fields" + "github.com/obot-platform/nah/pkg/fields" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" ) diff --git a/pkg/storage/apis/otto.otto8.ai/v1/zz_generated.deepcopy.go b/pkg/storage/apis/otto.otto8.ai/v1/zz_generated.deepcopy.go index f8b95100..64873952 100644 --- a/pkg/storage/apis/otto.otto8.ai/v1/zz_generated.deepcopy.go +++ b/pkg/storage/apis/otto.otto8.ai/v1/zz_generated.deepcopy.go @@ -5,7 +5,7 @@ package v1 import ( - "github.com/acorn-io/acorn/apiclient/types" + "github.com/obot-platform/obot/apiclient/types" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/runtime" ) diff --git a/pkg/storage/authn/authn.go b/pkg/storage/authn/authn.go index abf6158a..198d3dee 100644 --- a/pkg/storage/authn/authn.go +++ b/pkg/storage/authn/authn.go @@ -4,7 +4,7 @@ import ( "net/http" "strings" - "github.com/acorn-io/acorn/pkg/storage/authz" + "github.com/obot-platform/obot/pkg/storage/authz" "k8s.io/apiserver/pkg/authentication/authenticator" "k8s.io/apiserver/pkg/authentication/user" ) diff --git a/pkg/storage/openapi/generated/openapi_generated.go b/pkg/storage/openapi/generated/openapi_generated.go index d1dd157b..7f97d805 100644 --- a/pkg/storage/openapi/generated/openapi_generated.go +++ b/pkg/storage/openapi/generated/openapi_generated.go @@ -6,7 +6,7 @@ package generated import ( - types "github.com/acorn-io/acorn/apiclient/types" + types "github.com/obot-platform/obot/apiclient/types" resource "k8s.io/apimachinery/pkg/api/resource" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" intstr "k8s.io/apimachinery/pkg/util/intstr" @@ -16,241 +16,241 @@ import ( func GetOpenAPIDefinitions(ref common.ReferenceCallback) map[string]common.OpenAPIDefinition { return map[string]common.OpenAPIDefinition{ - "github.com/acorn-io/acorn/apiclient/types.Agent": schema_acorn_io_acorn_apiclient_types_Agent(ref), - "github.com/acorn-io/acorn/apiclient/types.AgentIcons": schema_acorn_io_acorn_apiclient_types_AgentIcons(ref), - "github.com/acorn-io/acorn/apiclient/types.AgentList": schema_acorn_io_acorn_apiclient_types_AgentList(ref), - "github.com/acorn-io/acorn/apiclient/types.AgentManifest": schema_acorn_io_acorn_apiclient_types_AgentManifest(ref), - "github.com/acorn-io/acorn/apiclient/types.Assistant": schema_acorn_io_acorn_apiclient_types_Assistant(ref), - "github.com/acorn-io/acorn/apiclient/types.AssistantList": schema_acorn_io_acorn_apiclient_types_AssistantList(ref), - "github.com/acorn-io/acorn/apiclient/types.AssistantTool": schema_acorn_io_acorn_apiclient_types_AssistantTool(ref), - "github.com/acorn-io/acorn/apiclient/types.AssistantToolList": schema_acorn_io_acorn_apiclient_types_AssistantToolList(ref), - "github.com/acorn-io/acorn/apiclient/types.Credential": schema_acorn_io_acorn_apiclient_types_Credential(ref), - "github.com/acorn-io/acorn/apiclient/types.CredentialList": schema_acorn_io_acorn_apiclient_types_CredentialList(ref), - "github.com/acorn-io/acorn/apiclient/types.CronJob": schema_acorn_io_acorn_apiclient_types_CronJob(ref), - "github.com/acorn-io/acorn/apiclient/types.CronJobList": schema_acorn_io_acorn_apiclient_types_CronJobList(ref), - "github.com/acorn-io/acorn/apiclient/types.CronJobManifest": schema_acorn_io_acorn_apiclient_types_CronJobManifest(ref), - "github.com/acorn-io/acorn/apiclient/types.DefaultModelAlias": schema_acorn_io_acorn_apiclient_types_DefaultModelAlias(ref), - "github.com/acorn-io/acorn/apiclient/types.DefaultModelAliasList": schema_acorn_io_acorn_apiclient_types_DefaultModelAliasList(ref), - "github.com/acorn-io/acorn/apiclient/types.DefaultModelAliasManifest": schema_acorn_io_acorn_apiclient_types_DefaultModelAliasManifest(ref), - "github.com/acorn-io/acorn/apiclient/types.EmailReceiver": schema_acorn_io_acorn_apiclient_types_EmailReceiver(ref), - "github.com/acorn-io/acorn/apiclient/types.EmailReceiverList": schema_acorn_io_acorn_apiclient_types_EmailReceiverList(ref), - "github.com/acorn-io/acorn/apiclient/types.EmailReceiverManifest": schema_acorn_io_acorn_apiclient_types_EmailReceiverManifest(ref), - "github.com/acorn-io/acorn/apiclient/types.EnvVar": schema_acorn_io_acorn_apiclient_types_EnvVar(ref), - "github.com/acorn-io/acorn/apiclient/types.ErrHTTP": schema_acorn_io_acorn_apiclient_types_ErrHTTP(ref), - "github.com/acorn-io/acorn/apiclient/types.File": schema_acorn_io_acorn_apiclient_types_File(ref), - "github.com/acorn-io/acorn/apiclient/types.FileList": schema_acorn_io_acorn_apiclient_types_FileList(ref), - "github.com/acorn-io/acorn/apiclient/types.If": schema_acorn_io_acorn_apiclient_types_If(ref), - "github.com/acorn-io/acorn/apiclient/types.Item": schema_acorn_io_acorn_apiclient_types_Item(ref), - "github.com/acorn-io/acorn/apiclient/types.KnowledgeFile": schema_acorn_io_acorn_apiclient_types_KnowledgeFile(ref), - "github.com/acorn-io/acorn/apiclient/types.KnowledgeFileList": schema_acorn_io_acorn_apiclient_types_KnowledgeFileList(ref), - "github.com/acorn-io/acorn/apiclient/types.KnowledgeSource": schema_acorn_io_acorn_apiclient_types_KnowledgeSource(ref), - "github.com/acorn-io/acorn/apiclient/types.KnowledgeSourceInput": schema_acorn_io_acorn_apiclient_types_KnowledgeSourceInput(ref), - "github.com/acorn-io/acorn/apiclient/types.KnowledgeSourceList": schema_acorn_io_acorn_apiclient_types_KnowledgeSourceList(ref), - "github.com/acorn-io/acorn/apiclient/types.KnowledgeSourceManifest": schema_acorn_io_acorn_apiclient_types_KnowledgeSourceManifest(ref), - "github.com/acorn-io/acorn/apiclient/types.Metadata": schema_acorn_io_acorn_apiclient_types_Metadata(ref), - "github.com/acorn-io/acorn/apiclient/types.Model": schema_acorn_io_acorn_apiclient_types_Model(ref), - "github.com/acorn-io/acorn/apiclient/types.ModelList": schema_acorn_io_acorn_apiclient_types_ModelList(ref), - "github.com/acorn-io/acorn/apiclient/types.ModelManifest": schema_acorn_io_acorn_apiclient_types_ModelManifest(ref), - "github.com/acorn-io/acorn/apiclient/types.ModelProvider": schema_acorn_io_acorn_apiclient_types_ModelProvider(ref), - "github.com/acorn-io/acorn/apiclient/types.ModelProviderList": schema_acorn_io_acorn_apiclient_types_ModelProviderList(ref), - "github.com/acorn-io/acorn/apiclient/types.ModelProviderManifest": schema_acorn_io_acorn_apiclient_types_ModelProviderManifest(ref), - "github.com/acorn-io/acorn/apiclient/types.ModelProviderStatus": schema_acorn_io_acorn_apiclient_types_ModelProviderStatus(ref), - "github.com/acorn-io/acorn/apiclient/types.ModelStatus": schema_acorn_io_acorn_apiclient_types_ModelStatus(ref), - "github.com/acorn-io/acorn/apiclient/types.NotionConfig": schema_acorn_io_acorn_apiclient_types_NotionConfig(ref), - "github.com/acorn-io/acorn/apiclient/types.OAuthApp": schema_acorn_io_acorn_apiclient_types_OAuthApp(ref), - "github.com/acorn-io/acorn/apiclient/types.OAuthAppList": schema_acorn_io_acorn_apiclient_types_OAuthAppList(ref), - "github.com/acorn-io/acorn/apiclient/types.OAuthAppLoginAuthStatus": schema_acorn_io_acorn_apiclient_types_OAuthAppLoginAuthStatus(ref), - "github.com/acorn-io/acorn/apiclient/types.OAuthAppManifest": schema_acorn_io_acorn_apiclient_types_OAuthAppManifest(ref), - "github.com/acorn-io/acorn/apiclient/types.OneDriveConfig": schema_acorn_io_acorn_apiclient_types_OneDriveConfig(ref), - "github.com/acorn-io/acorn/apiclient/types.Progress": schema_acorn_io_acorn_apiclient_types_Progress(ref), - "github.com/acorn-io/acorn/apiclient/types.Prompt": schema_acorn_io_acorn_apiclient_types_Prompt(ref), - "github.com/acorn-io/acorn/apiclient/types.PromptResponse": schema_acorn_io_acorn_apiclient_types_PromptResponse(ref), - "github.com/acorn-io/acorn/apiclient/types.Run": schema_acorn_io_acorn_apiclient_types_Run(ref), - "github.com/acorn-io/acorn/apiclient/types.RunList": schema_acorn_io_acorn_apiclient_types_RunList(ref), - "github.com/acorn-io/acorn/apiclient/types.Schedule": schema_acorn_io_acorn_apiclient_types_Schedule(ref), - "github.com/acorn-io/acorn/apiclient/types.Step": schema_acorn_io_acorn_apiclient_types_Step(ref), - "github.com/acorn-io/acorn/apiclient/types.StepTemplateInvoke": schema_acorn_io_acorn_apiclient_types_StepTemplateInvoke(ref), - "github.com/acorn-io/acorn/apiclient/types.SubFlow": schema_acorn_io_acorn_apiclient_types_SubFlow(ref), - "github.com/acorn-io/acorn/apiclient/types.Table": schema_acorn_io_acorn_apiclient_types_Table(ref), - "github.com/acorn-io/acorn/apiclient/types.TableList": schema_acorn_io_acorn_apiclient_types_TableList(ref), - "github.com/acorn-io/acorn/apiclient/types.Task": schema_acorn_io_acorn_apiclient_types_Task(ref), - "github.com/acorn-io/acorn/apiclient/types.TaskEmail": schema_acorn_io_acorn_apiclient_types_TaskEmail(ref), - "github.com/acorn-io/acorn/apiclient/types.TaskIf": schema_acorn_io_acorn_apiclient_types_TaskIf(ref), - "github.com/acorn-io/acorn/apiclient/types.TaskList": schema_acorn_io_acorn_apiclient_types_TaskList(ref), - "github.com/acorn-io/acorn/apiclient/types.TaskManifest": schema_acorn_io_acorn_apiclient_types_TaskManifest(ref), - "github.com/acorn-io/acorn/apiclient/types.TaskOnDemand": schema_acorn_io_acorn_apiclient_types_TaskOnDemand(ref), - "github.com/acorn-io/acorn/apiclient/types.TaskRun": schema_acorn_io_acorn_apiclient_types_TaskRun(ref), - "github.com/acorn-io/acorn/apiclient/types.TaskRunList": schema_acorn_io_acorn_apiclient_types_TaskRunList(ref), - "github.com/acorn-io/acorn/apiclient/types.TaskStep": schema_acorn_io_acorn_apiclient_types_TaskStep(ref), - "github.com/acorn-io/acorn/apiclient/types.TaskWebhook": schema_acorn_io_acorn_apiclient_types_TaskWebhook(ref), - "github.com/acorn-io/acorn/apiclient/types.Template": schema_acorn_io_acorn_apiclient_types_Template(ref), - "github.com/acorn-io/acorn/apiclient/types.Thread": schema_acorn_io_acorn_apiclient_types_Thread(ref), - "github.com/acorn-io/acorn/apiclient/types.ThreadList": schema_acorn_io_acorn_apiclient_types_ThreadList(ref), - "github.com/acorn-io/acorn/apiclient/types.ThreadManifest": schema_acorn_io_acorn_apiclient_types_ThreadManifest(ref), - "github.com/acorn-io/acorn/apiclient/types.Time": schema_acorn_io_acorn_apiclient_types_Time(ref), - "github.com/acorn-io/acorn/apiclient/types.ToolCall": schema_acorn_io_acorn_apiclient_types_ToolCall(ref), - "github.com/acorn-io/acorn/apiclient/types.ToolInput": schema_acorn_io_acorn_apiclient_types_ToolInput(ref), - "github.com/acorn-io/acorn/apiclient/types.ToolReference": schema_acorn_io_acorn_apiclient_types_ToolReference(ref), - "github.com/acorn-io/acorn/apiclient/types.ToolReferenceList": schema_acorn_io_acorn_apiclient_types_ToolReferenceList(ref), - "github.com/acorn-io/acorn/apiclient/types.ToolReferenceManifest": schema_acorn_io_acorn_apiclient_types_ToolReferenceManifest(ref), - "github.com/acorn-io/acorn/apiclient/types.User": schema_acorn_io_acorn_apiclient_types_User(ref), - "github.com/acorn-io/acorn/apiclient/types.UserList": schema_acorn_io_acorn_apiclient_types_UserList(ref), - "github.com/acorn-io/acorn/apiclient/types.Webhook": schema_acorn_io_acorn_apiclient_types_Webhook(ref), - "github.com/acorn-io/acorn/apiclient/types.WebhookList": schema_acorn_io_acorn_apiclient_types_WebhookList(ref), - "github.com/acorn-io/acorn/apiclient/types.WebhookManifest": schema_acorn_io_acorn_apiclient_types_WebhookManifest(ref), - "github.com/acorn-io/acorn/apiclient/types.WebsiteCrawlingConfig": schema_acorn_io_acorn_apiclient_types_WebsiteCrawlingConfig(ref), - "github.com/acorn-io/acorn/apiclient/types.While": schema_acorn_io_acorn_apiclient_types_While(ref), - "github.com/acorn-io/acorn/apiclient/types.Workflow": schema_acorn_io_acorn_apiclient_types_Workflow(ref), - "github.com/acorn-io/acorn/apiclient/types.WorkflowCall": schema_acorn_io_acorn_apiclient_types_WorkflowCall(ref), - "github.com/acorn-io/acorn/apiclient/types.WorkflowExecution": schema_acorn_io_acorn_apiclient_types_WorkflowExecution(ref), - "github.com/acorn-io/acorn/apiclient/types.WorkflowExecutionList": schema_acorn_io_acorn_apiclient_types_WorkflowExecutionList(ref), - "github.com/acorn-io/acorn/apiclient/types.WorkflowList": schema_acorn_io_acorn_apiclient_types_WorkflowList(ref), - "github.com/acorn-io/acorn/apiclient/types.WorkflowManifest": schema_acorn_io_acorn_apiclient_types_WorkflowManifest(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.Agent": schema_storage_apis_ottootto8ai_v1_Agent(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.AgentList": schema_storage_apis_ottootto8ai_v1_AgentList(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.AgentSpec": schema_storage_apis_ottootto8ai_v1_AgentSpec(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.AgentStatus": schema_storage_apis_ottootto8ai_v1_AgentStatus(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.Alias": schema_storage_apis_ottootto8ai_v1_Alias(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.AliasList": schema_storage_apis_ottootto8ai_v1_AliasList(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.AliasSpec": schema_storage_apis_ottootto8ai_v1_AliasSpec(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.CronJob": schema_storage_apis_ottootto8ai_v1_CronJob(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.CronJobList": schema_storage_apis_ottootto8ai_v1_CronJobList(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.CronJobSpec": schema_storage_apis_ottootto8ai_v1_CronJobSpec(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.CronJobStatus": schema_storage_apis_ottootto8ai_v1_CronJobStatus(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.DefaultModelAlias": schema_storage_apis_ottootto8ai_v1_DefaultModelAlias(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.DefaultModelAliasList": schema_storage_apis_ottootto8ai_v1_DefaultModelAliasList(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.DefaultModelAliasSpec": schema_storage_apis_ottootto8ai_v1_DefaultModelAliasSpec(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.DefaultModelAliasStatus": schema_storage_apis_ottootto8ai_v1_DefaultModelAliasStatus(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.EmailReceiver": schema_storage_apis_ottootto8ai_v1_EmailReceiver(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.EmailReceiverList": schema_storage_apis_ottootto8ai_v1_EmailReceiverList(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.EmailReceiverSpec": schema_storage_apis_ottootto8ai_v1_EmailReceiverSpec(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.EmailReceiverStatus": schema_storage_apis_ottootto8ai_v1_EmailReceiverStatus(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.EmptyStatus": schema_storage_apis_ottootto8ai_v1_EmptyStatus(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeFile": schema_storage_apis_ottootto8ai_v1_KnowledgeFile(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeFileList": schema_storage_apis_ottootto8ai_v1_KnowledgeFileList(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeFileSpec": schema_storage_apis_ottootto8ai_v1_KnowledgeFileSpec(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeFileStatus": schema_storage_apis_ottootto8ai_v1_KnowledgeFileStatus(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSet": schema_storage_apis_ottootto8ai_v1_KnowledgeSet(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSetList": schema_storage_apis_ottootto8ai_v1_KnowledgeSetList(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSetManifest": schema_storage_apis_ottootto8ai_v1_KnowledgeSetManifest(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSetSpec": schema_storage_apis_ottootto8ai_v1_KnowledgeSetSpec(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSetStatus": schema_storage_apis_ottootto8ai_v1_KnowledgeSetStatus(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSource": schema_storage_apis_ottootto8ai_v1_KnowledgeSource(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSourceList": schema_storage_apis_ottootto8ai_v1_KnowledgeSourceList(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSourceSpec": schema_storage_apis_ottootto8ai_v1_KnowledgeSourceSpec(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSourceStatus": schema_storage_apis_ottootto8ai_v1_KnowledgeSourceStatus(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.Model": schema_storage_apis_ottootto8ai_v1_Model(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.ModelList": schema_storage_apis_ottootto8ai_v1_ModelList(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.ModelSpec": schema_storage_apis_ottootto8ai_v1_ModelSpec(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.ModelStatus": schema_storage_apis_ottootto8ai_v1_ModelStatus(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.OAuthApp": schema_storage_apis_ottootto8ai_v1_OAuthApp(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.OAuthAppList": schema_storage_apis_ottootto8ai_v1_OAuthAppList(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.OAuthAppLogin": schema_storage_apis_ottootto8ai_v1_OAuthAppLogin(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.OAuthAppLoginList": schema_storage_apis_ottootto8ai_v1_OAuthAppLoginList(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.OAuthAppLoginSpec": schema_storage_apis_ottootto8ai_v1_OAuthAppLoginSpec(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.OAuthAppLoginStatus": schema_storage_apis_ottootto8ai_v1_OAuthAppLoginStatus(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.OAuthAppSpec": schema_storage_apis_ottootto8ai_v1_OAuthAppSpec(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.Ref": schema_storage_apis_ottootto8ai_v1_Ref(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.Run": schema_storage_apis_ottootto8ai_v1_Run(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.RunList": schema_storage_apis_ottootto8ai_v1_RunList(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.RunSpec": schema_storage_apis_ottootto8ai_v1_RunSpec(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.RunState": schema_storage_apis_ottootto8ai_v1_RunState(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.RunStateList": schema_storage_apis_ottootto8ai_v1_RunStateList(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.RunStateSpec": schema_storage_apis_ottootto8ai_v1_RunStateSpec(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.RunStatus": schema_storage_apis_ottootto8ai_v1_RunStatus(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.SubCall": schema_storage_apis_ottootto8ai_v1_SubCall(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.Thread": schema_storage_apis_ottootto8ai_v1_Thread(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.ThreadList": schema_storage_apis_ottootto8ai_v1_ThreadList(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.ThreadSpec": schema_storage_apis_ottootto8ai_v1_ThreadSpec(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.ThreadStatus": schema_storage_apis_ottootto8ai_v1_ThreadStatus(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.ToolReference": schema_storage_apis_ottootto8ai_v1_ToolReference(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.ToolReferenceList": schema_storage_apis_ottootto8ai_v1_ToolReferenceList(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.ToolReferenceSpec": schema_storage_apis_ottootto8ai_v1_ToolReferenceSpec(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.ToolReferenceStatus": schema_storage_apis_ottootto8ai_v1_ToolReferenceStatus(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.ToolShortDescription": schema_storage_apis_ottootto8ai_v1_ToolShortDescription(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.Webhook": schema_storage_apis_ottootto8ai_v1_Webhook(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.WebhookList": schema_storage_apis_ottootto8ai_v1_WebhookList(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.WebhookSpec": schema_storage_apis_ottootto8ai_v1_WebhookSpec(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.WebhookStatus": schema_storage_apis_ottootto8ai_v1_WebhookStatus(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.Workflow": schema_storage_apis_ottootto8ai_v1_Workflow(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.WorkflowExecution": schema_storage_apis_ottootto8ai_v1_WorkflowExecution(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.WorkflowExecutionList": schema_storage_apis_ottootto8ai_v1_WorkflowExecutionList(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.WorkflowExecutionSpec": schema_storage_apis_ottootto8ai_v1_WorkflowExecutionSpec(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.WorkflowExecutionStatus": schema_storage_apis_ottootto8ai_v1_WorkflowExecutionStatus(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.WorkflowList": schema_storage_apis_ottootto8ai_v1_WorkflowList(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.WorkflowSpec": schema_storage_apis_ottootto8ai_v1_WorkflowSpec(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.WorkflowStatus": schema_storage_apis_ottootto8ai_v1_WorkflowStatus(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.WorkflowStep": schema_storage_apis_ottootto8ai_v1_WorkflowStep(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.WorkflowStepList": schema_storage_apis_ottootto8ai_v1_WorkflowStepList(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.WorkflowStepSpec": schema_storage_apis_ottootto8ai_v1_WorkflowStepSpec(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.WorkflowStepStatus": schema_storage_apis_ottootto8ai_v1_WorkflowStepStatus(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.Workspace": schema_storage_apis_ottootto8ai_v1_Workspace(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.WorkspaceList": schema_storage_apis_ottootto8ai_v1_WorkspaceList(ref), - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.WorkspaceSpec": schema_storage_apis_ottootto8ai_v1_WorkspaceSpec(ref), - "github.com/acorn-io/acorn/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), - } -} - -func schema_acorn_io_acorn_apiclient_types_Agent(ref common.ReferenceCallback) 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.ToolInput": schema_obot_platform_obot_apiclient_types_ToolInput(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.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.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.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), + } +} + +func schema_obot_platform_obot_apiclient_types_Agent(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -259,13 +259,13 @@ func schema_acorn_io_acorn_apiclient_types_Agent(ref common.ReferenceCallback) c "Metadata": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Metadata"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Metadata"), }, }, "AgentManifest": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.AgentManifest"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.AgentManifest"), }, }, "aliasAssigned": { @@ -282,7 +282,7 @@ func schema_acorn_io_acorn_apiclient_types_Agent(ref common.ReferenceCallback) c Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.OAuthAppLoginAuthStatus"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.OAuthAppLoginAuthStatus"), }, }, }, @@ -299,11 +299,11 @@ func schema_acorn_io_acorn_apiclient_types_Agent(ref common.ReferenceCallback) c }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.AgentManifest", "github.com/acorn-io/acorn/apiclient/types.Metadata", "github.com/acorn-io/acorn/apiclient/types.OAuthAppLoginAuthStatus"}, + "github.com/obot-platform/obot/apiclient/types.AgentManifest", "github.com/obot-platform/obot/apiclient/types.Metadata", "github.com/obot-platform/obot/apiclient/types.OAuthAppLoginAuthStatus"}, } } -func schema_acorn_io_acorn_apiclient_types_AgentIcons(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_AgentIcons(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -344,7 +344,7 @@ func schema_acorn_io_acorn_apiclient_types_AgentIcons(ref common.ReferenceCallba } } -func schema_acorn_io_acorn_apiclient_types_AgentList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_AgentList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -357,7 +357,7 @@ func schema_acorn_io_acorn_apiclient_types_AgentList(ref common.ReferenceCallbac Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Agent"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Agent"), }, }, }, @@ -368,11 +368,11 @@ func schema_acorn_io_acorn_apiclient_types_AgentList(ref common.ReferenceCallbac }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.Agent"}, + "github.com/obot-platform/obot/apiclient/types.Agent"}, } } -func schema_acorn_io_acorn_apiclient_types_AgentManifest(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_AgentManifest(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -387,7 +387,7 @@ func schema_acorn_io_acorn_apiclient_types_AgentManifest(ref common.ReferenceCal }, "icons": { SchemaProps: spec.SchemaProps{ - Ref: ref("github.com/acorn-io/acorn/apiclient/types.AgentIcons"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.AgentIcons"), }, }, "description": { @@ -550,7 +550,7 @@ func schema_acorn_io_acorn_apiclient_types_AgentManifest(ref common.ReferenceCal Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.EnvVar"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.EnvVar"), }, }, }, @@ -561,11 +561,11 @@ func schema_acorn_io_acorn_apiclient_types_AgentManifest(ref common.ReferenceCal }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.AgentIcons", "github.com/acorn-io/acorn/apiclient/types.EnvVar"}, + "github.com/obot-platform/obot/apiclient/types.AgentIcons", "github.com/obot-platform/obot/apiclient/types.EnvVar"}, } } -func schema_acorn_io_acorn_apiclient_types_Assistant(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_Assistant(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -574,7 +574,7 @@ func schema_acorn_io_acorn_apiclient_types_Assistant(ref common.ReferenceCallbac "Metadata": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Metadata"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Metadata"), }, }, "name": { @@ -594,7 +594,7 @@ func schema_acorn_io_acorn_apiclient_types_Assistant(ref common.ReferenceCallbac "icons": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.AgentIcons"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.AgentIcons"), }, }, "entityID": { @@ -609,11 +609,11 @@ func schema_acorn_io_acorn_apiclient_types_Assistant(ref common.ReferenceCallbac }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.AgentIcons", "github.com/acorn-io/acorn/apiclient/types.Metadata"}, + "github.com/obot-platform/obot/apiclient/types.AgentIcons", "github.com/obot-platform/obot/apiclient/types.Metadata"}, } } -func schema_acorn_io_acorn_apiclient_types_AssistantList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_AssistantList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -626,7 +626,7 @@ func schema_acorn_io_acorn_apiclient_types_AssistantList(ref common.ReferenceCal Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Assistant"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Assistant"), }, }, }, @@ -637,11 +637,11 @@ func schema_acorn_io_acorn_apiclient_types_AssistantList(ref common.ReferenceCal }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.Assistant"}, + "github.com/obot-platform/obot/apiclient/types.Assistant"}, } } -func schema_acorn_io_acorn_apiclient_types_AssistantTool(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_AssistantTool(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -692,7 +692,7 @@ func schema_acorn_io_acorn_apiclient_types_AssistantTool(ref common.ReferenceCal } } -func schema_acorn_io_acorn_apiclient_types_AssistantToolList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_AssistantToolList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -711,7 +711,7 @@ func schema_acorn_io_acorn_apiclient_types_AssistantToolList(ref common.Referenc Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.AssistantTool"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.AssistantTool"), }, }, }, @@ -722,11 +722,11 @@ func schema_acorn_io_acorn_apiclient_types_AssistantToolList(ref common.Referenc }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.AssistantTool"}, + "github.com/obot-platform/obot/apiclient/types.AssistantTool"}, } } -func schema_acorn_io_acorn_apiclient_types_Credential(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_Credential(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -760,18 +760,18 @@ func schema_acorn_io_acorn_apiclient_types_Credential(ref common.ReferenceCallba }, "expiresAt": { SchemaProps: spec.SchemaProps{ - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Time"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Time"), }, }, }, }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.Time"}, + "github.com/obot-platform/obot/apiclient/types.Time"}, } } -func schema_acorn_io_acorn_apiclient_types_CredentialList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_CredentialList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -784,7 +784,7 @@ func schema_acorn_io_acorn_apiclient_types_CredentialList(ref common.ReferenceCa Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Credential"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Credential"), }, }, }, @@ -795,11 +795,11 @@ func schema_acorn_io_acorn_apiclient_types_CredentialList(ref common.ReferenceCa }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.Credential"}, + "github.com/obot-platform/obot/apiclient/types.Credential"}, } } -func schema_acorn_io_acorn_apiclient_types_CronJob(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_CronJob(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -808,28 +808,28 @@ func schema_acorn_io_acorn_apiclient_types_CronJob(ref common.ReferenceCallback) "Metadata": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Metadata"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Metadata"), }, }, "CronJobManifest": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.CronJobManifest"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.CronJobManifest"), }, }, "lastRunStartedAt": { SchemaProps: spec.SchemaProps{ - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Time"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Time"), }, }, "lastSuccessfulRunCompleted": { SchemaProps: spec.SchemaProps{ - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Time"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Time"), }, }, "nextRunAt": { SchemaProps: spec.SchemaProps{ - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Time"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Time"), }, }, }, @@ -837,11 +837,11 @@ func schema_acorn_io_acorn_apiclient_types_CronJob(ref common.ReferenceCallback) }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.CronJobManifest", "github.com/acorn-io/acorn/apiclient/types.Metadata", "github.com/acorn-io/acorn/apiclient/types.Time"}, + "github.com/obot-platform/obot/apiclient/types.CronJobManifest", "github.com/obot-platform/obot/apiclient/types.Metadata", "github.com/obot-platform/obot/apiclient/types.Time"}, } } -func schema_acorn_io_acorn_apiclient_types_CronJobList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_CronJobList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -854,7 +854,7 @@ func schema_acorn_io_acorn_apiclient_types_CronJobList(ref common.ReferenceCallb Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.CronJob"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.CronJob"), }, }, }, @@ -865,11 +865,11 @@ func schema_acorn_io_acorn_apiclient_types_CronJobList(ref common.ReferenceCallb }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.CronJob"}, + "github.com/obot-platform/obot/apiclient/types.CronJob"}, } } -func schema_acorn_io_acorn_apiclient_types_CronJobManifest(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_CronJobManifest(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -901,18 +901,18 @@ func schema_acorn_io_acorn_apiclient_types_CronJobManifest(ref common.ReferenceC }, "taskSchedule": { SchemaProps: spec.SchemaProps{ - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Schedule"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Schedule"), }, }, }, }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.Schedule"}, + "github.com/obot-platform/obot/apiclient/types.Schedule"}, } } -func schema_acorn_io_acorn_apiclient_types_DefaultModelAlias(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_DefaultModelAlias(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -921,7 +921,7 @@ func schema_acorn_io_acorn_apiclient_types_DefaultModelAlias(ref common.Referenc "DefaultModelAliasManifest": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.DefaultModelAliasManifest"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.DefaultModelAliasManifest"), }, }, }, @@ -929,11 +929,11 @@ func schema_acorn_io_acorn_apiclient_types_DefaultModelAlias(ref common.Referenc }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.DefaultModelAliasManifest"}, + "github.com/obot-platform/obot/apiclient/types.DefaultModelAliasManifest"}, } } -func schema_acorn_io_acorn_apiclient_types_DefaultModelAliasList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_DefaultModelAliasList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -946,7 +946,7 @@ func schema_acorn_io_acorn_apiclient_types_DefaultModelAliasList(ref common.Refe Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.DefaultModelAlias"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.DefaultModelAlias"), }, }, }, @@ -957,11 +957,11 @@ func schema_acorn_io_acorn_apiclient_types_DefaultModelAliasList(ref common.Refe }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.DefaultModelAlias"}, + "github.com/obot-platform/obot/apiclient/types.DefaultModelAlias"}, } } -func schema_acorn_io_acorn_apiclient_types_DefaultModelAliasManifest(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_DefaultModelAliasManifest(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -988,7 +988,7 @@ func schema_acorn_io_acorn_apiclient_types_DefaultModelAliasManifest(ref common. } } -func schema_acorn_io_acorn_apiclient_types_EmailReceiver(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_EmailReceiver(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -997,13 +997,13 @@ func schema_acorn_io_acorn_apiclient_types_EmailReceiver(ref common.ReferenceCal "Metadata": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Metadata"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Metadata"), }, }, "EmailReceiverManifest": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.EmailReceiverManifest"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.EmailReceiverManifest"), }, }, "aliasAssigned": { @@ -1023,11 +1023,11 @@ func schema_acorn_io_acorn_apiclient_types_EmailReceiver(ref common.ReferenceCal }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.EmailReceiverManifest", "github.com/acorn-io/acorn/apiclient/types.Metadata"}, + "github.com/obot-platform/obot/apiclient/types.EmailReceiverManifest", "github.com/obot-platform/obot/apiclient/types.Metadata"}, } } -func schema_acorn_io_acorn_apiclient_types_EmailReceiverList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_EmailReceiverList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -1040,7 +1040,7 @@ func schema_acorn_io_acorn_apiclient_types_EmailReceiverList(ref common.Referenc Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.EmailReceiver"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.EmailReceiver"), }, }, }, @@ -1051,11 +1051,11 @@ func schema_acorn_io_acorn_apiclient_types_EmailReceiverList(ref common.Referenc }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.EmailReceiver"}, + "github.com/obot-platform/obot/apiclient/types.EmailReceiver"}, } } -func schema_acorn_io_acorn_apiclient_types_EmailReceiverManifest(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_EmailReceiverManifest(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -1109,7 +1109,7 @@ func schema_acorn_io_acorn_apiclient_types_EmailReceiverManifest(ref common.Refe } } -func schema_acorn_io_acorn_apiclient_types_EnvVar(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_EnvVar(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -1143,7 +1143,7 @@ func schema_acorn_io_acorn_apiclient_types_EnvVar(ref common.ReferenceCallback) } } -func schema_acorn_io_acorn_apiclient_types_ErrHTTP(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_ErrHTTP(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -1170,7 +1170,7 @@ func schema_acorn_io_acorn_apiclient_types_ErrHTTP(ref common.ReferenceCallback) } } -func schema_acorn_io_acorn_apiclient_types_File(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_File(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -1188,7 +1188,7 @@ func schema_acorn_io_acorn_apiclient_types_File(ref common.ReferenceCallback) co } } -func schema_acorn_io_acorn_apiclient_types_FileList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_FileList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -1201,7 +1201,7 @@ func schema_acorn_io_acorn_apiclient_types_FileList(ref common.ReferenceCallback Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.File"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.File"), }, }, }, @@ -1212,11 +1212,11 @@ func schema_acorn_io_acorn_apiclient_types_FileList(ref common.ReferenceCallback }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.File"}, + "github.com/obot-platform/obot/apiclient/types.File"}, } } -func schema_acorn_io_acorn_apiclient_types_If(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_If(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -1235,7 +1235,7 @@ func schema_acorn_io_acorn_apiclient_types_If(ref common.ReferenceCallback) comm Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Step"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Step"), }, }, }, @@ -1248,7 +1248,7 @@ func schema_acorn_io_acorn_apiclient_types_If(ref common.ReferenceCallback) comm Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Step"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Step"), }, }, }, @@ -1258,11 +1258,11 @@ func schema_acorn_io_acorn_apiclient_types_If(ref common.ReferenceCallback) comm }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.Step"}, + "github.com/obot-platform/obot/apiclient/types.Step"}, } } -func schema_acorn_io_acorn_apiclient_types_Item(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_Item(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -1272,7 +1272,7 @@ func schema_acorn_io_acorn_apiclient_types_Item(ref common.ReferenceCallback) co } } -func schema_acorn_io_acorn_apiclient_types_KnowledgeFile(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_KnowledgeFile(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -1281,7 +1281,7 @@ func schema_acorn_io_acorn_apiclient_types_KnowledgeFile(ref common.ReferenceCal "Metadata": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Metadata"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Metadata"), }, }, "fileName": { @@ -1354,12 +1354,12 @@ func schema_acorn_io_acorn_apiclient_types_KnowledgeFile(ref common.ReferenceCal }, "lastIngestionStartTime": { SchemaProps: spec.SchemaProps{ - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Time"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Time"), }, }, "lastIngestionEndTime": { SchemaProps: spec.SchemaProps{ - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Time"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Time"), }, }, "lastRunIDs": { @@ -1387,11 +1387,11 @@ func schema_acorn_io_acorn_apiclient_types_KnowledgeFile(ref common.ReferenceCal }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.Metadata", "github.com/acorn-io/acorn/apiclient/types.Time"}, + "github.com/obot-platform/obot/apiclient/types.Metadata", "github.com/obot-platform/obot/apiclient/types.Time"}, } } -func schema_acorn_io_acorn_apiclient_types_KnowledgeFileList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_KnowledgeFileList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -1404,7 +1404,7 @@ func schema_acorn_io_acorn_apiclient_types_KnowledgeFileList(ref common.Referenc Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.KnowledgeFile"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.KnowledgeFile"), }, }, }, @@ -1415,11 +1415,11 @@ func schema_acorn_io_acorn_apiclient_types_KnowledgeFileList(ref common.Referenc }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.KnowledgeFile"}, + "github.com/obot-platform/obot/apiclient/types.KnowledgeFile"}, } } -func schema_acorn_io_acorn_apiclient_types_KnowledgeSource(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_KnowledgeSource(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -1428,7 +1428,7 @@ func schema_acorn_io_acorn_apiclient_types_KnowledgeSource(ref common.ReferenceC "Metadata": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Metadata"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Metadata"), }, }, "syncSchedule": { @@ -1473,17 +1473,17 @@ func schema_acorn_io_acorn_apiclient_types_KnowledgeSource(ref common.ReferenceC }, "onedriveConfig": { SchemaProps: spec.SchemaProps{ - Ref: ref("github.com/acorn-io/acorn/apiclient/types.OneDriveConfig"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.OneDriveConfig"), }, }, "notionConfig": { SchemaProps: spec.SchemaProps{ - Ref: ref("github.com/acorn-io/acorn/apiclient/types.NotionConfig"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.NotionConfig"), }, }, "websiteCrawlingConfig": { SchemaProps: spec.SchemaProps{ - Ref: ref("github.com/acorn-io/acorn/apiclient/types.WebsiteCrawlingConfig"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.WebsiteCrawlingConfig"), }, }, "agentID": { @@ -1518,12 +1518,12 @@ func schema_acorn_io_acorn_apiclient_types_KnowledgeSource(ref common.ReferenceC }, "lastSyncStartTime": { SchemaProps: spec.SchemaProps{ - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Time"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Time"), }, }, "lastSyncEndTime": { SchemaProps: spec.SchemaProps{ - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Time"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Time"), }, }, "lastRunID": { @@ -1537,11 +1537,11 @@ func schema_acorn_io_acorn_apiclient_types_KnowledgeSource(ref common.ReferenceC }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.Metadata", "github.com/acorn-io/acorn/apiclient/types.NotionConfig", "github.com/acorn-io/acorn/apiclient/types.OneDriveConfig", "github.com/acorn-io/acorn/apiclient/types.Time", "github.com/acorn-io/acorn/apiclient/types.WebsiteCrawlingConfig"}, + "github.com/obot-platform/obot/apiclient/types.Metadata", "github.com/obot-platform/obot/apiclient/types.NotionConfig", "github.com/obot-platform/obot/apiclient/types.OneDriveConfig", "github.com/obot-platform/obot/apiclient/types.Time", "github.com/obot-platform/obot/apiclient/types.WebsiteCrawlingConfig"}, } } -func schema_acorn_io_acorn_apiclient_types_KnowledgeSourceInput(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_KnowledgeSourceInput(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -1549,28 +1549,28 @@ func schema_acorn_io_acorn_apiclient_types_KnowledgeSourceInput(ref common.Refer Properties: map[string]spec.Schema{ "onedriveConfig": { SchemaProps: spec.SchemaProps{ - Ref: ref("github.com/acorn-io/acorn/apiclient/types.OneDriveConfig"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.OneDriveConfig"), }, }, "notionConfig": { SchemaProps: spec.SchemaProps{ - Ref: ref("github.com/acorn-io/acorn/apiclient/types.NotionConfig"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.NotionConfig"), }, }, "websiteCrawlingConfig": { SchemaProps: spec.SchemaProps{ - Ref: ref("github.com/acorn-io/acorn/apiclient/types.WebsiteCrawlingConfig"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.WebsiteCrawlingConfig"), }, }, }, }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.NotionConfig", "github.com/acorn-io/acorn/apiclient/types.OneDriveConfig", "github.com/acorn-io/acorn/apiclient/types.WebsiteCrawlingConfig"}, + "github.com/obot-platform/obot/apiclient/types.NotionConfig", "github.com/obot-platform/obot/apiclient/types.OneDriveConfig", "github.com/obot-platform/obot/apiclient/types.WebsiteCrawlingConfig"}, } } -func schema_acorn_io_acorn_apiclient_types_KnowledgeSourceList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_KnowledgeSourceList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -1583,7 +1583,7 @@ func schema_acorn_io_acorn_apiclient_types_KnowledgeSourceList(ref common.Refere Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.KnowledgeSource"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.KnowledgeSource"), }, }, }, @@ -1594,11 +1594,11 @@ func schema_acorn_io_acorn_apiclient_types_KnowledgeSourceList(ref common.Refere }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.KnowledgeSource"}, + "github.com/obot-platform/obot/apiclient/types.KnowledgeSource"}, } } -func schema_acorn_io_acorn_apiclient_types_KnowledgeSourceManifest(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_KnowledgeSourceManifest(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -1646,28 +1646,28 @@ func schema_acorn_io_acorn_apiclient_types_KnowledgeSourceManifest(ref common.Re }, "onedriveConfig": { SchemaProps: spec.SchemaProps{ - Ref: ref("github.com/acorn-io/acorn/apiclient/types.OneDriveConfig"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.OneDriveConfig"), }, }, "notionConfig": { SchemaProps: spec.SchemaProps{ - Ref: ref("github.com/acorn-io/acorn/apiclient/types.NotionConfig"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.NotionConfig"), }, }, "websiteCrawlingConfig": { SchemaProps: spec.SchemaProps{ - Ref: ref("github.com/acorn-io/acorn/apiclient/types.WebsiteCrawlingConfig"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.WebsiteCrawlingConfig"), }, }, }, }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.NotionConfig", "github.com/acorn-io/acorn/apiclient/types.OneDriveConfig", "github.com/acorn-io/acorn/apiclient/types.WebsiteCrawlingConfig"}, + "github.com/obot-platform/obot/apiclient/types.NotionConfig", "github.com/obot-platform/obot/apiclient/types.OneDriveConfig", "github.com/obot-platform/obot/apiclient/types.WebsiteCrawlingConfig"}, } } -func schema_acorn_io_acorn_apiclient_types_Metadata(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_Metadata(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -1681,12 +1681,12 @@ func schema_acorn_io_acorn_apiclient_types_Metadata(ref common.ReferenceCallback }, "created": { SchemaProps: spec.SchemaProps{ - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Time"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Time"), }, }, "deleted": { SchemaProps: spec.SchemaProps{ - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Time"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Time"), }, }, "revision": { @@ -1735,11 +1735,11 @@ func schema_acorn_io_acorn_apiclient_types_Metadata(ref common.ReferenceCallback }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.Time"}, + "github.com/obot-platform/obot/apiclient/types.Time"}, } } -func schema_acorn_io_acorn_apiclient_types_Model(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_Model(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -1748,19 +1748,19 @@ func schema_acorn_io_acorn_apiclient_types_Model(ref common.ReferenceCallback) c "Metadata": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Metadata"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Metadata"), }, }, "ModelManifest": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.ModelManifest"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.ModelManifest"), }, }, "ModelStatus": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.ModelStatus"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.ModelStatus"), }, }, }, @@ -1768,11 +1768,11 @@ func schema_acorn_io_acorn_apiclient_types_Model(ref common.ReferenceCallback) c }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.Metadata", "github.com/acorn-io/acorn/apiclient/types.ModelManifest", "github.com/acorn-io/acorn/apiclient/types.ModelStatus"}, + "github.com/obot-platform/obot/apiclient/types.Metadata", "github.com/obot-platform/obot/apiclient/types.ModelManifest", "github.com/obot-platform/obot/apiclient/types.ModelStatus"}, } } -func schema_acorn_io_acorn_apiclient_types_ModelList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_ModelList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -1785,7 +1785,7 @@ func schema_acorn_io_acorn_apiclient_types_ModelList(ref common.ReferenceCallbac Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Model"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Model"), }, }, }, @@ -1796,11 +1796,11 @@ func schema_acorn_io_acorn_apiclient_types_ModelList(ref common.ReferenceCallbac }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.Model"}, + "github.com/obot-platform/obot/apiclient/types.Model"}, } } -func schema_acorn_io_acorn_apiclient_types_ModelManifest(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_ModelManifest(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -1851,7 +1851,7 @@ func schema_acorn_io_acorn_apiclient_types_ModelManifest(ref common.ReferenceCal } } -func schema_acorn_io_acorn_apiclient_types_ModelProvider(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_ModelProvider(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -1860,19 +1860,19 @@ func schema_acorn_io_acorn_apiclient_types_ModelProvider(ref common.ReferenceCal "Metadata": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Metadata"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Metadata"), }, }, "ModelProviderManifest": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.ModelProviderManifest"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.ModelProviderManifest"), }, }, "ModelProviderStatus": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.ModelProviderStatus"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.ModelProviderStatus"), }, }, }, @@ -1880,11 +1880,11 @@ func schema_acorn_io_acorn_apiclient_types_ModelProvider(ref common.ReferenceCal }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.Metadata", "github.com/acorn-io/acorn/apiclient/types.ModelProviderManifest", "github.com/acorn-io/acorn/apiclient/types.ModelProviderStatus"}, + "github.com/obot-platform/obot/apiclient/types.Metadata", "github.com/obot-platform/obot/apiclient/types.ModelProviderManifest", "github.com/obot-platform/obot/apiclient/types.ModelProviderStatus"}, } } -func schema_acorn_io_acorn_apiclient_types_ModelProviderList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_ModelProviderList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -1897,7 +1897,7 @@ func schema_acorn_io_acorn_apiclient_types_ModelProviderList(ref common.Referenc Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.ModelProvider"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.ModelProvider"), }, }, }, @@ -1908,11 +1908,11 @@ func schema_acorn_io_acorn_apiclient_types_ModelProviderList(ref common.Referenc }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.ModelProvider"}, + "github.com/obot-platform/obot/apiclient/types.ModelProvider"}, } } -func schema_acorn_io_acorn_apiclient_types_ModelProviderManifest(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_ModelProviderManifest(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -1939,7 +1939,7 @@ func schema_acorn_io_acorn_apiclient_types_ModelProviderManifest(ref common.Refe } } -func schema_acorn_io_acorn_apiclient_types_ModelProviderStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_ModelProviderStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -1999,7 +1999,7 @@ func schema_acorn_io_acorn_apiclient_types_ModelProviderStatus(ref common.Refere } } -func schema_acorn_io_acorn_apiclient_types_ModelStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_ModelStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -2017,7 +2017,7 @@ func schema_acorn_io_acorn_apiclient_types_ModelStatus(ref common.ReferenceCallb } } -func schema_acorn_io_acorn_apiclient_types_NotionConfig(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_NotionConfig(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -2027,7 +2027,7 @@ func schema_acorn_io_acorn_apiclient_types_NotionConfig(ref common.ReferenceCall } } -func schema_acorn_io_acorn_apiclient_types_OAuthApp(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_OAuthApp(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -2036,7 +2036,7 @@ func schema_acorn_io_acorn_apiclient_types_OAuthApp(ref common.ReferenceCallback "OAuthAppManifest": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.OAuthAppManifest"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.OAuthAppManifest"), }, }, }, @@ -2044,11 +2044,11 @@ func schema_acorn_io_acorn_apiclient_types_OAuthApp(ref common.ReferenceCallback }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.OAuthAppManifest"}, + "github.com/obot-platform/obot/apiclient/types.OAuthAppManifest"}, } } -func schema_acorn_io_acorn_apiclient_types_OAuthAppList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_OAuthAppList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -2061,7 +2061,7 @@ func schema_acorn_io_acorn_apiclient_types_OAuthAppList(ref common.ReferenceCall Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.OAuthApp"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.OAuthApp"), }, }, }, @@ -2072,11 +2072,11 @@ func schema_acorn_io_acorn_apiclient_types_OAuthAppList(ref common.ReferenceCall }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.OAuthApp"}, + "github.com/obot-platform/obot/apiclient/types.OAuthApp"}, } } -func schema_acorn_io_acorn_apiclient_types_OAuthAppLoginAuthStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_OAuthAppLoginAuthStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -2112,7 +2112,7 @@ func schema_acorn_io_acorn_apiclient_types_OAuthAppLoginAuthStatus(ref common.Re } } -func schema_acorn_io_acorn_apiclient_types_OAuthAppManifest(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_OAuthAppManifest(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -2121,7 +2121,7 @@ func schema_acorn_io_acorn_apiclient_types_OAuthAppManifest(ref common.Reference "Metadata": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Metadata"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Metadata"), }, }, "type": { @@ -2203,11 +2203,11 @@ func schema_acorn_io_acorn_apiclient_types_OAuthAppManifest(ref common.Reference }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.Metadata"}, + "github.com/obot-platform/obot/apiclient/types.Metadata"}, } } -func schema_acorn_io_acorn_apiclient_types_OneDriveConfig(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_OneDriveConfig(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -2233,7 +2233,7 @@ func schema_acorn_io_acorn_apiclient_types_OneDriveConfig(ref common.ReferenceCa } } -func schema_acorn_io_acorn_apiclient_types_Progress(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_Progress(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -2256,7 +2256,7 @@ func schema_acorn_io_acorn_apiclient_types_Progress(ref common.ReferenceCallback "time": { SchemaProps: spec.SchemaProps{ Description: "Time is the time the event was generated", - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Time"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Time"), }, }, "content": { @@ -2291,37 +2291,37 @@ func schema_acorn_io_acorn_apiclient_types_Progress(ref common.ReferenceCallback "stepTemplateInvoke": { SchemaProps: spec.SchemaProps{ Description: "StepTemplateInvoke indicates that a step template is being invoked", - Ref: ref("github.com/acorn-io/acorn/apiclient/types.StepTemplateInvoke"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.StepTemplateInvoke"), }, }, "prompt": { SchemaProps: spec.SchemaProps{ Description: "If prompt is set, content will also be set, but you can ignore the content field and instead handle the explicit information in the prompt field which will provider more information for things such as OAuth", - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Prompt"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Prompt"), }, }, "step": { SchemaProps: spec.SchemaProps{ Description: "The step that is currently being executed. When this is set the following events are assumed to be part of this step until the next step is set. This field is not always set, only set when the set changes", - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Step"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Step"), }, }, "toolInput": { SchemaProps: spec.SchemaProps{ Description: "ToolInput indicates the LLM is currently generating tool arguments which can sometime take a while", - Ref: ref("github.com/acorn-io/acorn/apiclient/types.ToolInput"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.ToolInput"), }, }, "toolCall": { SchemaProps: spec.SchemaProps{ Description: "ToolCall indicates the LLM is currently calling a tool.", - Ref: ref("github.com/acorn-io/acorn/apiclient/types.ToolCall"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.ToolCall"), }, }, "workflowCall": { SchemaProps: spec.SchemaProps{ Description: "ToolCall indicates the LLM is currently calling a tool.", - Ref: ref("github.com/acorn-io/acorn/apiclient/types.WorkflowCall"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.WorkflowCall"), }, }, "waitingOnModel": { @@ -2357,11 +2357,11 @@ func schema_acorn_io_acorn_apiclient_types_Progress(ref common.ReferenceCallback }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.Prompt", "github.com/acorn-io/acorn/apiclient/types.Step", "github.com/acorn-io/acorn/apiclient/types.StepTemplateInvoke", "github.com/acorn-io/acorn/apiclient/types.Time", "github.com/acorn-io/acorn/apiclient/types.ToolCall", "github.com/acorn-io/acorn/apiclient/types.ToolInput", "github.com/acorn-io/acorn/apiclient/types.WorkflowCall"}, + "github.com/obot-platform/obot/apiclient/types.Prompt", "github.com/obot-platform/obot/apiclient/types.Step", "github.com/obot-platform/obot/apiclient/types.StepTemplateInvoke", "github.com/obot-platform/obot/apiclient/types.Time", "github.com/obot-platform/obot/apiclient/types.ToolCall", "github.com/obot-platform/obot/apiclient/types.ToolInput", "github.com/obot-platform/obot/apiclient/types.WorkflowCall"}, } } -func schema_acorn_io_acorn_apiclient_types_Prompt(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_Prompt(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -2387,7 +2387,7 @@ func schema_acorn_io_acorn_apiclient_types_Prompt(ref common.ReferenceCallback) }, "time": { SchemaProps: spec.SchemaProps{ - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Time"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Time"), }, }, "message": { @@ -2435,11 +2435,11 @@ func schema_acorn_io_acorn_apiclient_types_Prompt(ref common.ReferenceCallback) }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.Time"}, + "github.com/obot-platform/obot/apiclient/types.Time"}, } } -func schema_acorn_io_acorn_apiclient_types_PromptResponse(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_PromptResponse(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -2472,7 +2472,7 @@ func schema_acorn_io_acorn_apiclient_types_PromptResponse(ref common.ReferenceCa } } -func schema_acorn_io_acorn_apiclient_types_Run(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_Run(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -2486,7 +2486,7 @@ func schema_acorn_io_acorn_apiclient_types_Run(ref common.ReferenceCallback) com }, "created": { SchemaProps: spec.SchemaProps{ - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Time"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Time"), }, }, "threadID": { @@ -2561,11 +2561,11 @@ func schema_acorn_io_acorn_apiclient_types_Run(ref common.ReferenceCallback) com }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.Time"}, + "github.com/obot-platform/obot/apiclient/types.Time"}, } } -func schema_acorn_io_acorn_apiclient_types_RunList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_RunList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -2578,7 +2578,7 @@ func schema_acorn_io_acorn_apiclient_types_RunList(ref common.ReferenceCallback) Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Run"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Run"), }, }, }, @@ -2589,11 +2589,11 @@ func schema_acorn_io_acorn_apiclient_types_RunList(ref common.ReferenceCallback) }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.Run"}, + "github.com/obot-platform/obot/apiclient/types.Run"}, } } -func schema_acorn_io_acorn_apiclient_types_Schedule(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_Schedule(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -2642,7 +2642,7 @@ func schema_acorn_io_acorn_apiclient_types_Schedule(ref common.ReferenceCallback } } -func schema_acorn_io_acorn_apiclient_types_Step(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_Step(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -2668,17 +2668,17 @@ func schema_acorn_io_acorn_apiclient_types_Step(ref common.ReferenceCallback) co }, "if": { SchemaProps: spec.SchemaProps{ - Ref: ref("github.com/acorn-io/acorn/apiclient/types.If"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.If"), }, }, "while": { SchemaProps: spec.SchemaProps{ - Ref: ref("github.com/acorn-io/acorn/apiclient/types.While"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.While"), }, }, "template": { SchemaProps: spec.SchemaProps{ - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Template"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Template"), }, }, "tools": { @@ -2745,11 +2745,11 @@ func schema_acorn_io_acorn_apiclient_types_Step(ref common.ReferenceCallback) co }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.If", "github.com/acorn-io/acorn/apiclient/types.Template", "github.com/acorn-io/acorn/apiclient/types.While"}, + "github.com/obot-platform/obot/apiclient/types.If", "github.com/obot-platform/obot/apiclient/types.Template", "github.com/obot-platform/obot/apiclient/types.While"}, } } -func schema_acorn_io_acorn_apiclient_types_StepTemplateInvoke(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_StepTemplateInvoke(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -2794,7 +2794,7 @@ func schema_acorn_io_acorn_apiclient_types_StepTemplateInvoke(ref common.Referen } } -func schema_acorn_io_acorn_apiclient_types_SubFlow(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_SubFlow(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -2818,7 +2818,7 @@ func schema_acorn_io_acorn_apiclient_types_SubFlow(ref common.ReferenceCallback) } } -func schema_acorn_io_acorn_apiclient_types_Table(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_Table(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -2838,7 +2838,7 @@ func schema_acorn_io_acorn_apiclient_types_Table(ref common.ReferenceCallback) c } } -func schema_acorn_io_acorn_apiclient_types_TableList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_TableList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -2851,7 +2851,7 @@ func schema_acorn_io_acorn_apiclient_types_TableList(ref common.ReferenceCallbac Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Table"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Table"), }, }, }, @@ -2862,11 +2862,11 @@ func schema_acorn_io_acorn_apiclient_types_TableList(ref common.ReferenceCallbac }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.Table"}, + "github.com/obot-platform/obot/apiclient/types.Table"}, } } -func schema_acorn_io_acorn_apiclient_types_Task(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_Task(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -2875,13 +2875,13 @@ func schema_acorn_io_acorn_apiclient_types_Task(ref common.ReferenceCallback) co "Metadata": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Metadata"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Metadata"), }, }, "TaskManifest": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.TaskManifest"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.TaskManifest"), }, }, "alias": { @@ -2895,11 +2895,11 @@ func schema_acorn_io_acorn_apiclient_types_Task(ref common.ReferenceCallback) co }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.Metadata", "github.com/acorn-io/acorn/apiclient/types.TaskManifest"}, + "github.com/obot-platform/obot/apiclient/types.Metadata", "github.com/obot-platform/obot/apiclient/types.TaskManifest"}, } } -func schema_acorn_io_acorn_apiclient_types_TaskEmail(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_TaskEmail(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -2909,7 +2909,7 @@ func schema_acorn_io_acorn_apiclient_types_TaskEmail(ref common.ReferenceCallbac } } -func schema_acorn_io_acorn_apiclient_types_TaskIf(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_TaskIf(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -2928,7 +2928,7 @@ func schema_acorn_io_acorn_apiclient_types_TaskIf(ref common.ReferenceCallback) Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.TaskStep"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.TaskStep"), }, }, }, @@ -2941,7 +2941,7 @@ func schema_acorn_io_acorn_apiclient_types_TaskIf(ref common.ReferenceCallback) Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.TaskStep"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.TaskStep"), }, }, }, @@ -2951,11 +2951,11 @@ func schema_acorn_io_acorn_apiclient_types_TaskIf(ref common.ReferenceCallback) }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.TaskStep"}, + "github.com/obot-platform/obot/apiclient/types.TaskStep"}, } } -func schema_acorn_io_acorn_apiclient_types_TaskList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_TaskList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -2968,7 +2968,7 @@ func schema_acorn_io_acorn_apiclient_types_TaskList(ref common.ReferenceCallback Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Task"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Task"), }, }, }, @@ -2979,11 +2979,11 @@ func schema_acorn_io_acorn_apiclient_types_TaskList(ref common.ReferenceCallback }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.Task"}, + "github.com/obot-platform/obot/apiclient/types.Task"}, } } -func schema_acorn_io_acorn_apiclient_types_TaskManifest(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_TaskManifest(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -3010,7 +3010,7 @@ func schema_acorn_io_acorn_apiclient_types_TaskManifest(ref common.ReferenceCall Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.TaskStep"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.TaskStep"), }, }, }, @@ -3018,22 +3018,22 @@ func schema_acorn_io_acorn_apiclient_types_TaskManifest(ref common.ReferenceCall }, "schedule": { SchemaProps: spec.SchemaProps{ - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Schedule"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Schedule"), }, }, "webhook": { SchemaProps: spec.SchemaProps{ - Ref: ref("github.com/acorn-io/acorn/apiclient/types.TaskWebhook"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.TaskWebhook"), }, }, "email": { SchemaProps: spec.SchemaProps{ - Ref: ref("github.com/acorn-io/acorn/apiclient/types.TaskEmail"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.TaskEmail"), }, }, "onDemand": { SchemaProps: spec.SchemaProps{ - Ref: ref("github.com/acorn-io/acorn/apiclient/types.TaskOnDemand"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.TaskOnDemand"), }, }, }, @@ -3041,11 +3041,11 @@ func schema_acorn_io_acorn_apiclient_types_TaskManifest(ref common.ReferenceCall }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.Schedule", "github.com/acorn-io/acorn/apiclient/types.TaskEmail", "github.com/acorn-io/acorn/apiclient/types.TaskOnDemand", "github.com/acorn-io/acorn/apiclient/types.TaskStep", "github.com/acorn-io/acorn/apiclient/types.TaskWebhook"}, + "github.com/obot-platform/obot/apiclient/types.Schedule", "github.com/obot-platform/obot/apiclient/types.TaskEmail", "github.com/obot-platform/obot/apiclient/types.TaskOnDemand", "github.com/obot-platform/obot/apiclient/types.TaskStep", "github.com/obot-platform/obot/apiclient/types.TaskWebhook"}, } } -func schema_acorn_io_acorn_apiclient_types_TaskOnDemand(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_TaskOnDemand(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -3072,7 +3072,7 @@ func schema_acorn_io_acorn_apiclient_types_TaskOnDemand(ref common.ReferenceCall } } -func schema_acorn_io_acorn_apiclient_types_TaskRun(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_TaskRun(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -3081,7 +3081,7 @@ func schema_acorn_io_acorn_apiclient_types_TaskRun(ref common.ReferenceCallback) "Metadata": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Metadata"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Metadata"), }, }, "taskID": { @@ -3099,17 +3099,17 @@ func schema_acorn_io_acorn_apiclient_types_TaskRun(ref common.ReferenceCallback) "task": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.TaskManifest"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.TaskManifest"), }, }, "startTime": { SchemaProps: spec.SchemaProps{ - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Time"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Time"), }, }, "endTime": { SchemaProps: spec.SchemaProps{ - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Time"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Time"), }, }, }, @@ -3117,11 +3117,11 @@ func schema_acorn_io_acorn_apiclient_types_TaskRun(ref common.ReferenceCallback) }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.Metadata", "github.com/acorn-io/acorn/apiclient/types.TaskManifest", "github.com/acorn-io/acorn/apiclient/types.Time"}, + "github.com/obot-platform/obot/apiclient/types.Metadata", "github.com/obot-platform/obot/apiclient/types.TaskManifest", "github.com/obot-platform/obot/apiclient/types.Time"}, } } -func schema_acorn_io_acorn_apiclient_types_TaskRunList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_TaskRunList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -3134,7 +3134,7 @@ func schema_acorn_io_acorn_apiclient_types_TaskRunList(ref common.ReferenceCallb Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.TaskRun"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.TaskRun"), }, }, }, @@ -3145,11 +3145,11 @@ func schema_acorn_io_acorn_apiclient_types_TaskRunList(ref common.ReferenceCallb }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.TaskRun"}, + "github.com/obot-platform/obot/apiclient/types.TaskRun"}, } } -func schema_acorn_io_acorn_apiclient_types_TaskStep(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_TaskStep(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -3163,7 +3163,7 @@ func schema_acorn_io_acorn_apiclient_types_TaskStep(ref common.ReferenceCallback }, "if": { SchemaProps: spec.SchemaProps{ - Ref: ref("github.com/acorn-io/acorn/apiclient/types.TaskIf"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.TaskIf"), }, }, "step": { @@ -3176,11 +3176,11 @@ func schema_acorn_io_acorn_apiclient_types_TaskStep(ref common.ReferenceCallback }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.TaskIf"}, + "github.com/obot-platform/obot/apiclient/types.TaskIf"}, } } -func schema_acorn_io_acorn_apiclient_types_TaskWebhook(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_TaskWebhook(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -3190,7 +3190,7 @@ func schema_acorn_io_acorn_apiclient_types_TaskWebhook(ref common.ReferenceCallb } } -func schema_acorn_io_acorn_apiclient_types_Template(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_Template(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -3223,7 +3223,7 @@ func schema_acorn_io_acorn_apiclient_types_Template(ref common.ReferenceCallback } } -func schema_acorn_io_acorn_apiclient_types_Thread(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_Thread(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -3232,13 +3232,13 @@ func schema_acorn_io_acorn_apiclient_types_Thread(ref common.ReferenceCallback) "Metadata": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Metadata"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Metadata"), }, }, "ThreadManifest": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.ThreadManifest"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.ThreadManifest"), }, }, "agentID": { @@ -3326,11 +3326,11 @@ func schema_acorn_io_acorn_apiclient_types_Thread(ref common.ReferenceCallback) }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.Metadata", "github.com/acorn-io/acorn/apiclient/types.ThreadManifest"}, + "github.com/obot-platform/obot/apiclient/types.Metadata", "github.com/obot-platform/obot/apiclient/types.ThreadManifest"}, } } -func schema_acorn_io_acorn_apiclient_types_ThreadList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_ThreadList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -3343,7 +3343,7 @@ func schema_acorn_io_acorn_apiclient_types_ThreadList(ref common.ReferenceCallba Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Thread"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Thread"), }, }, }, @@ -3354,11 +3354,11 @@ func schema_acorn_io_acorn_apiclient_types_ThreadList(ref common.ReferenceCallba }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.Thread"}, + "github.com/obot-platform/obot/apiclient/types.Thread"}, } } -func schema_acorn_io_acorn_apiclient_types_ThreadManifest(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_ThreadManifest(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -3390,7 +3390,7 @@ func schema_acorn_io_acorn_apiclient_types_ThreadManifest(ref common.ReferenceCa } } -func schema_acorn_io_acorn_apiclient_types_Time(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_Time(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -3401,7 +3401,7 @@ func schema_acorn_io_acorn_apiclient_types_Time(ref common.ReferenceCallback) co } } -func schema_acorn_io_acorn_apiclient_types_ToolCall(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_ToolCall(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -3452,7 +3452,7 @@ func schema_acorn_io_acorn_apiclient_types_ToolCall(ref common.ReferenceCallback } } -func schema_acorn_io_acorn_apiclient_types_ToolInput(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_ToolInput(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -3497,7 +3497,7 @@ func schema_acorn_io_acorn_apiclient_types_ToolInput(ref common.ReferenceCallbac } } -func schema_acorn_io_acorn_apiclient_types_ToolReference(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_ToolReference(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -3506,13 +3506,13 @@ func schema_acorn_io_acorn_apiclient_types_ToolReference(ref common.ReferenceCal "Metadata": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Metadata"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Metadata"), }, }, "ToolReferenceManifest": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.ToolReferenceManifest"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.ToolReferenceManifest"), }, }, "resolved": { @@ -3565,11 +3565,11 @@ func schema_acorn_io_acorn_apiclient_types_ToolReference(ref common.ReferenceCal }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.Metadata", "github.com/acorn-io/acorn/apiclient/types.ToolReferenceManifest"}, + "github.com/obot-platform/obot/apiclient/types.Metadata", "github.com/obot-platform/obot/apiclient/types.ToolReferenceManifest"}, } } -func schema_acorn_io_acorn_apiclient_types_ToolReferenceList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_ToolReferenceList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -3582,7 +3582,7 @@ func schema_acorn_io_acorn_apiclient_types_ToolReferenceList(ref common.Referenc Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.ToolReference"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.ToolReference"), }, }, }, @@ -3593,11 +3593,11 @@ func schema_acorn_io_acorn_apiclient_types_ToolReferenceList(ref common.Referenc }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.ToolReference"}, + "github.com/obot-platform/obot/apiclient/types.ToolReference"}, } } -func schema_acorn_io_acorn_apiclient_types_ToolReferenceManifest(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_ToolReferenceManifest(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -3636,7 +3636,7 @@ func schema_acorn_io_acorn_apiclient_types_ToolReferenceManifest(ref common.Refe } } -func schema_acorn_io_acorn_apiclient_types_User(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_User(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -3645,7 +3645,7 @@ func schema_acorn_io_acorn_apiclient_types_User(ref common.ReferenceCallback) co "Metadata": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Metadata"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Metadata"), }, }, "username": { @@ -3677,11 +3677,11 @@ func schema_acorn_io_acorn_apiclient_types_User(ref common.ReferenceCallback) co }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.Metadata"}, + "github.com/obot-platform/obot/apiclient/types.Metadata"}, } } -func schema_acorn_io_acorn_apiclient_types_UserList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_UserList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -3694,7 +3694,7 @@ func schema_acorn_io_acorn_apiclient_types_UserList(ref common.ReferenceCallback Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.User"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.User"), }, }, }, @@ -3705,11 +3705,11 @@ func schema_acorn_io_acorn_apiclient_types_UserList(ref common.ReferenceCallback }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.User"}, + "github.com/obot-platform/obot/apiclient/types.User"}, } } -func schema_acorn_io_acorn_apiclient_types_Webhook(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_Webhook(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -3718,13 +3718,13 @@ func schema_acorn_io_acorn_apiclient_types_Webhook(ref common.ReferenceCallback) "Metadata": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Metadata"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Metadata"), }, }, "WebhookManifest": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.WebhookManifest"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.WebhookManifest"), }, }, "aliasAssigned": { @@ -3735,7 +3735,7 @@ func schema_acorn_io_acorn_apiclient_types_Webhook(ref common.ReferenceCallback) }, "lastSuccessfulRunCompleted": { SchemaProps: spec.SchemaProps{ - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Time"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Time"), }, }, "hasToken": { @@ -3749,11 +3749,11 @@ func schema_acorn_io_acorn_apiclient_types_Webhook(ref common.ReferenceCallback) }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.Metadata", "github.com/acorn-io/acorn/apiclient/types.Time", "github.com/acorn-io/acorn/apiclient/types.WebhookManifest"}, + "github.com/obot-platform/obot/apiclient/types.Metadata", "github.com/obot-platform/obot/apiclient/types.Time", "github.com/obot-platform/obot/apiclient/types.WebhookManifest"}, } } -func schema_acorn_io_acorn_apiclient_types_WebhookList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_WebhookList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -3766,7 +3766,7 @@ func schema_acorn_io_acorn_apiclient_types_WebhookList(ref common.ReferenceCallb Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Webhook"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Webhook"), }, }, }, @@ -3777,11 +3777,11 @@ func schema_acorn_io_acorn_apiclient_types_WebhookList(ref common.ReferenceCallb }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.Webhook"}, + "github.com/obot-platform/obot/apiclient/types.Webhook"}, } } -func schema_acorn_io_acorn_apiclient_types_WebhookManifest(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_WebhookManifest(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -3850,7 +3850,7 @@ func schema_acorn_io_acorn_apiclient_types_WebhookManifest(ref common.ReferenceC } } -func schema_acorn_io_acorn_apiclient_types_WebsiteCrawlingConfig(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_WebsiteCrawlingConfig(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -3876,7 +3876,7 @@ func schema_acorn_io_acorn_apiclient_types_WebsiteCrawlingConfig(ref common.Refe } } -func schema_acorn_io_acorn_apiclient_types_While(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_While(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -3901,7 +3901,7 @@ func schema_acorn_io_acorn_apiclient_types_While(ref common.ReferenceCallback) c Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Step"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Step"), }, }, }, @@ -3911,11 +3911,11 @@ func schema_acorn_io_acorn_apiclient_types_While(ref common.ReferenceCallback) c }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.Step"}, + "github.com/obot-platform/obot/apiclient/types.Step"}, } } -func schema_acorn_io_acorn_apiclient_types_Workflow(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_Workflow(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -3924,13 +3924,13 @@ func schema_acorn_io_acorn_apiclient_types_Workflow(ref common.ReferenceCallback "Metadata": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Metadata"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Metadata"), }, }, "WorkflowManifest": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.WorkflowManifest"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.WorkflowManifest"), }, }, "aliasAssigned": { @@ -3947,7 +3947,7 @@ func schema_acorn_io_acorn_apiclient_types_Workflow(ref common.ReferenceCallback Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.OAuthAppLoginAuthStatus"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.OAuthAppLoginAuthStatus"), }, }, }, @@ -3964,11 +3964,11 @@ func schema_acorn_io_acorn_apiclient_types_Workflow(ref common.ReferenceCallback }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.Metadata", "github.com/acorn-io/acorn/apiclient/types.OAuthAppLoginAuthStatus", "github.com/acorn-io/acorn/apiclient/types.WorkflowManifest"}, + "github.com/obot-platform/obot/apiclient/types.Metadata", "github.com/obot-platform/obot/apiclient/types.OAuthAppLoginAuthStatus", "github.com/obot-platform/obot/apiclient/types.WorkflowManifest"}, } } -func schema_acorn_io_acorn_apiclient_types_WorkflowCall(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_WorkflowCall(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -4010,7 +4010,7 @@ func schema_acorn_io_acorn_apiclient_types_WorkflowCall(ref common.ReferenceCall } } -func schema_acorn_io_acorn_apiclient_types_WorkflowExecution(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_WorkflowExecution(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -4019,23 +4019,23 @@ func schema_acorn_io_acorn_apiclient_types_WorkflowExecution(ref common.Referenc "Metadata": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Metadata"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Metadata"), }, }, "workflow": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.WorkflowManifest"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.WorkflowManifest"), }, }, "startTime": { SchemaProps: spec.SchemaProps{ - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Time"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Time"), }, }, "endTime": { SchemaProps: spec.SchemaProps{ - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Time"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Time"), }, }, "input": { @@ -4056,11 +4056,11 @@ func schema_acorn_io_acorn_apiclient_types_WorkflowExecution(ref common.Referenc }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.Metadata", "github.com/acorn-io/acorn/apiclient/types.Time", "github.com/acorn-io/acorn/apiclient/types.WorkflowManifest"}, + "github.com/obot-platform/obot/apiclient/types.Metadata", "github.com/obot-platform/obot/apiclient/types.Time", "github.com/obot-platform/obot/apiclient/types.WorkflowManifest"}, } } -func schema_acorn_io_acorn_apiclient_types_WorkflowExecutionList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_WorkflowExecutionList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -4073,7 +4073,7 @@ func schema_acorn_io_acorn_apiclient_types_WorkflowExecutionList(ref common.Refe Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.WorkflowExecution"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.WorkflowExecution"), }, }, }, @@ -4084,11 +4084,11 @@ func schema_acorn_io_acorn_apiclient_types_WorkflowExecutionList(ref common.Refe }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.WorkflowExecution"}, + "github.com/obot-platform/obot/apiclient/types.WorkflowExecution"}, } } -func schema_acorn_io_acorn_apiclient_types_WorkflowList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_WorkflowList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -4101,7 +4101,7 @@ func schema_acorn_io_acorn_apiclient_types_WorkflowList(ref common.ReferenceCall Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Workflow"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Workflow"), }, }, }, @@ -4112,11 +4112,11 @@ func schema_acorn_io_acorn_apiclient_types_WorkflowList(ref common.ReferenceCall }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.Workflow"}, + "github.com/obot-platform/obot/apiclient/types.Workflow"}, } } -func schema_acorn_io_acorn_apiclient_types_WorkflowManifest(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_obot_platform_obot_apiclient_types_WorkflowManifest(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -4131,7 +4131,7 @@ func schema_acorn_io_acorn_apiclient_types_WorkflowManifest(ref common.Reference }, "icons": { SchemaProps: spec.SchemaProps{ - Ref: ref("github.com/acorn-io/acorn/apiclient/types.AgentIcons"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.AgentIcons"), }, }, "description": { @@ -4294,7 +4294,7 @@ func schema_acorn_io_acorn_apiclient_types_WorkflowManifest(ref common.Reference Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.EnvVar"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.EnvVar"), }, }, }, @@ -4307,7 +4307,7 @@ func schema_acorn_io_acorn_apiclient_types_WorkflowManifest(ref common.Reference Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Step"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Step"), }, }, }, @@ -4325,7 +4325,7 @@ func schema_acorn_io_acorn_apiclient_types_WorkflowManifest(ref common.Reference }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.AgentIcons", "github.com/acorn-io/acorn/apiclient/types.EnvVar", "github.com/acorn-io/acorn/apiclient/types.Step"}, + "github.com/obot-platform/obot/apiclient/types.AgentIcons", "github.com/obot-platform/obot/apiclient/types.EnvVar", "github.com/obot-platform/obot/apiclient/types.Step"}, } } @@ -4358,20 +4358,20 @@ func schema_storage_apis_ottootto8ai_v1_Agent(ref common.ReferenceCallback) comm "spec": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.AgentSpec"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.AgentSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.AgentStatus"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.AgentStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.AgentSpec", "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.AgentStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "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"}, } } @@ -4408,7 +4408,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/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.Agent"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.Agent"), }, }, }, @@ -4419,7 +4419,7 @@ func schema_storage_apis_ottootto8ai_v1_AgentList(ref common.ReferenceCallback) }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.Agent", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.Agent", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } @@ -4432,7 +4432,7 @@ func schema_storage_apis_ottootto8ai_v1_AgentSpec(ref common.ReferenceCallback) "manifest": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.AgentManifest"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.AgentManifest"), }, }, "systemTools": { @@ -4507,7 +4507,7 @@ func schema_storage_apis_ottootto8ai_v1_AgentSpec(ref common.ReferenceCallback) }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.AgentManifest"}, + "github.com/obot-platform/obot/apiclient/types.AgentManifest"}, } } @@ -4551,7 +4551,7 @@ func schema_storage_apis_ottootto8ai_v1_AgentStatus(ref common.ReferenceCallback Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.OAuthAppLoginAuthStatus"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.OAuthAppLoginAuthStatus"), }, }, }, @@ -4567,7 +4567,7 @@ func schema_storage_apis_ottootto8ai_v1_AgentStatus(ref common.ReferenceCallback }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.OAuthAppLoginAuthStatus"}, + "github.com/obot-platform/obot/apiclient/types.OAuthAppLoginAuthStatus"}, } } @@ -4600,20 +4600,20 @@ func schema_storage_apis_ottootto8ai_v1_Alias(ref common.ReferenceCallback) comm "spec": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.AliasSpec"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.AliasSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.EmptyStatus"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.EmptyStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.AliasSpec", "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.EmptyStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "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"}, } } @@ -4650,7 +4650,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/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.Alias"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.Alias"), }, }, }, @@ -4661,7 +4661,7 @@ func schema_storage_apis_ottootto8ai_v1_AliasList(ref common.ReferenceCallback) }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.Alias", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.Alias", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } @@ -4730,20 +4730,20 @@ func schema_storage_apis_ottootto8ai_v1_CronJob(ref common.ReferenceCallback) co "spec": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.CronJobSpec"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.CronJobSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.CronJobStatus"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.CronJobStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.CronJobSpec", "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.CronJobStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "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"}, } } @@ -4780,7 +4780,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/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.CronJob"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.CronJob"), }, }, }, @@ -4791,7 +4791,7 @@ func schema_storage_apis_ottootto8ai_v1_CronJobList(ref common.ReferenceCallback }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.CronJob", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.CronJob", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } @@ -4827,7 +4827,7 @@ func schema_storage_apis_ottootto8ai_v1_CronJobSpec(ref common.ReferenceCallback }, "taskSchedule": { SchemaProps: spec.SchemaProps{ - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Schedule"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Schedule"), }, }, "threadName": { @@ -4840,7 +4840,7 @@ func schema_storage_apis_ottootto8ai_v1_CronJobSpec(ref common.ReferenceCallback }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.Schedule"}, + "github.com/obot-platform/obot/apiclient/types.Schedule"}, } } @@ -4897,13 +4897,13 @@ func schema_storage_apis_ottootto8ai_v1_DefaultModelAlias(ref common.ReferenceCa "spec": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.DefaultModelAliasSpec"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.DefaultModelAliasSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.DefaultModelAliasStatus"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.DefaultModelAliasStatus"), }, }, }, @@ -4911,7 +4911,7 @@ func schema_storage_apis_ottootto8ai_v1_DefaultModelAlias(ref common.ReferenceCa }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.DefaultModelAliasSpec", "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.DefaultModelAliasStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "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"}, } } @@ -4948,7 +4948,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/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.DefaultModelAlias"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.DefaultModelAlias"), }, }, }, @@ -4959,7 +4959,7 @@ func schema_storage_apis_ottootto8ai_v1_DefaultModelAliasList(ref common.Referen }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.DefaultModelAlias", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.DefaultModelAlias", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } @@ -4972,7 +4972,7 @@ func schema_storage_apis_ottootto8ai_v1_DefaultModelAliasSpec(ref common.Referen "manifest": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.DefaultModelAliasManifest"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.DefaultModelAliasManifest"), }, }, }, @@ -4980,7 +4980,7 @@ func schema_storage_apis_ottootto8ai_v1_DefaultModelAliasSpec(ref common.Referen }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.DefaultModelAliasManifest"}, + "github.com/obot-platform/obot/apiclient/types.DefaultModelAliasManifest"}, } } @@ -5033,20 +5033,20 @@ func schema_storage_apis_ottootto8ai_v1_EmailReceiver(ref common.ReferenceCallba "spec": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.EmailReceiverSpec"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.EmailReceiverSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.EmailReceiverStatus"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.EmailReceiverStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.EmailReceiverSpec", "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.EmailReceiverStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "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"}, } } @@ -5083,7 +5083,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/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.EmailReceiver"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.EmailReceiver"), }, }, }, @@ -5094,7 +5094,7 @@ func schema_storage_apis_ottootto8ai_v1_EmailReceiverList(ref common.ReferenceCa }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.EmailReceiver", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.EmailReceiver", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } @@ -5221,20 +5221,20 @@ func schema_storage_apis_ottootto8ai_v1_KnowledgeFile(ref common.ReferenceCallba "spec": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeFileSpec"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeFileSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeFileStatus"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeFileStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeFileSpec", "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeFileStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "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"}, } } @@ -5271,7 +5271,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/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeFile"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeFile"), }, }, }, @@ -5282,7 +5282,7 @@ func schema_storage_apis_ottootto8ai_v1_KnowledgeFileList(ref common.ReferenceCa }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeFile", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeFile", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } @@ -5455,20 +5455,20 @@ func schema_storage_apis_ottootto8ai_v1_KnowledgeSet(ref common.ReferenceCallbac "spec": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSetSpec"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSetSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSetStatus"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSetStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSetSpec", "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSetStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "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"}, } } @@ -5505,7 +5505,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/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSet"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSet"), }, }, }, @@ -5516,7 +5516,7 @@ func schema_storage_apis_ottootto8ai_v1_KnowledgeSetList(ref common.ReferenceCal }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSet", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSet", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } @@ -5548,7 +5548,7 @@ func schema_storage_apis_ottootto8ai_v1_KnowledgeSetSpec(ref common.ReferenceCal "manifest": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSetManifest"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSetManifest"), }, }, "agentName": { @@ -5583,7 +5583,7 @@ func schema_storage_apis_ottootto8ai_v1_KnowledgeSetSpec(ref common.ReferenceCal }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSetManifest"}, + "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSetManifest"}, } } @@ -5670,20 +5670,20 @@ func schema_storage_apis_ottootto8ai_v1_KnowledgeSource(ref common.ReferenceCall "spec": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSourceSpec"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSourceSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSourceStatus"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSourceStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSourceSpec", "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSourceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "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"}, } } @@ -5720,7 +5720,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/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSource"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSource"), }, }, }, @@ -5731,7 +5731,7 @@ func schema_storage_apis_ottootto8ai_v1_KnowledgeSourceList(ref common.Reference }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSource", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.KnowledgeSource", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } @@ -5744,7 +5744,7 @@ func schema_storage_apis_ottootto8ai_v1_KnowledgeSourceSpec(ref common.Reference "manifest": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.KnowledgeSourceManifest"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.KnowledgeSourceManifest"), }, }, "knowledgeSetName": { @@ -5763,7 +5763,7 @@ func schema_storage_apis_ottootto8ai_v1_KnowledgeSourceSpec(ref common.Reference }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.KnowledgeSourceManifest"}, + "github.com/obot-platform/obot/apiclient/types.KnowledgeSourceManifest"}, } } @@ -5873,20 +5873,20 @@ func schema_storage_apis_ottootto8ai_v1_Model(ref common.ReferenceCallback) comm "spec": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.ModelSpec"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.ModelSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.ModelStatus"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.ModelStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.ModelSpec", "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.ModelStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "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"}, } } @@ -5923,7 +5923,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/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.Model"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.Model"), }, }, }, @@ -5934,7 +5934,7 @@ func schema_storage_apis_ottootto8ai_v1_ModelList(ref common.ReferenceCallback) }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.Model", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.Model", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } @@ -5947,14 +5947,14 @@ func schema_storage_apis_ottootto8ai_v1_ModelSpec(ref common.ReferenceCallback) "manifest": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.ModelManifest"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.ModelManifest"), }, }, }, }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.ModelManifest"}, + "github.com/obot-platform/obot/apiclient/types.ModelManifest"}, } } @@ -6011,20 +6011,20 @@ func schema_storage_apis_ottootto8ai_v1_OAuthApp(ref common.ReferenceCallback) c "spec": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.OAuthAppSpec"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.OAuthAppSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.EmptyStatus"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.EmptyStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.EmptyStatus", "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.OAuthAppSpec", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "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"}, } } @@ -6061,7 +6061,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/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.OAuthApp"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.OAuthApp"), }, }, }, @@ -6072,7 +6072,7 @@ func schema_storage_apis_ottootto8ai_v1_OAuthAppList(ref common.ReferenceCallbac }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.OAuthApp", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.OAuthApp", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } @@ -6105,20 +6105,20 @@ func schema_storage_apis_ottootto8ai_v1_OAuthAppLogin(ref common.ReferenceCallba "spec": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.OAuthAppLoginSpec"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.OAuthAppLoginSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.OAuthAppLoginStatus"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.OAuthAppLoginStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.OAuthAppLoginSpec", "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.OAuthAppLoginStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "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"}, } } @@ -6155,7 +6155,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/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.OAuthAppLogin"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.OAuthAppLogin"), }, }, }, @@ -6166,7 +6166,7 @@ func schema_storage_apis_ottootto8ai_v1_OAuthAppLoginList(ref common.ReferenceCa }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.OAuthAppLogin", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.OAuthAppLogin", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } @@ -6217,14 +6217,14 @@ func schema_storage_apis_ottootto8ai_v1_OAuthAppLoginStatus(ref common.Reference "external": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.OAuthAppLoginAuthStatus"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.OAuthAppLoginAuthStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.OAuthAppLoginAuthStatus"}, + "github.com/obot-platform/obot/apiclient/types.OAuthAppLoginAuthStatus"}, } } @@ -6237,14 +6237,14 @@ func schema_storage_apis_ottootto8ai_v1_OAuthAppSpec(ref common.ReferenceCallbac "manifest": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.OAuthAppManifest"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.OAuthAppManifest"), }, }, }, }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.OAuthAppManifest"}, + "github.com/obot-platform/obot/apiclient/types.OAuthAppManifest"}, } } @@ -6318,20 +6318,20 @@ func schema_storage_apis_ottootto8ai_v1_Run(ref common.ReferenceCallback) common "spec": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.RunSpec"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.RunSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.RunStatus"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.RunStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.RunSpec", "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.RunStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "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"}, } } @@ -6368,7 +6368,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/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.Run"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.Run"), }, }, }, @@ -6379,7 +6379,7 @@ func schema_storage_apis_ottootto8ai_v1_RunList(ref common.ReferenceCallback) co }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.Run", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.Run", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } @@ -6533,20 +6533,20 @@ func schema_storage_apis_ottootto8ai_v1_RunState(ref common.ReferenceCallback) c "spec": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.RunStateSpec"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.RunStateSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.EmptyStatus"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.EmptyStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.EmptyStatus", "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.RunStateSpec", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "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"}, } } @@ -6583,7 +6583,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/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.RunState"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.RunState"), }, }, }, @@ -6594,7 +6594,7 @@ func schema_storage_apis_ottootto8ai_v1_RunStateList(ref common.ReferenceCallbac }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.RunState", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.RunState", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } @@ -6697,7 +6697,7 @@ func schema_storage_apis_ottootto8ai_v1_RunStatus(ref common.ReferenceCallback) }, "subCall": { SchemaProps: spec.SchemaProps{ - Ref: ref("github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.SubCall"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.SubCall"), }, }, }, @@ -6705,7 +6705,7 @@ func schema_storage_apis_ottootto8ai_v1_RunStatus(ref common.ReferenceCallback) }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/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/otto.otto8.ai/v1.SubCall", "k8s.io/apimachinery/pkg/apis/meta/v1.Condition", "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, } } @@ -6768,20 +6768,20 @@ func schema_storage_apis_ottootto8ai_v1_Thread(ref common.ReferenceCallback) com "spec": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.ThreadSpec"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.ThreadSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.ThreadStatus"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.ThreadStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.ThreadSpec", "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.ThreadStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "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"}, } } @@ -6818,7 +6818,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/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.Thread"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.Thread"), }, }, }, @@ -6829,7 +6829,7 @@ func schema_storage_apis_ottootto8ai_v1_ThreadList(ref common.ReferenceCallback) }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.Thread", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.Thread", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } @@ -6842,7 +6842,7 @@ func schema_storage_apis_ottootto8ai_v1_ThreadSpec(ref common.ReferenceCallback) "manifest": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.ThreadManifest"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.ThreadManifest"), }, }, "parentThreadName": { @@ -6973,7 +6973,7 @@ func schema_storage_apis_ottootto8ai_v1_ThreadSpec(ref common.ReferenceCallback) }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.ThreadManifest"}, + "github.com/obot-platform/obot/apiclient/types.ThreadManifest"}, } } @@ -7068,20 +7068,20 @@ func schema_storage_apis_ottootto8ai_v1_ToolReference(ref common.ReferenceCallba "spec": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.ToolReferenceSpec"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.ToolReferenceSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.ToolReferenceStatus"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.ToolReferenceStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.ToolReferenceSpec", "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.ToolReferenceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "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"}, } } @@ -7118,7 +7118,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/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.ToolReference"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.ToolReference"), }, }, }, @@ -7129,7 +7129,7 @@ func schema_storage_apis_ottootto8ai_v1_ToolReferenceList(ref common.ReferenceCa }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.ToolReference", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.ToolReference", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } @@ -7194,7 +7194,7 @@ func schema_storage_apis_ottootto8ai_v1_ToolReferenceStatus(ref common.Reference }, "tool": { SchemaProps: spec.SchemaProps{ - Ref: ref("github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.ToolShortDescription"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.ToolShortDescription"), }, }, "error": { @@ -7207,7 +7207,7 @@ func schema_storage_apis_ottootto8ai_v1_ToolReferenceStatus(ref common.Reference }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.ToolShortDescription", "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, + "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.ToolShortDescription", "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, } } @@ -7300,20 +7300,20 @@ func schema_storage_apis_ottootto8ai_v1_Webhook(ref common.ReferenceCallback) co "spec": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.WebhookSpec"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WebhookSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.WebhookStatus"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WebhookStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.WebhookSpec", "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.WebhookStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "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"}, } } @@ -7350,7 +7350,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/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.Webhook"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.Webhook"), }, }, }, @@ -7361,7 +7361,7 @@ func schema_storage_apis_ottootto8ai_v1_WebhookList(ref common.ReferenceCallback }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.Webhook", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.Webhook", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } @@ -7507,20 +7507,20 @@ func schema_storage_apis_ottootto8ai_v1_Workflow(ref common.ReferenceCallback) c "spec": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.WorkflowSpec"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WorkflowSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.WorkflowStatus"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WorkflowStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.WorkflowSpec", "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.WorkflowStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "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"}, } } @@ -7553,20 +7553,20 @@ func schema_storage_apis_ottootto8ai_v1_WorkflowExecution(ref common.ReferenceCa "spec": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.WorkflowExecutionSpec"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WorkflowExecutionSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.WorkflowExecutionStatus"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WorkflowExecutionStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.WorkflowExecutionSpec", "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.WorkflowExecutionStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "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"}, } } @@ -7603,7 +7603,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/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.WorkflowExecution"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WorkflowExecution"), }, }, }, @@ -7614,7 +7614,7 @@ func schema_storage_apis_ottootto8ai_v1_WorkflowExecutionList(ref common.Referen }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.WorkflowExecution", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WorkflowExecution", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } @@ -7735,7 +7735,7 @@ func schema_storage_apis_ottootto8ai_v1_WorkflowExecutionStatus(ref common.Refer }, "workflowManifest": { SchemaProps: spec.SchemaProps{ - Ref: ref("github.com/acorn-io/acorn/apiclient/types.WorkflowManifest"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.WorkflowManifest"), }, }, "endTime": { @@ -7753,7 +7753,7 @@ func schema_storage_apis_ottootto8ai_v1_WorkflowExecutionStatus(ref common.Refer }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.WorkflowManifest", "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, + "github.com/obot-platform/obot/apiclient/types.WorkflowManifest", "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, } } @@ -7790,7 +7790,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/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.Workflow"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.Workflow"), }, }, }, @@ -7801,7 +7801,7 @@ func schema_storage_apis_ottootto8ai_v1_WorkflowList(ref common.ReferenceCallbac }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.Workflow", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.Workflow", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } @@ -7820,7 +7820,7 @@ func schema_storage_apis_ottootto8ai_v1_WorkflowSpec(ref common.ReferenceCallbac "manifest": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.WorkflowManifest"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.WorkflowManifest"), }, }, "knowledgeSetNames": { @@ -7847,7 +7847,7 @@ func schema_storage_apis_ottootto8ai_v1_WorkflowSpec(ref common.ReferenceCallbac }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.WorkflowManifest"}, + "github.com/obot-platform/obot/apiclient/types.WorkflowManifest"}, } } @@ -7891,7 +7891,7 @@ func schema_storage_apis_ottootto8ai_v1_WorkflowStatus(ref common.ReferenceCallb Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.OAuthAppLoginAuthStatus"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.OAuthAppLoginAuthStatus"), }, }, }, @@ -7907,7 +7907,7 @@ func schema_storage_apis_ottootto8ai_v1_WorkflowStatus(ref common.ReferenceCallb }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.OAuthAppLoginAuthStatus"}, + "github.com/obot-platform/obot/apiclient/types.OAuthAppLoginAuthStatus"}, } } @@ -7940,20 +7940,20 @@ func schema_storage_apis_ottootto8ai_v1_WorkflowStep(ref common.ReferenceCallbac "spec": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.WorkflowStepSpec"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WorkflowStepSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.WorkflowStepStatus"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WorkflowStepStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.WorkflowStepSpec", "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.WorkflowStepStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "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"}, } } @@ -7990,7 +7990,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/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.WorkflowStep"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WorkflowStep"), }, }, }, @@ -8001,7 +8001,7 @@ func schema_storage_apis_ottootto8ai_v1_WorkflowStepList(ref common.ReferenceCal }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.WorkflowStep", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WorkflowStep", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } @@ -8020,7 +8020,7 @@ func schema_storage_apis_ottootto8ai_v1_WorkflowStepSpec(ref common.ReferenceCal "step": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/apiclient/types.Step"), + Ref: ref("github.com/obot-platform/obot/apiclient/types.Step"), }, }, "workflowExecutionName": { @@ -8039,7 +8039,7 @@ func schema_storage_apis_ottootto8ai_v1_WorkflowStepSpec(ref common.ReferenceCal }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/apiclient/types.Step"}, + "github.com/obot-platform/obot/apiclient/types.Step"}, } } @@ -8068,7 +8068,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/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.SubCall"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.SubCall"), }, }, }, @@ -8110,7 +8110,7 @@ func schema_storage_apis_ottootto8ai_v1_WorkflowStepStatus(ref common.ReferenceC }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.SubCall"}, + "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.SubCall"}, } } @@ -8143,20 +8143,20 @@ func schema_storage_apis_ottootto8ai_v1_Workspace(ref common.ReferenceCallback) "spec": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.WorkspaceSpec"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WorkspaceSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.WorkspaceStatus"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.WorkspaceStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.WorkspaceSpec", "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.WorkspaceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "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"}, } } @@ -8193,7 +8193,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/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.Workspace"), + Ref: ref("github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.Workspace"), }, }, }, @@ -8204,7 +8204,7 @@ func schema_storage_apis_ottootto8ai_v1_WorkspaceList(ref common.ReferenceCallba }, }, Dependencies: []string{ - "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1.Workspace", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1.Workspace", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } diff --git a/pkg/storage/registry/apigroups/agent/apigroup.go b/pkg/storage/registry/apigroups/agent/apigroup.go index 78525535..8328dc21 100644 --- a/pkg/storage/registry/apigroups/agent/apigroup.go +++ b/pkg/storage/registry/apigroups/agent/apigroup.go @@ -3,12 +3,12 @@ package agent import ( "strings" - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" - "github.com/acorn-io/acorn/pkg/storage/registry/generic" - "github.com/acorn-io/acorn/pkg/storage/scheme" - "github.com/acorn-io/acorn/pkg/storage/services" - "github.com/acorn-io/kinm/pkg/apigroup" - "github.com/acorn-io/nah/pkg/typed" + "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" + "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" coordinationv1 "k8s.io/api/coordination/v1" "k8s.io/apiserver/pkg/registry/rest" genericapiserver "k8s.io/apiserver/pkg/server" diff --git a/pkg/storage/registry/generic/store.go b/pkg/storage/registry/generic/store.go index 352a5af4..d9bcbfe9 100644 --- a/pkg/storage/registry/generic/store.go +++ b/pkg/storage/registry/generic/store.go @@ -1,11 +1,11 @@ package generic import ( - "github.com/acorn-io/acorn/pkg/storage/scheme" - "github.com/acorn-io/acorn/pkg/storage/tables" - "github.com/acorn-io/kinm/pkg/db" - "github.com/acorn-io/kinm/pkg/stores" - "github.com/acorn-io/kinm/pkg/strategy" + "github.com/obot-platform/kinm/pkg/db" + "github.com/obot-platform/kinm/pkg/stores" + "github.com/obot-platform/kinm/pkg/strategy" + "github.com/obot-platform/obot/pkg/storage/scheme" + "github.com/obot-platform/obot/pkg/storage/tables" "k8s.io/apiserver/pkg/registry/rest" kclient "sigs.k8s.io/controller-runtime/pkg/client" ) diff --git a/pkg/storage/scheme/scheme.go b/pkg/storage/scheme/scheme.go index 50291b38..9a87d227 100644 --- a/pkg/storage/scheme/scheme.go +++ b/pkg/storage/scheme/scheme.go @@ -1,8 +1,8 @@ package scheme import ( - v1 "github.com/acorn-io/acorn/pkg/storage/apis/otto.otto8.ai/v1" - "github.com/acorn-io/nah/pkg/restconfig" + "github.com/obot-platform/nah/pkg/restconfig" + v1 "github.com/obot-platform/obot/pkg/storage/apis/otto.otto8.ai/v1" coordinationv1 "k8s.io/api/coordination/v1" corev1 "k8s.io/api/core/v1" ) diff --git a/pkg/storage/server.go b/pkg/storage/server.go index d3a672ab..da426cd9 100644 --- a/pkg/storage/server.go +++ b/pkg/storage/server.go @@ -6,13 +6,13 @@ import ( "net" "net/http" - "github.com/acorn-io/acorn/pkg/storage/openapi/generated" - "github.com/acorn-io/acorn/pkg/storage/registry/apigroups/agent" - "github.com/acorn-io/acorn/pkg/storage/scheme" - "github.com/acorn-io/acorn/pkg/storage/services" - "github.com/acorn-io/acorn/pkg/version" - "github.com/acorn-io/kinm/pkg/db" - mserver "github.com/acorn-io/kinm/pkg/server" + "github.com/obot-platform/kinm/pkg/db" + mserver "github.com/obot-platform/kinm/pkg/server" + "github.com/obot-platform/obot/pkg/storage/openapi/generated" + "github.com/obot-platform/obot/pkg/storage/registry/apigroups/agent" + "github.com/obot-platform/obot/pkg/storage/scheme" + "github.com/obot-platform/obot/pkg/storage/services" + "github.com/obot-platform/obot/pkg/version" k8sversion "k8s.io/apimachinery/pkg/version" "k8s.io/apiserver/pkg/server/healthz" "k8s.io/client-go/rest" diff --git a/pkg/storage/services/config.go b/pkg/storage/services/config.go index 414b5c1e..ac1769ab 100644 --- a/pkg/storage/services/config.go +++ b/pkg/storage/services/config.go @@ -1,11 +1,11 @@ package services import ( - "github.com/acorn-io/acorn/pkg/storage/authn" - "github.com/acorn-io/acorn/pkg/storage/authz" - "github.com/acorn-io/acorn/pkg/storage/scheme" - "github.com/acorn-io/kinm/pkg/db" - "github.com/acorn-io/nah/pkg/randomtoken" + "github.com/obot-platform/kinm/pkg/db" + "github.com/obot-platform/nah/pkg/randomtoken" + "github.com/obot-platform/obot/pkg/storage/authn" + "github.com/obot-platform/obot/pkg/storage/authz" + "github.com/obot-platform/obot/pkg/storage/scheme" "k8s.io/apiserver/pkg/authentication/authenticator" "k8s.io/apiserver/pkg/authorization/authorizer" ) @@ -13,7 +13,7 @@ import ( type Config struct { StorageListenPort int `usage:"Port to storage backend will listen on (default: random port)"` StorageToken string `usage:"Token for storage access, will be generated if not passed"` - DSN string `usage:"Database dsn in driver://connection_string format" default:"sqlite://file:acorn.db?_journal=WAL&cache=shared&_busy_timeout=30000"` + DSN string `usage:"Database dsn in driver://connection_string format" default:"sqlite://file:obot.db?_journal=WAL&cache=shared&_busy_timeout=30000"` } type Services struct { diff --git a/pkg/storage/tables/converter.go b/pkg/storage/tables/converter.go index a988801b..e97b1798 100644 --- a/pkg/storage/tables/converter.go +++ b/pkg/storage/tables/converter.go @@ -6,7 +6,7 @@ import ( "strings" "text/template" - "github.com/acorn-io/acorn/pkg/storage/tables/table" + "github.com/obot-platform/obot/pkg/storage/tables/table" "k8s.io/apimachinery/pkg/api/meta" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/runtime" diff --git a/pkg/system/bin.go b/pkg/system/bin.go index dd1c90ca..c17f0164 100644 --- a/pkg/system/bin.go +++ b/pkg/system/bin.go @@ -2,7 +2,7 @@ package system import "os" -const BinEnvVar = "ACORN_BIN" +const BinEnvVar = "OBOT_BIN" func SetBinToSelf() { if err := os.Setenv(BinEnvVar, Bin()); err != nil { diff --git a/pkg/system/tools.go b/pkg/system/tools.go index d5053bf1..8c13ba61 100644 --- a/pkg/system/tools.go +++ b/pkg/system/tools.go @@ -8,7 +8,7 @@ const ( KnowledgeRetrievalTool = "knowledge-retrieval" WebsiteCleanTool = "website-cleaner" ResultFormatterTool = "result-formatter" - ModelProviderTool = "acorn-model-provider" + ModelProviderTool = "obot-model-provider" WorkflowTool = "workflow" DefaultNamespace = "default" diff --git a/pkg/version/version.go b/pkg/version/version.go index 40bc6522..6e7e5768 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -1,7 +1,7 @@ package version import ( - "github.com/acorn-io/nah/pkg/version" + "github.com/obot-platform/nah/pkg/version" ) var ( diff --git a/pkg/webhook/webhook.go b/pkg/webhook/webhook.go index 0f9dffcc..a40b7ab9 100644 --- a/pkg/webhook/webhook.go +++ b/pkg/webhook/webhook.go @@ -4,8 +4,8 @@ import ( "net/url" "time" - "github.com/acorn-io/nah/pkg/ratelimit" - "github.com/acorn-io/nah/pkg/restconfig" + "github.com/obot-platform/nah/pkg/ratelimit" + "github.com/obot-platform/nah/pkg/restconfig" authenticationv1 "k8s.io/api/authentication/v1" "k8s.io/apimachinery/pkg/runtime" "k8s.io/apiserver/pkg/authentication/authenticator" diff --git a/run.sh b/run.sh index dfea81f2..d10c0476 100644 --- a/run.sh +++ b/run.sh @@ -18,25 +18,25 @@ mkdir -p /run/sshd /usr/sbin/sshd -D & mkdir -p /data/cache # This is YAML -export ACORN_SERVER_VERSIONS="$(cat < requirements.txt +find obot-tools -name requirements.txt -exec cat {} \; -exec echo \; | sort -u > requirements.txt uv pip install -r requirements.txt diff --git a/tools/vendor.go b/tools/vendor.go index 6f7e10ce..c77310a6 100644 --- a/tools/vendor.go +++ b/tools/vendor.go @@ -2,7 +2,7 @@ package tools import ( // Needed for go generate - _ "github.com/acorn-io/nah/pkg/deepcopy" + _ "github.com/obot-platform/nah/pkg/deepcopy" _ "k8s.io/gengo/v2" _ "k8s.io/kube-openapi/cmd/openapi-gen/args" ) diff --git a/ui/admin/app/components/model-providers/ModelProviderForm.tsx b/ui/admin/app/components/model-providers/ModelProviderForm.tsx index 4c460254..482d8bc9 100644 --- a/ui/admin/app/components/model-providers/ModelProviderForm.tsx +++ b/ui/admin/app/components/model-providers/ModelProviderForm.tsx @@ -55,11 +55,11 @@ export type ModelProviderFormValues = z.infer; const translateUserFriendlyLabel = (label: string) => { const fieldsToStrip = [ - "ACORN_OPENAI_MODEL_PROVIDER", - "ACORN_AZURE_OPENAI_MODEL_PROVIDER", - "ACORN_ANTHROPIC_MODEL_PROVIDER", - "ACORN_OLLAMA_MODEL_PROVIDER", - "ACORN_VOYAGE_MODEL_PROVIDER", + "OBOT_OPENAI_MODEL_PROVIDER", + "OBOT_AZURE_OPENAI_MODEL_PROVIDER", + "OBOT_ANTHROPIC_MODEL_PROVIDER", + "OBOT_OLLAMA_MODEL_PROVIDER", + "OBOT_VOYAGE_MODEL_PROVIDER", ]; return fieldsToStrip diff --git a/ui/admin/app/components/model-providers/constants.ts b/ui/admin/app/components/model-providers/constants.ts index 894fa0a1..54845bb1 100644 --- a/ui/admin/app/components/model-providers/constants.ts +++ b/ui/admin/app/components/model-providers/constants.ts @@ -52,22 +52,22 @@ export const ModelProviderRequiredTooltips: { export const ModelProviderSensitiveFields: Record = { // OpenAI - ACORN_OPENAI_MODEL_PROVIDER_API_KEY: true, + OBOT_OPENAI_MODEL_PROVIDER_API_KEY: true, // Azure OpenAI - ACORN_AZURE_OPENAI_MODEL_PROVIDER_ENDPOINT: false, - ACORN_AZURE_OPENAI_MODEL_PROVIDER_CLIENT_ID: false, - ACORN_AZURE_OPENAI_MODEL_PROVIDER_CLIENT_SECRET: true, - ACORN_AZURE_OPENAI_MODEL_PROVIDER_TENANT_ID: false, - ACORN_AZURE_OPENAI_MODEL_PROVIDER_SUBSCRIPTION_ID: false, - ACORN_AZURE_OPENAI_MODEL_PROVIDER_RESOURCE_GROUP: false, + OBOT_AZURE_OPENAI_MODEL_PROVIDER_ENDPOINT: false, + OBOT_AZURE_OPENAI_MODEL_PROVIDER_CLIENT_ID: false, + OBOT_AZURE_OPENAI_MODEL_PROVIDER_CLIENT_SECRET: true, + OBOT_AZURE_OPENAI_MODEL_PROVIDER_TENANT_ID: false, + OBOT_AZURE_OPENAI_MODEL_PROVIDER_SUBSCRIPTION_ID: false, + OBOT_AZURE_OPENAI_MODEL_PROVIDER_RESOURCE_GROUP: false, // Anthropic - ACORN_ANTHROPIC_MODEL_PROVIDER_API_KEY: true, + OBOT_ANTHROPIC_MODEL_PROVIDER_API_KEY: true, // Voyage - ACORN_VOYAGE_MODEL_PROVIDER_API_KEY: true, + OBOT_VOYAGE_MODEL_PROVIDER_API_KEY: true, // Ollama - ACORN_OLLAMA_MODEL_PROVIDER_HOST: true, + OBOT_OLLAMA_MODEL_PROVIDER_HOST: true, }; diff --git a/ui/user/src/routes/+page.svelte b/ui/user/src/routes/+page.svelte index c4d4ef01..428a1c29 100644 --- a/ui/user/src/routes/+page.svelte +++ b/ui/user/src/routes/+page.svelte @@ -43,7 +43,7 @@ - + {#if $darkMode} GitHub {:else}