├── .cursor └── rules │ └── gpt.mdc ├── .dockerignore ├── .github └── workflows │ ├── build-providers.yaml │ ├── build-tools.yaml │ ├── dispatch.yaml │ └── test.yaml ├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── anthropic-model-provider-go ├── go.mod ├── go.sum ├── main.go ├── proxy │ ├── models.go │ └── proxy.go └── tool.gpt ├── anthropic-model-provider ├── anthropic_common │ ├── __init__.py │ ├── api.py │ └── helpers.py ├── main.py ├── requirements.txt ├── setup.py ├── tool.gpt └── validate.py ├── auth-providers-common ├── go.mod ├── go.sum ├── pkg │ ├── env │ │ └── env.go │ ├── icon │ │ └── icon.go │ └── state │ │ └── state.go └── templates │ └── error.html ├── charts └── oauth-mcp-server │ ├── Chart.yaml │ ├── templates │ ├── _helpers.tpl │ ├── deployment.yaml │ ├── ingress.yaml │ ├── mcpServer-secret.yaml │ ├── proxy-secret.yaml │ ├── service.yaml │ └── serviceaccount.yaml │ └── values.yaml ├── credential-stores ├── .gitignore ├── LICENSE ├── README.md ├── go.mod ├── go.sum ├── pkg │ └── common │ │ ├── db.go │ │ ├── db_test.go │ │ └── encryption.go ├── postgres │ ├── main.go │ └── tool.gpt └── sqlite │ ├── main.go │ └── tool.gpt ├── deepseek-model-provider ├── go.mod ├── go.sum ├── main.go └── tool.gpt ├── docs └── auth-providers.md ├── existing-credential └── tool.gpt ├── file-summarizer ├── main.py ├── requirements.txt ├── tool.gpt └── tools │ ├── __init__.py │ ├── gptscript_workspace.py │ ├── helper.py │ ├── load_text.py │ ├── reader.py │ └── summarizer.py ├── generic-credential ├── go.mod ├── go.sum ├── main.go └── tool.gpt ├── generic-openai-model-provider ├── go.mod ├── go.sum ├── main.go └── tool.gpt ├── github-auth-provider ├── Makefile ├── go.mod ├── go.sum ├── main.go ├── pkg │ └── profile │ │ ├── profile.go │ │ └── profile_test.go └── tool.gpt ├── google-auth-provider ├── go.mod ├── go.sum ├── main.go ├── pkg │ └── profile │ │ ├── profile.go │ │ └── profile_test.go └── tool.gpt ├── groq-model-provider ├── go.mod ├── go.sum ├── main.go └── tool.gpt ├── images ├── .eslintignore ├── .eslintrc.cjs ├── .gitignore ├── package-lock.json ├── package.json ├── src │ ├── analyze.ts │ ├── generate.ts │ └── tools.ts ├── tool.gpt └── tsconfig.json ├── index.yaml ├── knowledge ├── .dockerignore ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── compose.yaml ├── delete-file.gpt ├── delete.gpt ├── examples │ ├── .knowignore │ ├── advanced_config.yaml │ ├── bm25-postprocessor.yaml │ ├── client.gpt │ ├── configfiles │ │ └── embedding_provider.yaml │ ├── hybrid-retriever.yaml │ ├── knowledge.yaml │ ├── no-filenames.yaml │ ├── ocr.yaml │ ├── querymodifier_with_model.yaml │ ├── quickstart-chat.gpt │ ├── quickstart.gpt │ ├── rerank.yaml │ ├── routing_retriever.yaml │ ├── structured-ingestion │ │ └── example.json │ └── subquery_retriever.yaml ├── file-loader.gpt ├── gateway │ └── tool.gpt ├── go.mod ├── go.sum ├── ingest.gpt ├── install.sh ├── load.gpt ├── main.go ├── pkg │ ├── client │ │ ├── client.go │ │ ├── common.go │ │ ├── ignore.go │ │ ├── metadata.go │ │ └── standalone.go │ ├── cmd │ │ ├── askdir.go │ │ ├── client.go │ │ ├── create_dataset.go │ │ ├── delete_dataset.go │ │ ├── delete_file.go │ │ ├── edit_dataset.go │ │ ├── export.go │ │ ├── get_dataset.go │ │ ├── get_file.go │ │ ├── import.go │ │ ├── ingest.go │ │ ├── list_datasets.go │ │ ├── load.go │ │ ├── retrieve.go │ │ └── root.go │ ├── config │ │ ├── config.go │ │ ├── config_test.go │ │ └── embedding_models.go │ ├── datastore │ │ ├── dataset.go │ │ ├── datastore.go │ │ ├── deduplication.go │ │ ├── defaults │ │ │ └── defaults.go │ │ ├── document.go │ │ ├── documentloader │ │ │ ├── adapter.go │ │ │ ├── converter │ │ │ │ ├── converter.go │ │ │ │ └── soffice.go │ │ │ ├── defaults.go │ │ │ ├── documentloaders.go │ │ │ ├── documentloaders_test.go │ │ │ ├── mupdf.go │ │ │ ├── ocr │ │ │ │ └── openai │ │ │ │ │ └── openai.go │ │ │ ├── pdf │ │ │ │ ├── defaults │ │ │ │ │ └── defaults.go │ │ │ │ ├── gopdf │ │ │ │ │ └── pdf.go │ │ │ │ └── mupdf │ │ │ │ │ └── pdf.go │ │ │ ├── remote │ │ │ │ ├── github.go │ │ │ │ └── remote.go │ │ │ ├── smartpdf │ │ │ │ └── smartpdf.go │ │ │ └── structured │ │ │ │ └── structured.go │ │ ├── embeddings │ │ │ ├── embeddings.go │ │ │ ├── embeddings_test.go │ │ │ ├── load │ │ │ │ └── load.go │ │ │ ├── openai │ │ │ │ └── openai.go │ │ │ ├── test_assets │ │ │ │ ├── openai_env │ │ │ │ ├── testcfg.yaml │ │ │ │ └── vertex_env │ │ │ └── types │ │ │ │ └── provider.go │ │ ├── files.go │ │ ├── filetypes │ │ │ └── filetypes.go │ │ ├── ingest.go │ │ ├── ingest_test.go │ │ ├── lib │ │ │ ├── bm25 │ │ │ │ └── bm25.go │ │ │ └── scores │ │ │ │ └── scores.go │ │ ├── postprocessors │ │ │ ├── bm25.go │ │ │ ├── cohereRerank.go │ │ │ ├── content.go │ │ │ ├── contentSubstring.go │ │ │ ├── postprocessors.go │ │ │ ├── reduce.go │ │ │ └── similarity.go │ │ ├── querymodifiers │ │ │ ├── enhance.go │ │ │ ├── generic.go │ │ │ ├── querymodifiers.go │ │ │ └── spellcheck.go │ │ ├── retrieve.go │ │ ├── retrievers │ │ │ ├── bm25.go │ │ │ ├── keyword.go │ │ │ ├── merging.go │ │ │ ├── retrievers.go │ │ │ ├── routing.go │ │ │ └── subquery.go │ │ ├── store │ │ │ └── store.go │ │ ├── testdata │ │ │ └── pdf │ │ │ │ ├── 1000-Ways-to-Make-1000-Dollars.pdf │ │ │ │ └── 2309.08632.pdf │ │ ├── textsplitter │ │ │ ├── adapter.go │ │ │ ├── defaults.go │ │ │ ├── textsplitter.go │ │ │ └── textsplitter_test.go │ │ ├── transformers │ │ │ ├── defaults.go │ │ │ ├── generic.go │ │ │ ├── keywords.go │ │ │ ├── markdown.go │ │ │ ├── metadata.go │ │ │ └── transformers.go │ │ └── types │ │ │ ├── adapter.go │ │ │ └── types.go │ ├── env │ │ └── env.go │ ├── flows │ │ ├── config │ │ │ ├── blueprints.go │ │ │ ├── blueprints │ │ │ │ ├── context.yaml │ │ │ │ ├── default.yaml │ │ │ │ └── obot.yaml │ │ │ ├── config.go │ │ │ ├── config_test.go │ │ │ └── testdata │ │ │ │ ├── invalid.txt │ │ │ │ ├── invalid_doubledefault.yaml │ │ │ │ ├── valid.json │ │ │ │ └── valid.yaml │ │ └── flows.go │ ├── index │ │ ├── db.go │ │ ├── index.go │ │ ├── postgres │ │ │ └── postgres.go │ │ ├── sqlite │ │ │ └── sqlite.go │ │ └── types │ │ │ ├── errors.go │ │ │ ├── metadata.go │ │ │ ├── models.go │ │ │ └── types.go │ ├── llm │ │ └── llm.go │ ├── log │ │ └── log.go │ ├── output │ │ ├── redact.go │ │ └── redact_test.go │ └── vectorstore │ │ ├── errors │ │ └── errors.go │ │ ├── helper │ │ ├── sql.go │ │ └── sql_test.go │ │ ├── pgvector │ │ └── pgvector.go │ │ ├── sqlite-vec │ │ ├── helper.go │ │ └── sqlite-vec.go │ │ ├── types │ │ └── types.go │ │ └── vectorstores.go ├── scripts │ ├── cross-build.sh │ └── install-tools.sh ├── tool.gpt └── version │ └── version.go ├── loop-data ├── go.mod ├── go.sum ├── main.go └── tool.gpt ├── memory ├── Makefile ├── go.mod ├── go.sum ├── main.go └── tool.gpt ├── oauth2 ├── .gitignore ├── Makefile ├── go.mod ├── go.sum ├── main.go └── tool.gpt ├── obot-model-provider ├── go.mod ├── go.sum ├── main.go ├── server │ └── server.go └── tool.gpt ├── ollama-model-provider ├── go.mod ├── go.sum ├── main.go └── tool.gpt ├── openai-model-provider ├── api │ └── types.go ├── go.mod ├── go.sum ├── main.go ├── openaiproxy │ └── proxy.go ├── proxy │ ├── proxy.go │ ├── rewrite.go │ └── validate.go └── tool.gpt ├── placeholder-credential ├── main.py ├── requirements.txt └── tool.gpt ├── requirements.txt ├── result-formatter ├── go.mod ├── go.sum ├── main.go └── tool.gpt ├── scripts ├── build.sh ├── package-providers.sh └── package-tools.sh ├── task-invoke ├── Makefile ├── go.mod ├── go.sum ├── main.go └── tool.gpt ├── tasks-workflow └── tool.gpt ├── tasks ├── go.mod ├── go.sum ├── main.go └── tool.gpt ├── tests ├── go.mod ├── go.sum └── tool_test.go ├── threads └── tool.gpt ├── time └── tool.gpt ├── tool.gpt ├── vllm-model-provider ├── go.mod ├── go.sum ├── main.go ├── server │ └── server.go └── tool.gpt ├── voyage-model-provider ├── main.py ├── requirements.txt ├── tool.gpt └── validate.py ├── workflow ├── go.mod ├── go.sum ├── main.go └── tool.gpt ├── workspace-files ├── go.mod ├── go.sum ├── main.go └── tool.gpt └── xai-model-provider ├── go.mod ├── go.sum ├── main.go └── tool.gpt /.cursor/rules/gpt.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/.cursor/rules/gpt.mdc -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/build-providers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/.github/workflows/build-providers.yaml -------------------------------------------------------------------------------- /.github/workflows/build-tools.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/.github/workflows/build-tools.yaml -------------------------------------------------------------------------------- /.github/workflows/dispatch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/.github/workflows/dispatch.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/README.md -------------------------------------------------------------------------------- /anthropic-model-provider-go/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/anthropic-model-provider-go/go.mod -------------------------------------------------------------------------------- /anthropic-model-provider-go/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/anthropic-model-provider-go/go.sum -------------------------------------------------------------------------------- /anthropic-model-provider-go/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/anthropic-model-provider-go/main.go -------------------------------------------------------------------------------- /anthropic-model-provider-go/proxy/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/anthropic-model-provider-go/proxy/models.go -------------------------------------------------------------------------------- /anthropic-model-provider-go/proxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/anthropic-model-provider-go/proxy/proxy.go -------------------------------------------------------------------------------- /anthropic-model-provider-go/tool.gpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/anthropic-model-provider-go/tool.gpt -------------------------------------------------------------------------------- /anthropic-model-provider/anthropic_common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/anthropic-model-provider/anthropic_common/__init__.py -------------------------------------------------------------------------------- /anthropic-model-provider/anthropic_common/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/anthropic-model-provider/anthropic_common/api.py -------------------------------------------------------------------------------- /anthropic-model-provider/anthropic_common/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/anthropic-model-provider/anthropic_common/helpers.py -------------------------------------------------------------------------------- /anthropic-model-provider/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/anthropic-model-provider/main.py -------------------------------------------------------------------------------- /anthropic-model-provider/requirements.txt: -------------------------------------------------------------------------------- 1 | -r ../requirements.txt -------------------------------------------------------------------------------- /anthropic-model-provider/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/anthropic-model-provider/setup.py -------------------------------------------------------------------------------- /anthropic-model-provider/tool.gpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/anthropic-model-provider/tool.gpt -------------------------------------------------------------------------------- /anthropic-model-provider/validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/anthropic-model-provider/validate.py -------------------------------------------------------------------------------- /auth-providers-common/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/auth-providers-common/go.mod -------------------------------------------------------------------------------- /auth-providers-common/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/auth-providers-common/go.sum -------------------------------------------------------------------------------- /auth-providers-common/pkg/env/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/auth-providers-common/pkg/env/env.go -------------------------------------------------------------------------------- /auth-providers-common/pkg/icon/icon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/auth-providers-common/pkg/icon/icon.go -------------------------------------------------------------------------------- /auth-providers-common/pkg/state/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/auth-providers-common/pkg/state/state.go -------------------------------------------------------------------------------- /auth-providers-common/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/auth-providers-common/templates/error.html -------------------------------------------------------------------------------- /charts/oauth-mcp-server/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/charts/oauth-mcp-server/Chart.yaml -------------------------------------------------------------------------------- /charts/oauth-mcp-server/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/charts/oauth-mcp-server/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/oauth-mcp-server/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/charts/oauth-mcp-server/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/oauth-mcp-server/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/charts/oauth-mcp-server/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/oauth-mcp-server/templates/mcpServer-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/charts/oauth-mcp-server/templates/mcpServer-secret.yaml -------------------------------------------------------------------------------- /charts/oauth-mcp-server/templates/proxy-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/charts/oauth-mcp-server/templates/proxy-secret.yaml -------------------------------------------------------------------------------- /charts/oauth-mcp-server/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/charts/oauth-mcp-server/templates/service.yaml -------------------------------------------------------------------------------- /charts/oauth-mcp-server/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/charts/oauth-mcp-server/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/oauth-mcp-server/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/charts/oauth-mcp-server/values.yaml -------------------------------------------------------------------------------- /credential-stores/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/credential-stores/.gitignore -------------------------------------------------------------------------------- /credential-stores/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/credential-stores/LICENSE -------------------------------------------------------------------------------- /credential-stores/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/credential-stores/README.md -------------------------------------------------------------------------------- /credential-stores/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/credential-stores/go.mod -------------------------------------------------------------------------------- /credential-stores/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/credential-stores/go.sum -------------------------------------------------------------------------------- /credential-stores/pkg/common/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/credential-stores/pkg/common/db.go -------------------------------------------------------------------------------- /credential-stores/pkg/common/db_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/credential-stores/pkg/common/db_test.go -------------------------------------------------------------------------------- /credential-stores/pkg/common/encryption.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/credential-stores/pkg/common/encryption.go -------------------------------------------------------------------------------- /credential-stores/postgres/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/credential-stores/postgres/main.go -------------------------------------------------------------------------------- /credential-stores/postgres/tool.gpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/credential-stores/postgres/tool.gpt -------------------------------------------------------------------------------- /credential-stores/sqlite/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/credential-stores/sqlite/main.go -------------------------------------------------------------------------------- /credential-stores/sqlite/tool.gpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/credential-stores/sqlite/tool.gpt -------------------------------------------------------------------------------- /deepseek-model-provider/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/deepseek-model-provider/go.mod -------------------------------------------------------------------------------- /deepseek-model-provider/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/deepseek-model-provider/go.sum -------------------------------------------------------------------------------- /deepseek-model-provider/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/deepseek-model-provider/main.go -------------------------------------------------------------------------------- /deepseek-model-provider/tool.gpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/deepseek-model-provider/tool.gpt -------------------------------------------------------------------------------- /docs/auth-providers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/docs/auth-providers.md -------------------------------------------------------------------------------- /existing-credential/tool.gpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/existing-credential/tool.gpt -------------------------------------------------------------------------------- /file-summarizer/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/file-summarizer/main.py -------------------------------------------------------------------------------- /file-summarizer/requirements.txt: -------------------------------------------------------------------------------- 1 | -r ../requirements.txt -------------------------------------------------------------------------------- /file-summarizer/tool.gpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/file-summarizer/tool.gpt -------------------------------------------------------------------------------- /file-summarizer/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /file-summarizer/tools/gptscript_workspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/file-summarizer/tools/gptscript_workspace.py -------------------------------------------------------------------------------- /file-summarizer/tools/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/file-summarizer/tools/helper.py -------------------------------------------------------------------------------- /file-summarizer/tools/load_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/file-summarizer/tools/load_text.py -------------------------------------------------------------------------------- /file-summarizer/tools/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/file-summarizer/tools/reader.py -------------------------------------------------------------------------------- /file-summarizer/tools/summarizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/file-summarizer/tools/summarizer.py -------------------------------------------------------------------------------- /generic-credential/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/generic-credential/go.mod -------------------------------------------------------------------------------- /generic-credential/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/generic-credential/go.sum -------------------------------------------------------------------------------- /generic-credential/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/generic-credential/main.go -------------------------------------------------------------------------------- /generic-credential/tool.gpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/generic-credential/tool.gpt -------------------------------------------------------------------------------- /generic-openai-model-provider/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/generic-openai-model-provider/go.mod -------------------------------------------------------------------------------- /generic-openai-model-provider/go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generic-openai-model-provider/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/generic-openai-model-provider/main.go -------------------------------------------------------------------------------- /generic-openai-model-provider/tool.gpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/generic-openai-model-provider/tool.gpt -------------------------------------------------------------------------------- /github-auth-provider/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/github-auth-provider/Makefile -------------------------------------------------------------------------------- /github-auth-provider/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/github-auth-provider/go.mod -------------------------------------------------------------------------------- /github-auth-provider/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/github-auth-provider/go.sum -------------------------------------------------------------------------------- /github-auth-provider/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/github-auth-provider/main.go -------------------------------------------------------------------------------- /github-auth-provider/pkg/profile/profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/github-auth-provider/pkg/profile/profile.go -------------------------------------------------------------------------------- /github-auth-provider/pkg/profile/profile_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/github-auth-provider/pkg/profile/profile_test.go -------------------------------------------------------------------------------- /github-auth-provider/tool.gpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/github-auth-provider/tool.gpt -------------------------------------------------------------------------------- /google-auth-provider/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/google-auth-provider/go.mod -------------------------------------------------------------------------------- /google-auth-provider/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/google-auth-provider/go.sum -------------------------------------------------------------------------------- /google-auth-provider/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/google-auth-provider/main.go -------------------------------------------------------------------------------- /google-auth-provider/pkg/profile/profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/google-auth-provider/pkg/profile/profile.go -------------------------------------------------------------------------------- /google-auth-provider/pkg/profile/profile_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/google-auth-provider/pkg/profile/profile_test.go -------------------------------------------------------------------------------- /google-auth-provider/tool.gpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/google-auth-provider/tool.gpt -------------------------------------------------------------------------------- /groq-model-provider/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/groq-model-provider/go.mod -------------------------------------------------------------------------------- /groq-model-provider/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/groq-model-provider/go.sum -------------------------------------------------------------------------------- /groq-model-provider/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/groq-model-provider/main.go -------------------------------------------------------------------------------- /groq-model-provider/tool.gpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/groq-model-provider/tool.gpt -------------------------------------------------------------------------------- /images/.eslintignore: -------------------------------------------------------------------------------- 1 | .eslintrc.cjs 2 | -------------------------------------------------------------------------------- /images/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/images/.eslintrc.cjs -------------------------------------------------------------------------------- /images/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/images/.gitignore -------------------------------------------------------------------------------- /images/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/images/package-lock.json -------------------------------------------------------------------------------- /images/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/images/package.json -------------------------------------------------------------------------------- /images/src/analyze.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/images/src/analyze.ts -------------------------------------------------------------------------------- /images/src/generate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/images/src/generate.ts -------------------------------------------------------------------------------- /images/src/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/images/src/tools.ts -------------------------------------------------------------------------------- /images/tool.gpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/images/tool.gpt -------------------------------------------------------------------------------- /images/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/images/tsconfig.json -------------------------------------------------------------------------------- /index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/index.yaml -------------------------------------------------------------------------------- /knowledge/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/.dockerignore -------------------------------------------------------------------------------- /knowledge/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/.gitignore -------------------------------------------------------------------------------- /knowledge/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/LICENSE -------------------------------------------------------------------------------- /knowledge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/Makefile -------------------------------------------------------------------------------- /knowledge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/README.md -------------------------------------------------------------------------------- /knowledge/compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/compose.yaml -------------------------------------------------------------------------------- /knowledge/delete-file.gpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/delete-file.gpt -------------------------------------------------------------------------------- /knowledge/delete.gpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/delete.gpt -------------------------------------------------------------------------------- /knowledge/examples/.knowignore: -------------------------------------------------------------------------------- 1 | * 2 | !**/*.yaml -------------------------------------------------------------------------------- /knowledge/examples/advanced_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/examples/advanced_config.yaml -------------------------------------------------------------------------------- /knowledge/examples/bm25-postprocessor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/examples/bm25-postprocessor.yaml -------------------------------------------------------------------------------- /knowledge/examples/client.gpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/examples/client.gpt -------------------------------------------------------------------------------- /knowledge/examples/configfiles/embedding_provider.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/examples/configfiles/embedding_provider.yaml -------------------------------------------------------------------------------- /knowledge/examples/hybrid-retriever.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/examples/hybrid-retriever.yaml -------------------------------------------------------------------------------- /knowledge/examples/knowledge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/examples/knowledge.yaml -------------------------------------------------------------------------------- /knowledge/examples/no-filenames.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/examples/no-filenames.yaml -------------------------------------------------------------------------------- /knowledge/examples/ocr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/examples/ocr.yaml -------------------------------------------------------------------------------- /knowledge/examples/querymodifier_with_model.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/examples/querymodifier_with_model.yaml -------------------------------------------------------------------------------- /knowledge/examples/quickstart-chat.gpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/examples/quickstart-chat.gpt -------------------------------------------------------------------------------- /knowledge/examples/quickstart.gpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/examples/quickstart.gpt -------------------------------------------------------------------------------- /knowledge/examples/rerank.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/examples/rerank.yaml -------------------------------------------------------------------------------- /knowledge/examples/routing_retriever.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/examples/routing_retriever.yaml -------------------------------------------------------------------------------- /knowledge/examples/structured-ingestion/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/examples/structured-ingestion/example.json -------------------------------------------------------------------------------- /knowledge/examples/subquery_retriever.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/examples/subquery_retriever.yaml -------------------------------------------------------------------------------- /knowledge/file-loader.gpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/file-loader.gpt -------------------------------------------------------------------------------- /knowledge/gateway/tool.gpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/gateway/tool.gpt -------------------------------------------------------------------------------- /knowledge/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/go.mod -------------------------------------------------------------------------------- /knowledge/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/go.sum -------------------------------------------------------------------------------- /knowledge/ingest.gpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/ingest.gpt -------------------------------------------------------------------------------- /knowledge/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/install.sh -------------------------------------------------------------------------------- /knowledge/load.gpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/load.gpt -------------------------------------------------------------------------------- /knowledge/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/main.go -------------------------------------------------------------------------------- /knowledge/pkg/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/client/client.go -------------------------------------------------------------------------------- /knowledge/pkg/client/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/client/common.go -------------------------------------------------------------------------------- /knowledge/pkg/client/ignore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/client/ignore.go -------------------------------------------------------------------------------- /knowledge/pkg/client/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/client/metadata.go -------------------------------------------------------------------------------- /knowledge/pkg/client/standalone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/client/standalone.go -------------------------------------------------------------------------------- /knowledge/pkg/cmd/askdir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/cmd/askdir.go -------------------------------------------------------------------------------- /knowledge/pkg/cmd/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/cmd/client.go -------------------------------------------------------------------------------- /knowledge/pkg/cmd/create_dataset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/cmd/create_dataset.go -------------------------------------------------------------------------------- /knowledge/pkg/cmd/delete_dataset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/cmd/delete_dataset.go -------------------------------------------------------------------------------- /knowledge/pkg/cmd/delete_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/cmd/delete_file.go -------------------------------------------------------------------------------- /knowledge/pkg/cmd/edit_dataset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/cmd/edit_dataset.go -------------------------------------------------------------------------------- /knowledge/pkg/cmd/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/cmd/export.go -------------------------------------------------------------------------------- /knowledge/pkg/cmd/get_dataset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/cmd/get_dataset.go -------------------------------------------------------------------------------- /knowledge/pkg/cmd/get_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/cmd/get_file.go -------------------------------------------------------------------------------- /knowledge/pkg/cmd/import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/cmd/import.go -------------------------------------------------------------------------------- /knowledge/pkg/cmd/ingest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/cmd/ingest.go -------------------------------------------------------------------------------- /knowledge/pkg/cmd/list_datasets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/cmd/list_datasets.go -------------------------------------------------------------------------------- /knowledge/pkg/cmd/load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/cmd/load.go -------------------------------------------------------------------------------- /knowledge/pkg/cmd/retrieve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/cmd/retrieve.go -------------------------------------------------------------------------------- /knowledge/pkg/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/cmd/root.go -------------------------------------------------------------------------------- /knowledge/pkg/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/config/config.go -------------------------------------------------------------------------------- /knowledge/pkg/config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/config/config_test.go -------------------------------------------------------------------------------- /knowledge/pkg/config/embedding_models.go: -------------------------------------------------------------------------------- 1 | package config 2 | -------------------------------------------------------------------------------- /knowledge/pkg/datastore/dataset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/dataset.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/datastore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/datastore.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/deduplication.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/deduplication.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/defaults/defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/defaults/defaults.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/document.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/document.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/documentloader/adapter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/documentloader/adapter.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/documentloader/converter/converter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/documentloader/converter/converter.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/documentloader/converter/soffice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/documentloader/converter/soffice.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/documentloader/defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/documentloader/defaults.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/documentloader/documentloaders.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/documentloader/documentloaders.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/documentloader/documentloaders_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/documentloader/documentloaders_test.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/documentloader/mupdf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/documentloader/mupdf.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/documentloader/ocr/openai/openai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/documentloader/ocr/openai/openai.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/documentloader/pdf/defaults/defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/documentloader/pdf/defaults/defaults.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/documentloader/pdf/gopdf/pdf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/documentloader/pdf/gopdf/pdf.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/documentloader/pdf/mupdf/pdf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/documentloader/pdf/mupdf/pdf.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/documentloader/remote/github.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/documentloader/remote/github.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/documentloader/remote/remote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/documentloader/remote/remote.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/documentloader/smartpdf/smartpdf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/documentloader/smartpdf/smartpdf.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/documentloader/structured/structured.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/documentloader/structured/structured.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/embeddings/embeddings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/embeddings/embeddings.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/embeddings/embeddings_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/embeddings/embeddings_test.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/embeddings/load/load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/embeddings/load/load.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/embeddings/openai/openai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/embeddings/openai/openai.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/embeddings/test_assets/openai_env: -------------------------------------------------------------------------------- 1 | export OPENAI_BASE_URL=https://foo.bar.spam -------------------------------------------------------------------------------- /knowledge/pkg/datastore/embeddings/test_assets/testcfg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/embeddings/test_assets/testcfg.yaml -------------------------------------------------------------------------------- /knowledge/pkg/datastore/embeddings/test_assets/vertex_env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/embeddings/test_assets/vertex_env -------------------------------------------------------------------------------- /knowledge/pkg/datastore/embeddings/types/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/embeddings/types/provider.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/files.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/files.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/filetypes/filetypes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/filetypes/filetypes.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/ingest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/ingest.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/ingest_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/ingest_test.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/lib/bm25/bm25.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/lib/bm25/bm25.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/lib/scores/scores.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/lib/scores/scores.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/postprocessors/bm25.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/postprocessors/bm25.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/postprocessors/cohereRerank.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/postprocessors/cohereRerank.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/postprocessors/content.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/postprocessors/content.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/postprocessors/contentSubstring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/postprocessors/contentSubstring.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/postprocessors/postprocessors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/postprocessors/postprocessors.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/postprocessors/reduce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/postprocessors/reduce.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/postprocessors/similarity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/postprocessors/similarity.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/querymodifiers/enhance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/querymodifiers/enhance.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/querymodifiers/generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/querymodifiers/generic.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/querymodifiers/querymodifiers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/querymodifiers/querymodifiers.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/querymodifiers/spellcheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/querymodifiers/spellcheck.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/retrieve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/retrieve.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/retrievers/bm25.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/retrievers/bm25.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/retrievers/keyword.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/retrievers/keyword.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/retrievers/merging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/retrievers/merging.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/retrievers/retrievers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/retrievers/retrievers.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/retrievers/routing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/retrievers/routing.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/retrievers/subquery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/retrievers/subquery.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/store/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/store/store.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/testdata/pdf/1000-Ways-to-Make-1000-Dollars.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/testdata/pdf/1000-Ways-to-Make-1000-Dollars.pdf -------------------------------------------------------------------------------- /knowledge/pkg/datastore/testdata/pdf/2309.08632.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/testdata/pdf/2309.08632.pdf -------------------------------------------------------------------------------- /knowledge/pkg/datastore/textsplitter/adapter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/textsplitter/adapter.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/textsplitter/defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/textsplitter/defaults.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/textsplitter/textsplitter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/textsplitter/textsplitter.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/textsplitter/textsplitter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/textsplitter/textsplitter_test.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/transformers/defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/transformers/defaults.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/transformers/generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/transformers/generic.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/transformers/keywords.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/transformers/keywords.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/transformers/markdown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/transformers/markdown.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/transformers/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/transformers/metadata.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/transformers/transformers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/transformers/transformers.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/types/adapter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/types/adapter.go -------------------------------------------------------------------------------- /knowledge/pkg/datastore/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/datastore/types/types.go -------------------------------------------------------------------------------- /knowledge/pkg/env/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/env/env.go -------------------------------------------------------------------------------- /knowledge/pkg/flows/config/blueprints.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/flows/config/blueprints.go -------------------------------------------------------------------------------- /knowledge/pkg/flows/config/blueprints/context.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/flows/config/blueprints/context.yaml -------------------------------------------------------------------------------- /knowledge/pkg/flows/config/blueprints/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/flows/config/blueprints/default.yaml -------------------------------------------------------------------------------- /knowledge/pkg/flows/config/blueprints/obot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/flows/config/blueprints/obot.yaml -------------------------------------------------------------------------------- /knowledge/pkg/flows/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/flows/config/config.go -------------------------------------------------------------------------------- /knowledge/pkg/flows/config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/flows/config/config_test.go -------------------------------------------------------------------------------- /knowledge/pkg/flows/config/testdata/invalid.txt: -------------------------------------------------------------------------------- 1 | foo: bar 2 | some-invalid-config -------------------------------------------------------------------------------- /knowledge/pkg/flows/config/testdata/invalid_doubledefault.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/flows/config/testdata/invalid_doubledefault.yaml -------------------------------------------------------------------------------- /knowledge/pkg/flows/config/testdata/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/flows/config/testdata/valid.json -------------------------------------------------------------------------------- /knowledge/pkg/flows/config/testdata/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/flows/config/testdata/valid.yaml -------------------------------------------------------------------------------- /knowledge/pkg/flows/flows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/flows/flows.go -------------------------------------------------------------------------------- /knowledge/pkg/index/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/index/db.go -------------------------------------------------------------------------------- /knowledge/pkg/index/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/index/index.go -------------------------------------------------------------------------------- /knowledge/pkg/index/postgres/postgres.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/index/postgres/postgres.go -------------------------------------------------------------------------------- /knowledge/pkg/index/sqlite/sqlite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/index/sqlite/sqlite.go -------------------------------------------------------------------------------- /knowledge/pkg/index/types/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/index/types/errors.go -------------------------------------------------------------------------------- /knowledge/pkg/index/types/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/index/types/metadata.go -------------------------------------------------------------------------------- /knowledge/pkg/index/types/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/index/types/models.go -------------------------------------------------------------------------------- /knowledge/pkg/index/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/index/types/types.go -------------------------------------------------------------------------------- /knowledge/pkg/llm/llm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/llm/llm.go -------------------------------------------------------------------------------- /knowledge/pkg/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/log/log.go -------------------------------------------------------------------------------- /knowledge/pkg/output/redact.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/output/redact.go -------------------------------------------------------------------------------- /knowledge/pkg/output/redact_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/output/redact_test.go -------------------------------------------------------------------------------- /knowledge/pkg/vectorstore/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/vectorstore/errors/errors.go -------------------------------------------------------------------------------- /knowledge/pkg/vectorstore/helper/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/vectorstore/helper/sql.go -------------------------------------------------------------------------------- /knowledge/pkg/vectorstore/helper/sql_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/vectorstore/helper/sql_test.go -------------------------------------------------------------------------------- /knowledge/pkg/vectorstore/pgvector/pgvector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/vectorstore/pgvector/pgvector.go -------------------------------------------------------------------------------- /knowledge/pkg/vectorstore/sqlite-vec/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/vectorstore/sqlite-vec/helper.go -------------------------------------------------------------------------------- /knowledge/pkg/vectorstore/sqlite-vec/sqlite-vec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/vectorstore/sqlite-vec/sqlite-vec.go -------------------------------------------------------------------------------- /knowledge/pkg/vectorstore/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/vectorstore/types/types.go -------------------------------------------------------------------------------- /knowledge/pkg/vectorstore/vectorstores.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/pkg/vectorstore/vectorstores.go -------------------------------------------------------------------------------- /knowledge/scripts/cross-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/scripts/cross-build.sh -------------------------------------------------------------------------------- /knowledge/scripts/install-tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/scripts/install-tools.sh -------------------------------------------------------------------------------- /knowledge/tool.gpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/tool.gpt -------------------------------------------------------------------------------- /knowledge/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/knowledge/version/version.go -------------------------------------------------------------------------------- /loop-data/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/loop-data/go.mod -------------------------------------------------------------------------------- /loop-data/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/loop-data/go.sum -------------------------------------------------------------------------------- /loop-data/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/loop-data/main.go -------------------------------------------------------------------------------- /loop-data/tool.gpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/loop-data/tool.gpt -------------------------------------------------------------------------------- /memory/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/memory/Makefile -------------------------------------------------------------------------------- /memory/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/memory/go.mod -------------------------------------------------------------------------------- /memory/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/memory/go.sum -------------------------------------------------------------------------------- /memory/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/memory/main.go -------------------------------------------------------------------------------- /memory/tool.gpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/memory/tool.gpt -------------------------------------------------------------------------------- /oauth2/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | bin/ 3 | -------------------------------------------------------------------------------- /oauth2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/oauth2/Makefile -------------------------------------------------------------------------------- /oauth2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/oauth2/go.mod -------------------------------------------------------------------------------- /oauth2/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/oauth2/go.sum -------------------------------------------------------------------------------- /oauth2/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/oauth2/main.go -------------------------------------------------------------------------------- /oauth2/tool.gpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/oauth2/tool.gpt -------------------------------------------------------------------------------- /obot-model-provider/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/obot-model-provider/go.mod -------------------------------------------------------------------------------- /obot-model-provider/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/obot-model-provider/go.sum -------------------------------------------------------------------------------- /obot-model-provider/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/obot-model-provider/main.go -------------------------------------------------------------------------------- /obot-model-provider/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/obot-model-provider/server/server.go -------------------------------------------------------------------------------- /obot-model-provider/tool.gpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/obot-model-provider/tool.gpt -------------------------------------------------------------------------------- /ollama-model-provider/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/ollama-model-provider/go.mod -------------------------------------------------------------------------------- /ollama-model-provider/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/ollama-model-provider/go.sum -------------------------------------------------------------------------------- /ollama-model-provider/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/ollama-model-provider/main.go -------------------------------------------------------------------------------- /ollama-model-provider/tool.gpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/ollama-model-provider/tool.gpt -------------------------------------------------------------------------------- /openai-model-provider/api/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/openai-model-provider/api/types.go -------------------------------------------------------------------------------- /openai-model-provider/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/openai-model-provider/go.mod -------------------------------------------------------------------------------- /openai-model-provider/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/openai-model-provider/go.sum -------------------------------------------------------------------------------- /openai-model-provider/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/openai-model-provider/main.go -------------------------------------------------------------------------------- /openai-model-provider/openaiproxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/openai-model-provider/openaiproxy/proxy.go -------------------------------------------------------------------------------- /openai-model-provider/proxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/openai-model-provider/proxy/proxy.go -------------------------------------------------------------------------------- /openai-model-provider/proxy/rewrite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/openai-model-provider/proxy/rewrite.go -------------------------------------------------------------------------------- /openai-model-provider/proxy/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/openai-model-provider/proxy/validate.go -------------------------------------------------------------------------------- /openai-model-provider/tool.gpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/openai-model-provider/tool.gpt -------------------------------------------------------------------------------- /placeholder-credential/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/placeholder-credential/main.py -------------------------------------------------------------------------------- /placeholder-credential/requirements.txt: -------------------------------------------------------------------------------- 1 | -r ../requirements.txt -------------------------------------------------------------------------------- /placeholder-credential/tool.gpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/placeholder-credential/tool.gpt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/requirements.txt -------------------------------------------------------------------------------- /result-formatter/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/result-formatter/go.mod -------------------------------------------------------------------------------- /result-formatter/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/result-formatter/go.sum -------------------------------------------------------------------------------- /result-formatter/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/result-formatter/main.go -------------------------------------------------------------------------------- /result-formatter/tool.gpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/result-formatter/tool.gpt -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/package-providers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/scripts/package-providers.sh -------------------------------------------------------------------------------- /scripts/package-tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/scripts/package-tools.sh -------------------------------------------------------------------------------- /task-invoke/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/task-invoke/Makefile -------------------------------------------------------------------------------- /task-invoke/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/task-invoke/go.mod -------------------------------------------------------------------------------- /task-invoke/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/task-invoke/go.sum -------------------------------------------------------------------------------- /task-invoke/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/task-invoke/main.go -------------------------------------------------------------------------------- /task-invoke/tool.gpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/task-invoke/tool.gpt -------------------------------------------------------------------------------- /tasks-workflow/tool.gpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/tasks-workflow/tool.gpt -------------------------------------------------------------------------------- /tasks/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/tasks/go.mod -------------------------------------------------------------------------------- /tasks/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/tasks/go.sum -------------------------------------------------------------------------------- /tasks/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/tasks/main.go -------------------------------------------------------------------------------- /tasks/tool.gpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/tasks/tool.gpt -------------------------------------------------------------------------------- /tests/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/tests/go.mod -------------------------------------------------------------------------------- /tests/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/tests/go.sum -------------------------------------------------------------------------------- /tests/tool_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/tests/tool_test.go -------------------------------------------------------------------------------- /threads/tool.gpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/threads/tool.gpt -------------------------------------------------------------------------------- /time/tool.gpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/time/tool.gpt -------------------------------------------------------------------------------- /tool.gpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/tool.gpt -------------------------------------------------------------------------------- /vllm-model-provider/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/vllm-model-provider/go.mod -------------------------------------------------------------------------------- /vllm-model-provider/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/vllm-model-provider/go.sum -------------------------------------------------------------------------------- /vllm-model-provider/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/vllm-model-provider/main.go -------------------------------------------------------------------------------- /vllm-model-provider/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/vllm-model-provider/server/server.go -------------------------------------------------------------------------------- /vllm-model-provider/tool.gpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/vllm-model-provider/tool.gpt -------------------------------------------------------------------------------- /voyage-model-provider/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/voyage-model-provider/main.py -------------------------------------------------------------------------------- /voyage-model-provider/requirements.txt: -------------------------------------------------------------------------------- 1 | -r ../requirements.txt -------------------------------------------------------------------------------- /voyage-model-provider/tool.gpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/voyage-model-provider/tool.gpt -------------------------------------------------------------------------------- /voyage-model-provider/validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/voyage-model-provider/validate.py -------------------------------------------------------------------------------- /workflow/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/workflow/go.mod -------------------------------------------------------------------------------- /workflow/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/workflow/go.sum -------------------------------------------------------------------------------- /workflow/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/workflow/main.go -------------------------------------------------------------------------------- /workflow/tool.gpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/workflow/tool.gpt -------------------------------------------------------------------------------- /workspace-files/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/workspace-files/go.mod -------------------------------------------------------------------------------- /workspace-files/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/workspace-files/go.sum -------------------------------------------------------------------------------- /workspace-files/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/workspace-files/main.go -------------------------------------------------------------------------------- /workspace-files/tool.gpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/workspace-files/tool.gpt -------------------------------------------------------------------------------- /xai-model-provider/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/xai-model-provider/go.mod -------------------------------------------------------------------------------- /xai-model-provider/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/xai-model-provider/go.sum -------------------------------------------------------------------------------- /xai-model-provider/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/xai-model-provider/main.go -------------------------------------------------------------------------------- /xai-model-provider/tool.gpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obot-platform/tools/HEAD/xai-model-provider/tool.gpt --------------------------------------------------------------------------------