├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md ├── pull_request_template.md ├── renovate.json └── workflows │ ├── ci-cli-build.yml │ ├── ci-cli-lint.yml │ ├── ci-go-test.yml │ ├── ci-release-info-build.yaml │ ├── ci-release-info-lint.yaml │ ├── ci-runtime-build.yml │ ├── ci-runtime-integration-tests.yml │ ├── ci-sdk-as-build.yml │ ├── ci-sdk-as-lint.yml │ ├── ci-sdk-as-test.yml │ ├── ci-sdk-go-build.yml │ ├── codeql.yml │ ├── release-cli.yaml │ ├── release-info.yaml │ ├── release-runtime.yaml │ ├── release-schema.yaml │ ├── release-sdk-as.yaml │ ├── release-sdk-go.yaml │ └── trunk.yml ├── .gitignore ├── .trunk ├── .gitignore ├── configs │ ├── .golangci.yaml │ ├── .hadolint.yaml │ ├── .markdownlint.json │ ├── .prettierrc │ ├── .shellcheckrc │ ├── .yamllint.yaml │ └── cspell.json └── trunk.yaml ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── SECURITY.md ├── cli ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── bin │ ├── modus-cli-dev.js │ └── modus.js ├── eslint.config.js ├── install.sh ├── package-lock.json ├── package.json ├── src │ ├── baseCommand.ts │ ├── commands │ │ ├── build │ │ │ └── index.ts │ │ ├── dev │ │ │ └── index.ts │ │ ├── info │ │ │ └── index.ts │ │ ├── new │ │ │ └── index.ts │ │ ├── runtime │ │ │ ├── install │ │ │ │ └── index.ts │ │ │ ├── list │ │ │ │ └── index.ts │ │ │ └── remove │ │ │ │ └── index.ts │ │ └── sdk │ │ │ ├── install │ │ │ └── index.ts │ │ │ ├── list │ │ │ └── index.ts │ │ │ └── remove │ │ │ └── index.ts │ ├── custom │ │ ├── globals.ts │ │ ├── header.ts │ │ ├── help.ts │ │ └── logo.ts │ ├── hooks │ │ └── init.ts │ ├── index.ts │ └── util │ │ ├── appinfo.ts │ │ ├── appname.ts │ │ ├── cp.ts │ │ ├── errors.ts │ │ ├── fs.ts │ │ ├── http.ts │ │ ├── hypermode.ts │ │ ├── index.ts │ │ ├── installer.ts │ │ ├── metadata.ts │ │ ├── systemVersions.ts │ │ ├── tar.ts │ │ ├── updateNotifier.ts │ │ └── versioninfo.ts └── tsconfig.json ├── go.work ├── lib ├── README.md ├── manifest │ ├── connection.go │ ├── dgraph.go │ ├── endpoints.go │ ├── go.mod │ ├── go.sum │ ├── http.go │ ├── manifest.go │ ├── model.go │ ├── modus_schema.json │ ├── mysql.go │ ├── neo4j.go │ ├── postgresql.go │ ├── test │ │ ├── manifest_test.go │ │ └── valid_modus.json │ └── utils.go ├── metadata │ ├── builder.go │ ├── extras.go │ ├── go.mod │ ├── go.sum │ ├── metadata.go │ └── reader.go └── wasmextractor │ ├── go.mod │ └── wasmextractor.go ├── runtime ├── .gitignore ├── .goreleaser.yaml ├── Makefile ├── README.md ├── actors │ ├── actorlogger.go │ ├── actorsystem.go │ ├── agents.go │ ├── cluster.go │ ├── misc.go │ ├── subscriber.go │ └── wasmagent.go ├── app │ ├── app.go │ ├── app_test.go │ ├── config.go │ ├── config_test.go │ ├── version.go │ └── version_test.go ├── buf.gen.yaml ├── buf.yaml ├── db │ ├── agentstate.go │ ├── db.go │ ├── inferencehistory.go │ ├── migrations │ │ ├── 000001_init_inference_history.down.sql │ │ ├── 000001_init_inference_history.up.sql │ │ ├── 000002_create_collections.down.sql │ │ ├── 000002_create_collections.up.sql │ │ ├── 000003_update_inference_history.down.sql │ │ ├── 000003_update_inference_history.up.sql │ │ ├── 000004_add_collection_labels.down.sql │ │ ├── 000004_add_collection_labels.up.sql │ │ ├── 000005_add_tenancy.down.sql │ │ ├── 000005_add_tenancy.up.sql │ │ ├── 000006_add_started_at_index.down.sql │ │ ├── 000006_add_started_at_index.up.sql │ │ ├── 000007_add_agent_state.down.sql │ │ └── 000007_add_agent_state.up.sql │ └── modusdb.go ├── dgraphclient │ ├── dgraph.go │ ├── dgraphclient.go │ ├── registry.go │ └── types.go ├── envfiles │ ├── envfilemonitor.go │ ├── envfiles.go │ └── events.go ├── explorer │ ├── content │ │ ├── ModusIcon.tsx │ │ ├── index.css │ │ ├── index.html │ │ ├── main.tsx │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── postcss.config.js │ │ ├── tailwind.config.js │ │ └── vite.config.ts │ └── explorer.go ├── functions │ ├── events.go │ ├── fninfo.go │ ├── helpers.go │ └── registration.go ├── go.mod ├── go.sum ├── graphql │ ├── datasource │ │ ├── configuration.go │ │ ├── eventsds.go │ │ ├── factory.go │ │ ├── functionsds.go │ │ └── planner.go │ ├── engine │ │ ├── engine.go │ │ └── logging.go │ ├── graphql.go │ └── schemagen │ │ ├── conventions.go │ │ ├── schemagen.go │ │ ├── schemagen_as_test.go │ │ └── schemagen_go_test.go ├── graphqlclient │ └── graphqlclient.go ├── hostfunctions │ ├── agents.go │ ├── database.go │ ├── dgraph.go │ ├── graphql.go │ ├── hostfunctions.go │ ├── http.go │ ├── models.go │ ├── neo4j.go │ ├── secrets.go │ └── system.go ├── httpclient │ ├── connections.go │ ├── fetch.go │ └── types.go ├── httpserver │ ├── dynamicMux.go │ ├── health.go │ └── server.go ├── integration_tests │ ├── .golangci.yaml │ ├── postgresql_integration_test.go │ └── testdata │ │ ├── modus.json │ │ └── postgresql-example.wasm ├── langsupport │ ├── executionplan.go │ ├── langtypeinfo.go │ ├── language.go │ ├── planner.go │ ├── primitives │ │ ├── converters.go │ │ ├── decoders.go │ │ ├── encoders.go │ │ ├── readers.go │ │ └── writers.go │ ├── typehandler.go │ ├── typeinfo.go │ ├── utils.go │ └── wasmadapter.go ├── languages │ ├── assemblyscript │ │ ├── adapter.go │ │ ├── handler_arraybuffers.go │ │ ├── handler_arrays.go │ │ ├── handler_classes.go │ │ ├── handler_dates.go │ │ ├── handler_maps.go │ │ ├── handler_objects.go │ │ ├── handler_primitivearrays.go │ │ ├── handler_primitives.go │ │ ├── handler_strings.go │ │ ├── handler_typedarrays.go │ │ ├── hash │ │ │ └── hash.go │ │ ├── planner.go │ │ ├── testdata │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── asconfig.json │ │ │ ├── assembly │ │ │ │ ├── arraybuffers.ts │ │ │ │ ├── arrays.ts │ │ │ │ ├── classes.ts │ │ │ │ ├── dates.ts │ │ │ │ ├── env.ts │ │ │ │ ├── hostfns.ts │ │ │ │ ├── index.ts │ │ │ │ ├── maps.ts │ │ │ │ ├── primitives.ts │ │ │ │ ├── strings.ts │ │ │ │ ├── tsconfig.json │ │ │ │ └── typedarrays.ts │ │ │ ├── build │ │ │ │ └── testdata.wasm │ │ │ ├── package-lock.json │ │ │ └── package.json │ │ ├── tests │ │ │ ├── arraybuffers_test.go │ │ │ ├── arrays_test.go │ │ │ ├── classes_test.go │ │ │ ├── dates_test.go │ │ │ ├── env_test.go │ │ │ ├── hostfns_test.go │ │ │ ├── maps_test.go │ │ │ ├── primitives_test.go │ │ │ ├── setup_test.go │ │ │ ├── special_test.go │ │ │ ├── strings_test.go │ │ │ └── typedarrays_test.go │ │ └── typeinfo.go │ ├── golang │ │ ├── adapter.go │ │ ├── handler_arrays.go │ │ ├── handler_maps.go │ │ ├── handler_pointers.go │ │ ├── handler_primitivearrays.go │ │ ├── handler_primitives.go │ │ ├── handler_primitiveslices.go │ │ ├── handler_slices.go │ │ ├── handler_strings.go │ │ ├── handler_structs.go │ │ ├── handler_time.go │ │ ├── planner.go │ │ ├── testdata │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── arrays.go │ │ │ ├── build.cmd │ │ │ ├── build.sh │ │ │ ├── build │ │ │ │ └── testdata.wasm │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── hostfns.go │ │ │ ├── http.go │ │ │ ├── imports_mock.go │ │ │ ├── imports_wasi.go │ │ │ ├── maps.go │ │ │ ├── primitives.go │ │ │ ├── slices.go │ │ │ ├── special.go │ │ │ ├── strings.go │ │ │ ├── structs.go │ │ │ ├── time.go │ │ │ └── utils.go │ │ ├── tests │ │ │ ├── arrays_test.go │ │ │ ├── hostfns_test.go │ │ │ ├── http_test.go │ │ │ ├── maps_test.go │ │ │ ├── planner_test.go │ │ │ ├── primitives_test.go │ │ │ ├── recursivestructs_test.go │ │ │ ├── setup_test.go │ │ │ ├── slices_test.go │ │ │ ├── special_test.go │ │ │ ├── strings_test.go │ │ │ ├── structs_test.go │ │ │ └── time_test.go │ │ └── typeinfo.go │ └── languages.go ├── logger │ ├── logger.go │ └── logwriter.go ├── main.go ├── manifestdata │ ├── events.go │ └── manifestdata.go ├── messages │ └── messages.pb.go ├── metrics │ ├── metrics.go │ └── metrics_test.go ├── middleware │ ├── authKeys.go │ ├── jwt.go │ └── jwt_test.go ├── models │ ├── bedrock.go │ ├── hypermode.go │ ├── models.go │ ├── models_test.go │ └── types.go ├── neo4jclient │ ├── neo4jclient.go │ ├── registry.go │ └── types.go ├── pluginmanager │ ├── events.go │ ├── loader.go │ ├── pluginmanager.go │ └── pluginregistry.go ├── plugins │ └── plugins.go ├── protos │ └── messages.proto ├── secrets │ ├── kubernetes.go │ ├── localsecrets.go │ └── secrets.go ├── sentryutils │ └── sentry.go ├── services │ └── services.go ├── sqlclient │ ├── mysql.go │ ├── postgresql.go │ ├── registry.go │ ├── sqlclient.go │ └── types.go ├── storage │ ├── awsstorage.go │ ├── localstorage.go │ ├── storage.go │ └── storagemonitor.go ├── testutils │ └── testutils.go ├── timezones │ ├── timezones.go │ ├── tzdata_other.go │ └── tzdata_windows.go ├── tools │ └── local │ │ └── docker-compose.yml ├── utils │ ├── buffers.go │ ├── buffers_test.go │ ├── cast.go │ ├── cast_test.go │ ├── cleaner.go │ ├── cleaner_test.go │ ├── console.go │ ├── console_test.go │ ├── context.go │ ├── errors.go │ ├── http.go │ ├── http_test.go │ ├── json.go │ ├── maps.go │ ├── mapstructure.go │ ├── pointers.go │ ├── slices.go │ ├── strings.go │ ├── strings_test.go │ ├── time.go │ ├── utils.go │ └── wasm.go └── wasmhost │ ├── env.go │ ├── fncall.go │ ├── hostfns.go │ ├── initialization.go │ └── wasmhost.go ├── sdk ├── README.md ├── assemblyscript │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── examples │ │ ├── agents │ │ │ ├── .gitignore │ │ │ ├── .prettierrc │ │ │ ├── asconfig.json │ │ │ ├── assembly │ │ │ │ ├── counterAgent.ts │ │ │ │ ├── index.ts │ │ │ │ └── tsconfig.json │ │ │ ├── eslint.config.js │ │ │ ├── modus.json │ │ │ ├── package-lock.json │ │ │ └── package.json │ │ ├── anthropic-functions │ │ │ ├── .prettierrc │ │ │ ├── README.md │ │ │ ├── asconfig.json │ │ │ ├── assembly │ │ │ │ ├── index.ts │ │ │ │ └── tsconfig.json │ │ │ ├── eslint.config.js │ │ │ ├── modus.json │ │ │ ├── package-lock.json │ │ │ └── package.json │ │ ├── auth │ │ │ ├── .prettierrc │ │ │ ├── README.md │ │ │ ├── asconfig.json │ │ │ ├── assembly │ │ │ │ ├── index.ts │ │ │ │ └── tsconfig.json │ │ │ ├── eslint.config.js │ │ │ ├── modus.json │ │ │ ├── package-lock.json │ │ │ └── package.json │ │ ├── classification │ │ │ ├── .prettierrc │ │ │ ├── README.md │ │ │ ├── asconfig.json │ │ │ ├── assembly │ │ │ │ ├── index.ts │ │ │ │ └── tsconfig.json │ │ │ ├── eslint.config.js │ │ │ ├── modus.json │ │ │ ├── package-lock.json │ │ │ └── package.json │ │ ├── dgraph │ │ │ ├── .prettierrc │ │ │ ├── README.md │ │ │ ├── asconfig.json │ │ │ ├── assembly │ │ │ │ ├── classes.ts │ │ │ │ ├── index.ts │ │ │ │ └── tsconfig.json │ │ │ ├── eslint.config.js │ │ │ ├── modus.json │ │ │ ├── package-lock.json │ │ │ └── package.json │ │ ├── embedding │ │ │ ├── .prettierrc │ │ │ ├── README.md │ │ │ ├── asconfig.json │ │ │ ├── assembly │ │ │ │ ├── index.ts │ │ │ │ └── tsconfig.json │ │ │ ├── eslint.config.js │ │ │ ├── modus.json │ │ │ ├── package-lock.json │ │ │ └── package.json │ │ ├── graphql │ │ │ ├── .prettierrc │ │ │ ├── README.md │ │ │ ├── asconfig.json │ │ │ ├── assembly │ │ │ │ ├── classes.ts │ │ │ │ ├── index.ts │ │ │ │ └── tsconfig.json │ │ │ ├── eslint.config.js │ │ │ ├── modus.json │ │ │ ├── package-lock.json │ │ │ └── package.json │ │ ├── http │ │ │ ├── .prettierrc │ │ │ ├── README.md │ │ │ ├── asconfig.json │ │ │ ├── assembly │ │ │ │ ├── classes.ts │ │ │ │ ├── index.ts │ │ │ │ └── tsconfig.json │ │ │ ├── eslint.config.js │ │ │ ├── modus.json │ │ │ ├── package-lock.json │ │ │ └── package.json │ │ ├── mysql │ │ │ ├── .prettierrc │ │ │ ├── README.md │ │ │ ├── asconfig.json │ │ │ ├── assembly │ │ │ │ ├── index.ts │ │ │ │ └── tsconfig.json │ │ │ ├── eslint.config.js │ │ │ ├── extras │ │ │ │ └── dbschema.sql │ │ │ ├── modus.json │ │ │ ├── package-lock.json │ │ │ └── package.json │ │ ├── neo4j │ │ │ ├── .prettierrc │ │ │ ├── README.md │ │ │ ├── asconfig.json │ │ │ ├── assembly │ │ │ │ ├── index.ts │ │ │ │ └── tsconfig.json │ │ │ ├── eslint.config.js │ │ │ ├── modus.json │ │ │ ├── package-lock.json │ │ │ └── package.json │ │ ├── postgresql │ │ │ ├── .prettierrc │ │ │ ├── README.md │ │ │ ├── asconfig.json │ │ │ ├── assembly │ │ │ │ ├── index.ts │ │ │ │ └── tsconfig.json │ │ │ ├── eslint.config.js │ │ │ ├── extras │ │ │ │ └── dbschema.sql │ │ │ ├── modus.json │ │ │ ├── package-lock.json │ │ │ └── package.json │ │ ├── secrets │ │ │ ├── .gitignore │ │ │ ├── .prettierrc │ │ │ ├── README.md │ │ │ ├── asconfig.json │ │ │ ├── assembly │ │ │ │ ├── index.ts │ │ │ │ └── tsconfig.json │ │ │ ├── eslint.config.js │ │ │ ├── modus.json │ │ │ ├── package-lock.json │ │ │ └── package.json │ │ ├── simple │ │ │ ├── .gitignore │ │ │ ├── .prettierrc │ │ │ ├── README.md │ │ │ ├── asconfig.json │ │ │ ├── assembly │ │ │ │ ├── index.ts │ │ │ │ ├── person.ts │ │ │ │ └── tsconfig.json │ │ │ ├── eslint.config.js │ │ │ ├── modus.json │ │ │ ├── package-lock.json │ │ │ └── package.json │ │ ├── textgeneration │ │ │ ├── .gitignore │ │ │ ├── .prettierrc │ │ │ ├── README.md │ │ │ ├── asconfig.json │ │ │ ├── assembly │ │ │ │ ├── index.ts │ │ │ │ ├── media.ts │ │ │ │ ├── products.ts │ │ │ │ ├── simple.ts │ │ │ │ ├── toolcalling.ts │ │ │ │ └── tsconfig.json │ │ │ ├── eslint.config.js │ │ │ ├── modus.json │ │ │ ├── package-lock.json │ │ │ └── package.json │ │ ├── time │ │ │ ├── .prettierrc │ │ │ ├── README.md │ │ │ ├── asconfig.json │ │ │ ├── assembly │ │ │ │ ├── index.ts │ │ │ │ └── tsconfig.json │ │ │ ├── eslint.config.js │ │ │ ├── modus.json │ │ │ ├── package-lock.json │ │ │ └── package.json │ │ └── vectors │ │ │ ├── .prettierrc │ │ │ ├── README.md │ │ │ ├── asconfig.json │ │ │ ├── assembly │ │ │ ├── index.ts │ │ │ └── tsconfig.json │ │ │ ├── eslint.config.js │ │ │ ├── modus.json │ │ │ ├── package-lock.json │ │ │ └── package.json │ ├── scripts │ │ ├── build-all.sh │ │ ├── install-all.sh │ │ ├── prepare-release.sh │ │ └── upgrade-deps.sh │ ├── sdk.json │ ├── src │ │ ├── .prettierignore │ │ ├── .prettierrc │ │ ├── LICENSE │ │ ├── README.md │ │ ├── as-test.config.json │ │ ├── asconfig.json │ │ ├── assembly │ │ │ ├── __tests__ │ │ │ │ ├── agent.spec.ts │ │ │ │ ├── database.spec.ts │ │ │ │ ├── dynamicmap.spec.ts │ │ │ │ ├── graphql.spec.ts │ │ │ │ ├── http.spec.ts │ │ │ │ ├── neo4j.spec.ts │ │ │ │ ├── openai.spec.ts │ │ │ │ ├── src │ │ │ │ │ └── taskagent.ts │ │ │ │ └── vectors.spec.ts │ │ │ ├── agent.ts │ │ │ ├── agents.ts │ │ │ ├── auth.ts │ │ │ ├── database.ts │ │ │ ├── dgraph.ts │ │ │ ├── dynamicmap.ts │ │ │ ├── enums.ts │ │ │ ├── exports.ts │ │ │ ├── graphql.ts │ │ │ ├── http.ts │ │ │ ├── index.ts │ │ │ ├── localtime.ts │ │ │ ├── models.ts │ │ │ ├── mysql.ts │ │ │ ├── neo4j.ts │ │ │ ├── overrides │ │ │ │ ├── modus_abort.ts │ │ │ │ ├── modus_console.ts │ │ │ │ └── modus_trace.ts │ │ │ ├── postgresql.ts │ │ │ ├── secrets.ts │ │ │ ├── tsconfig.json │ │ │ ├── utils.ts │ │ │ └── vectors.ts │ │ ├── bin │ │ │ └── build-plugin.js │ │ ├── eslint.config.js │ │ ├── index.ts │ │ ├── models │ │ │ ├── anthropic │ │ │ │ └── messages.ts │ │ │ ├── experimental │ │ │ │ ├── classification.ts │ │ │ │ └── embeddings.ts │ │ │ ├── gemini │ │ │ │ └── generate.ts │ │ │ ├── meta │ │ │ │ └── llama.ts │ │ │ ├── openai │ │ │ │ ├── chat.ts │ │ │ │ └── embeddings.ts │ │ │ └── tsconfig.json │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── plugin.asconfig.json │ │ ├── tests │ │ │ ├── agent.run.ts │ │ │ ├── database.run.ts │ │ │ ├── dynamicmap.run.ts │ │ │ ├── graphql.run.ts │ │ │ ├── http.run.ts │ │ │ ├── neo4j.run.ts │ │ │ ├── openai.run.ts │ │ │ ├── tsconfig.json │ │ │ └── vectors.run.ts │ │ ├── tools │ │ │ ├── assemblyscript-eslint-local.js │ │ │ └── assemblyscript-eslint.js │ │ └── transform │ │ │ ├── .gitignore │ │ │ ├── .npmignore │ │ │ ├── src │ │ │ ├── extractor.ts │ │ │ ├── index.ts │ │ │ ├── metadata.ts │ │ │ └── types.ts │ │ │ ├── tests │ │ │ ├── docs.test.ts │ │ │ ├── metadata.test.ts │ │ │ └── types.test.ts │ │ │ └── tsconfig.json │ └── templates │ │ └── default │ │ ├── .env.dev.local │ │ ├── .gitignore │ │ ├── .prettierrc │ │ ├── asconfig.json │ │ ├── assembly │ │ ├── index.ts │ │ └── tsconfig.json │ │ ├── eslint.config.js │ │ ├── modus.json │ │ ├── package-lock.json │ │ └── package.json └── go │ ├── LICENSE │ ├── doc.go │ ├── examples │ ├── agents │ │ ├── .gitignore │ │ ├── build.cmd │ │ ├── build.sh │ │ ├── counterAgent.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── main.go │ │ └── modus.json │ ├── anthropic-functions │ │ ├── build.cmd │ │ ├── build.sh │ │ ├── go.mod │ │ ├── go.sum │ │ ├── main.go │ │ └── modus.json │ ├── auth │ │ ├── build.cmd │ │ ├── build.sh │ │ ├── go.mod │ │ ├── go.sum │ │ ├── main.go │ │ └── modus.json │ ├── classification │ │ ├── build.cmd │ │ ├── build.sh │ │ ├── go.mod │ │ ├── go.sum │ │ ├── main.go │ │ └── modus.json │ ├── dgraph │ │ ├── build.cmd │ │ ├── build.sh │ │ ├── go.mod │ │ ├── go.sum │ │ ├── main.go │ │ ├── modus.json │ │ └── types.go │ ├── embedding │ │ ├── build.cmd │ │ ├── build.sh │ │ ├── go.mod │ │ ├── go.sum │ │ ├── minilm.go │ │ ├── modus.json │ │ └── openai.go │ ├── graphql │ │ ├── build.cmd │ │ ├── build.sh │ │ ├── go.mod │ │ ├── go.sum │ │ ├── main.go │ │ ├── modus.json │ │ └── types.go │ ├── http │ │ ├── build.cmd │ │ ├── build.sh │ │ ├── go.mod │ │ ├── go.sum │ │ ├── main.go │ │ ├── modus.json │ │ └── types.go │ ├── mysql │ │ ├── build.cmd │ │ ├── build.sh │ │ ├── go.mod │ │ ├── go.sum │ │ ├── main.go │ │ └── modus.json │ ├── neo4j │ │ ├── build.cmd │ │ ├── build.sh │ │ ├── go.mod │ │ ├── go.sum │ │ ├── main.go │ │ └── modus.json │ ├── postgresql │ │ ├── build.cmd │ │ ├── build.sh │ │ ├── go.mod │ │ ├── go.sum │ │ ├── main.go │ │ └── modus.json │ ├── secrets │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.cmd │ │ ├── build.sh │ │ ├── go.mod │ │ ├── main.go │ │ ├── modus.json │ │ ├── setup.sh │ │ └── teardown.sh │ ├── simple │ │ ├── build.cmd │ │ ├── build.sh │ │ ├── go.mod │ │ ├── go.sum │ │ ├── main.go │ │ ├── main_test.go │ │ └── modus.json │ ├── textgeneration │ │ ├── build.cmd │ │ ├── build.sh │ │ ├── go.mod │ │ ├── go.sum │ │ ├── main.go │ │ ├── media.go │ │ ├── modus.json │ │ ├── products.go │ │ ├── simple.go │ │ └── toolcalling.go │ ├── time │ │ ├── build.cmd │ │ ├── build.sh │ │ ├── go.mod │ │ ├── go.sum │ │ ├── main.go │ │ └── modus.json │ └── vectors │ │ ├── build.cmd │ │ ├── build.sh │ │ ├── go.mod │ │ ├── go.sum │ │ ├── main.go │ │ └── modus.json │ ├── go.mod │ ├── go.sum │ ├── pkg │ ├── agents │ │ ├── agents.go │ │ ├── imports_mock.go │ │ └── imports_wasi.go │ ├── auth │ │ └── jwt.go │ ├── console │ │ ├── console.go │ │ ├── console_test.go │ │ ├── imports_mock.go │ │ ├── imports_wasi.go │ │ └── timers.go │ ├── db │ │ ├── db.go │ │ ├── db_test.go │ │ ├── imports_mock.go │ │ ├── imports_wasi.go │ │ ├── location.go │ │ ├── location_test.go │ │ ├── point.go │ │ └── point_test.go │ ├── dgraph │ │ ├── dgraph.go │ │ ├── dgraph_test.go │ │ ├── imports_mock.go │ │ └── imports_wasi.go │ ├── graphql │ │ ├── graphql.go │ │ ├── graphql_test.go │ │ ├── imports_mock.go │ │ └── imports_wasi.go │ ├── http │ │ ├── content.go │ │ ├── headers.go │ │ ├── http.go │ │ ├── http_test.go │ │ ├── imports_mock.go │ │ ├── imports_wasi.go │ │ ├── request.go │ │ └── response.go │ ├── localtime │ │ ├── imports_mock.go │ │ ├── imports_wasi.go │ │ └── localtime.go │ ├── models │ │ ├── anthropic │ │ │ └── messages.go │ │ ├── experimental │ │ │ ├── classification.go │ │ │ └── embeddings.go │ │ ├── imports_mock.go │ │ ├── imports_wasi.go │ │ ├── models.go │ │ ├── models_test.go │ │ └── openai │ │ │ ├── chat.go │ │ │ ├── chat_test.go │ │ │ ├── common.go │ │ │ └── embeddings.go │ ├── mysql │ │ └── mysql.go │ ├── neo4j │ │ ├── imports_mock.go │ │ ├── imports_wasi.go │ │ ├── neo4j.go │ │ └── neo4j_test.go │ ├── postgresql │ │ └── postgresql.go │ ├── secrets │ │ ├── imports_mock.go │ │ ├── imports_wasi.go │ │ └── secrets.go │ ├── testutils │ │ └── stack.go │ ├── utils │ │ └── utils.go │ └── vectors │ │ ├── vectors.go │ │ └── vectors_test.go │ ├── scripts │ ├── prepare-release.sh │ └── update-all.sh │ ├── sdk.json │ ├── templates │ └── default │ │ ├── .env.dev.local │ │ ├── .gitignore │ │ ├── go.mod │ │ ├── go.sum │ │ ├── main.go │ │ └── modus.json │ └── tools │ └── modus-go-build │ ├── .gitignore │ ├── codegen │ ├── codegen.go │ ├── postprocess.go │ └── preprocess.go │ ├── compiler │ └── compiler.go │ ├── config │ └── config.go │ ├── extractor │ ├── extractor.go │ ├── functions.go │ ├── packages.go │ └── transform.go │ ├── gitinfo │ └── gitinfo.go │ ├── main.go │ ├── metadata │ └── metadata.go │ ├── metagen │ ├── metagen.go │ └── output.go │ ├── modinfo │ └── modinfo.go │ ├── utils │ ├── typeinfo.go │ └── utils.go │ └── wasm │ ├── filters.go │ └── wasm.go └── tools ├── modus-dbmigrate ├── .gitignore ├── README.md ├── go.mod ├── go.sum ├── main.go └── migrations │ ├── 000001_init_inference_history.down.sql │ ├── 000001_init_inference_history.up.sql │ ├── 000002_create_collections.down.sql │ ├── 000002_create_collections.up.sql │ ├── 000003_update_inference_history.down.sql │ ├── 000003_update_inference_history.up.sql │ ├── 000004_add_collection_labels.down.sql │ ├── 000004_add_collection_labels.up.sql │ ├── 000005_add_tenancy.down.sql │ ├── 000005_add_tenancy.up.sql │ ├── 000006_add_started_at_index.down.sql │ ├── 000006_add_started_at_index.up.sql │ ├── 000007_add_agent_state.down.sql │ └── 000007_add_agent_state.up.sql ├── modus-keygen ├── .gitignore ├── README.md ├── go.mod ├── go.sum └── main.go └── release-info ├── .gitignore ├── .prettierrc ├── constants.ts ├── eslint.config.js ├── index.ts ├── package-lock.json ├── package.json ├── tsconfig.json └── versioninfo.ts /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/ci-cli-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/.github/workflows/ci-cli-build.yml -------------------------------------------------------------------------------- /.github/workflows/ci-cli-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/.github/workflows/ci-cli-lint.yml -------------------------------------------------------------------------------- /.github/workflows/ci-go-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/.github/workflows/ci-go-test.yml -------------------------------------------------------------------------------- /.github/workflows/ci-release-info-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/.github/workflows/ci-release-info-build.yaml -------------------------------------------------------------------------------- /.github/workflows/ci-release-info-lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/.github/workflows/ci-release-info-lint.yaml -------------------------------------------------------------------------------- /.github/workflows/ci-runtime-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/.github/workflows/ci-runtime-build.yml -------------------------------------------------------------------------------- /.github/workflows/ci-runtime-integration-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/.github/workflows/ci-runtime-integration-tests.yml -------------------------------------------------------------------------------- /.github/workflows/ci-sdk-as-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/.github/workflows/ci-sdk-as-build.yml -------------------------------------------------------------------------------- /.github/workflows/ci-sdk-as-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/.github/workflows/ci-sdk-as-lint.yml -------------------------------------------------------------------------------- /.github/workflows/ci-sdk-as-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/.github/workflows/ci-sdk-as-test.yml -------------------------------------------------------------------------------- /.github/workflows/ci-sdk-go-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/.github/workflows/ci-sdk-go-build.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/release-cli.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/.github/workflows/release-cli.yaml -------------------------------------------------------------------------------- /.github/workflows/release-info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/.github/workflows/release-info.yaml -------------------------------------------------------------------------------- /.github/workflows/release-runtime.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/.github/workflows/release-runtime.yaml -------------------------------------------------------------------------------- /.github/workflows/release-schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/.github/workflows/release-schema.yaml -------------------------------------------------------------------------------- /.github/workflows/release-sdk-as.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/.github/workflows/release-sdk-as.yaml -------------------------------------------------------------------------------- /.github/workflows/release-sdk-go.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/.github/workflows/release-sdk-go.yaml -------------------------------------------------------------------------------- /.github/workflows/trunk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/.github/workflows/trunk.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/.gitignore -------------------------------------------------------------------------------- /.trunk/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/.trunk/.gitignore -------------------------------------------------------------------------------- /.trunk/configs/.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/.trunk/configs/.golangci.yaml -------------------------------------------------------------------------------- /.trunk/configs/.hadolint.yaml: -------------------------------------------------------------------------------- 1 | ignored: 2 | - DL3008 3 | -------------------------------------------------------------------------------- /.trunk/configs/.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/.trunk/configs/.markdownlint.json -------------------------------------------------------------------------------- /.trunk/configs/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/.trunk/configs/.prettierrc -------------------------------------------------------------------------------- /.trunk/configs/.shellcheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/.trunk/configs/.shellcheckrc -------------------------------------------------------------------------------- /.trunk/configs/.yamllint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/.trunk/configs/.yamllint.yaml -------------------------------------------------------------------------------- /.trunk/configs/cspell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/.trunk/configs/cspell.json -------------------------------------------------------------------------------- /.trunk/trunk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/.trunk/trunk.yaml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/SECURITY.md -------------------------------------------------------------------------------- /cli/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/cli/.gitignore -------------------------------------------------------------------------------- /cli/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/cli/.prettierrc -------------------------------------------------------------------------------- /cli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/cli/LICENSE -------------------------------------------------------------------------------- /cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/cli/README.md -------------------------------------------------------------------------------- /cli/bin/modus-cli-dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/cli/bin/modus-cli-dev.js -------------------------------------------------------------------------------- /cli/bin/modus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/cli/bin/modus.js -------------------------------------------------------------------------------- /cli/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/cli/eslint.config.js -------------------------------------------------------------------------------- /cli/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/cli/install.sh -------------------------------------------------------------------------------- /cli/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/cli/package-lock.json -------------------------------------------------------------------------------- /cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/cli/package.json -------------------------------------------------------------------------------- /cli/src/baseCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/cli/src/baseCommand.ts -------------------------------------------------------------------------------- /cli/src/commands/build/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/cli/src/commands/build/index.ts -------------------------------------------------------------------------------- /cli/src/commands/dev/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/cli/src/commands/dev/index.ts -------------------------------------------------------------------------------- /cli/src/commands/info/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/cli/src/commands/info/index.ts -------------------------------------------------------------------------------- /cli/src/commands/new/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/cli/src/commands/new/index.ts -------------------------------------------------------------------------------- /cli/src/commands/runtime/install/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/cli/src/commands/runtime/install/index.ts -------------------------------------------------------------------------------- /cli/src/commands/runtime/list/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/cli/src/commands/runtime/list/index.ts -------------------------------------------------------------------------------- /cli/src/commands/runtime/remove/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/cli/src/commands/runtime/remove/index.ts -------------------------------------------------------------------------------- /cli/src/commands/sdk/install/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/cli/src/commands/sdk/install/index.ts -------------------------------------------------------------------------------- /cli/src/commands/sdk/list/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/cli/src/commands/sdk/list/index.ts -------------------------------------------------------------------------------- /cli/src/commands/sdk/remove/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/cli/src/commands/sdk/remove/index.ts -------------------------------------------------------------------------------- /cli/src/custom/globals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/cli/src/custom/globals.ts -------------------------------------------------------------------------------- /cli/src/custom/header.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/cli/src/custom/header.ts -------------------------------------------------------------------------------- /cli/src/custom/help.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/cli/src/custom/help.ts -------------------------------------------------------------------------------- /cli/src/custom/logo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/cli/src/custom/logo.ts -------------------------------------------------------------------------------- /cli/src/hooks/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/cli/src/hooks/init.ts -------------------------------------------------------------------------------- /cli/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/cli/src/index.ts -------------------------------------------------------------------------------- /cli/src/util/appinfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/cli/src/util/appinfo.ts -------------------------------------------------------------------------------- /cli/src/util/appname.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/cli/src/util/appname.ts -------------------------------------------------------------------------------- /cli/src/util/cp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/cli/src/util/cp.ts -------------------------------------------------------------------------------- /cli/src/util/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/cli/src/util/errors.ts -------------------------------------------------------------------------------- /cli/src/util/fs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/cli/src/util/fs.ts -------------------------------------------------------------------------------- /cli/src/util/http.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/cli/src/util/http.ts -------------------------------------------------------------------------------- /cli/src/util/hypermode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/cli/src/util/hypermode.ts -------------------------------------------------------------------------------- /cli/src/util/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/cli/src/util/index.ts -------------------------------------------------------------------------------- /cli/src/util/installer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/cli/src/util/installer.ts -------------------------------------------------------------------------------- /cli/src/util/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/cli/src/util/metadata.ts -------------------------------------------------------------------------------- /cli/src/util/systemVersions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/cli/src/util/systemVersions.ts -------------------------------------------------------------------------------- /cli/src/util/tar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/cli/src/util/tar.ts -------------------------------------------------------------------------------- /cli/src/util/updateNotifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/cli/src/util/updateNotifier.ts -------------------------------------------------------------------------------- /cli/src/util/versioninfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/cli/src/util/versioninfo.ts -------------------------------------------------------------------------------- /cli/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/cli/tsconfig.json -------------------------------------------------------------------------------- /go.work: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/go.work -------------------------------------------------------------------------------- /lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/lib/README.md -------------------------------------------------------------------------------- /lib/manifest/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/lib/manifest/connection.go -------------------------------------------------------------------------------- /lib/manifest/dgraph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/lib/manifest/dgraph.go -------------------------------------------------------------------------------- /lib/manifest/endpoints.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/lib/manifest/endpoints.go -------------------------------------------------------------------------------- /lib/manifest/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/lib/manifest/go.mod -------------------------------------------------------------------------------- /lib/manifest/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/lib/manifest/go.sum -------------------------------------------------------------------------------- /lib/manifest/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/lib/manifest/http.go -------------------------------------------------------------------------------- /lib/manifest/manifest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/lib/manifest/manifest.go -------------------------------------------------------------------------------- /lib/manifest/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/lib/manifest/model.go -------------------------------------------------------------------------------- /lib/manifest/modus_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/lib/manifest/modus_schema.json -------------------------------------------------------------------------------- /lib/manifest/mysql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/lib/manifest/mysql.go -------------------------------------------------------------------------------- /lib/manifest/neo4j.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/lib/manifest/neo4j.go -------------------------------------------------------------------------------- /lib/manifest/postgresql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/lib/manifest/postgresql.go -------------------------------------------------------------------------------- /lib/manifest/test/manifest_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/lib/manifest/test/manifest_test.go -------------------------------------------------------------------------------- /lib/manifest/test/valid_modus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/lib/manifest/test/valid_modus.json -------------------------------------------------------------------------------- /lib/manifest/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/lib/manifest/utils.go -------------------------------------------------------------------------------- /lib/metadata/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/lib/metadata/builder.go -------------------------------------------------------------------------------- /lib/metadata/extras.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/lib/metadata/extras.go -------------------------------------------------------------------------------- /lib/metadata/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/lib/metadata/go.mod -------------------------------------------------------------------------------- /lib/metadata/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/lib/metadata/go.sum -------------------------------------------------------------------------------- /lib/metadata/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/lib/metadata/metadata.go -------------------------------------------------------------------------------- /lib/metadata/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/lib/metadata/reader.go -------------------------------------------------------------------------------- /lib/wasmextractor/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/lib/wasmextractor/go.mod -------------------------------------------------------------------------------- /lib/wasmextractor/wasmextractor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/lib/wasmextractor/wasmextractor.go -------------------------------------------------------------------------------- /runtime/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/.gitignore -------------------------------------------------------------------------------- /runtime/.goreleaser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/.goreleaser.yaml -------------------------------------------------------------------------------- /runtime/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/Makefile -------------------------------------------------------------------------------- /runtime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/README.md -------------------------------------------------------------------------------- /runtime/actors/actorlogger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/actors/actorlogger.go -------------------------------------------------------------------------------- /runtime/actors/actorsystem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/actors/actorsystem.go -------------------------------------------------------------------------------- /runtime/actors/agents.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/actors/agents.go -------------------------------------------------------------------------------- /runtime/actors/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/actors/cluster.go -------------------------------------------------------------------------------- /runtime/actors/misc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/actors/misc.go -------------------------------------------------------------------------------- /runtime/actors/subscriber.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/actors/subscriber.go -------------------------------------------------------------------------------- /runtime/actors/wasmagent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/actors/wasmagent.go -------------------------------------------------------------------------------- /runtime/app/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/app/app.go -------------------------------------------------------------------------------- /runtime/app/app_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/app/app_test.go -------------------------------------------------------------------------------- /runtime/app/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/app/config.go -------------------------------------------------------------------------------- /runtime/app/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/app/config_test.go -------------------------------------------------------------------------------- /runtime/app/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/app/version.go -------------------------------------------------------------------------------- /runtime/app/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/app/version_test.go -------------------------------------------------------------------------------- /runtime/buf.gen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/buf.gen.yaml -------------------------------------------------------------------------------- /runtime/buf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/buf.yaml -------------------------------------------------------------------------------- /runtime/db/agentstate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/db/agentstate.go -------------------------------------------------------------------------------- /runtime/db/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/db/db.go -------------------------------------------------------------------------------- /runtime/db/inferencehistory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/db/inferencehistory.go -------------------------------------------------------------------------------- /runtime/db/migrations/000001_init_inference_history.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS "inferences"; 2 | -------------------------------------------------------------------------------- /runtime/db/migrations/000001_init_inference_history.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/db/migrations/000001_init_inference_history.up.sql -------------------------------------------------------------------------------- /runtime/db/migrations/000002_create_collections.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/db/migrations/000002_create_collections.down.sql -------------------------------------------------------------------------------- /runtime/db/migrations/000002_create_collections.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/db/migrations/000002_create_collections.up.sql -------------------------------------------------------------------------------- /runtime/db/migrations/000003_update_inference_history.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/db/migrations/000003_update_inference_history.down.sql -------------------------------------------------------------------------------- /runtime/db/migrations/000003_update_inference_history.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/db/migrations/000003_update_inference_history.up.sql -------------------------------------------------------------------------------- /runtime/db/migrations/000004_add_collection_labels.down.sql: -------------------------------------------------------------------------------- 1 | BEGIN; 2 | 3 | ALTER TABLE collection_texts DROP COLUMN labels; 4 | 5 | COMMIT; 6 | -------------------------------------------------------------------------------- /runtime/db/migrations/000004_add_collection_labels.up.sql: -------------------------------------------------------------------------------- 1 | BEGIN; 2 | 3 | ALTER TABLE collection_texts ADD COLUMN labels TEXT[]; 4 | 5 | COMMIT; 6 | -------------------------------------------------------------------------------- /runtime/db/migrations/000005_add_tenancy.down.sql: -------------------------------------------------------------------------------- 1 | BEGIN; 2 | 3 | ALTER TABLE collection_texts DROP COLUMN IF EXISTS namespace; 4 | 5 | COMMIT; 6 | -------------------------------------------------------------------------------- /runtime/db/migrations/000005_add_tenancy.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/db/migrations/000005_add_tenancy.up.sql -------------------------------------------------------------------------------- /runtime/db/migrations/000006_add_started_at_index.down.sql: -------------------------------------------------------------------------------- 1 | BEGIN; 2 | 3 | DROP INDEX IF EXISTS idx_started_at_desc; 4 | 5 | COMMIT; 6 | -------------------------------------------------------------------------------- /runtime/db/migrations/000006_add_started_at_index.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/db/migrations/000006_add_started_at_index.up.sql -------------------------------------------------------------------------------- /runtime/db/migrations/000007_add_agent_state.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS "agents"; 2 | -------------------------------------------------------------------------------- /runtime/db/migrations/000007_add_agent_state.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/db/migrations/000007_add_agent_state.up.sql -------------------------------------------------------------------------------- /runtime/db/modusdb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/db/modusdb.go -------------------------------------------------------------------------------- /runtime/dgraphclient/dgraph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/dgraphclient/dgraph.go -------------------------------------------------------------------------------- /runtime/dgraphclient/dgraphclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/dgraphclient/dgraphclient.go -------------------------------------------------------------------------------- /runtime/dgraphclient/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/dgraphclient/registry.go -------------------------------------------------------------------------------- /runtime/dgraphclient/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/dgraphclient/types.go -------------------------------------------------------------------------------- /runtime/envfiles/envfilemonitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/envfiles/envfilemonitor.go -------------------------------------------------------------------------------- /runtime/envfiles/envfiles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/envfiles/envfiles.go -------------------------------------------------------------------------------- /runtime/envfiles/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/envfiles/events.go -------------------------------------------------------------------------------- /runtime/explorer/content/ModusIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/explorer/content/ModusIcon.tsx -------------------------------------------------------------------------------- /runtime/explorer/content/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/explorer/content/index.css -------------------------------------------------------------------------------- /runtime/explorer/content/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/explorer/content/index.html -------------------------------------------------------------------------------- /runtime/explorer/content/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/explorer/content/main.tsx -------------------------------------------------------------------------------- /runtime/explorer/content/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/explorer/content/package-lock.json -------------------------------------------------------------------------------- /runtime/explorer/content/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/explorer/content/package.json -------------------------------------------------------------------------------- /runtime/explorer/content/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/explorer/content/postcss.config.js -------------------------------------------------------------------------------- /runtime/explorer/content/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/explorer/content/tailwind.config.js -------------------------------------------------------------------------------- /runtime/explorer/content/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/explorer/content/vite.config.ts -------------------------------------------------------------------------------- /runtime/explorer/explorer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/explorer/explorer.go -------------------------------------------------------------------------------- /runtime/functions/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/functions/events.go -------------------------------------------------------------------------------- /runtime/functions/fninfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/functions/fninfo.go -------------------------------------------------------------------------------- /runtime/functions/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/functions/helpers.go -------------------------------------------------------------------------------- /runtime/functions/registration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/functions/registration.go -------------------------------------------------------------------------------- /runtime/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/go.mod -------------------------------------------------------------------------------- /runtime/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/go.sum -------------------------------------------------------------------------------- /runtime/graphql/datasource/configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/graphql/datasource/configuration.go -------------------------------------------------------------------------------- /runtime/graphql/datasource/eventsds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/graphql/datasource/eventsds.go -------------------------------------------------------------------------------- /runtime/graphql/datasource/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/graphql/datasource/factory.go -------------------------------------------------------------------------------- /runtime/graphql/datasource/functionsds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/graphql/datasource/functionsds.go -------------------------------------------------------------------------------- /runtime/graphql/datasource/planner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/graphql/datasource/planner.go -------------------------------------------------------------------------------- /runtime/graphql/engine/engine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/graphql/engine/engine.go -------------------------------------------------------------------------------- /runtime/graphql/engine/logging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/graphql/engine/logging.go -------------------------------------------------------------------------------- /runtime/graphql/graphql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/graphql/graphql.go -------------------------------------------------------------------------------- /runtime/graphql/schemagen/conventions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/graphql/schemagen/conventions.go -------------------------------------------------------------------------------- /runtime/graphql/schemagen/schemagen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/graphql/schemagen/schemagen.go -------------------------------------------------------------------------------- /runtime/graphql/schemagen/schemagen_as_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/graphql/schemagen/schemagen_as_test.go -------------------------------------------------------------------------------- /runtime/graphql/schemagen/schemagen_go_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/graphql/schemagen/schemagen_go_test.go -------------------------------------------------------------------------------- /runtime/graphqlclient/graphqlclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/graphqlclient/graphqlclient.go -------------------------------------------------------------------------------- /runtime/hostfunctions/agents.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/hostfunctions/agents.go -------------------------------------------------------------------------------- /runtime/hostfunctions/database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/hostfunctions/database.go -------------------------------------------------------------------------------- /runtime/hostfunctions/dgraph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/hostfunctions/dgraph.go -------------------------------------------------------------------------------- /runtime/hostfunctions/graphql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/hostfunctions/graphql.go -------------------------------------------------------------------------------- /runtime/hostfunctions/hostfunctions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/hostfunctions/hostfunctions.go -------------------------------------------------------------------------------- /runtime/hostfunctions/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/hostfunctions/http.go -------------------------------------------------------------------------------- /runtime/hostfunctions/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/hostfunctions/models.go -------------------------------------------------------------------------------- /runtime/hostfunctions/neo4j.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/hostfunctions/neo4j.go -------------------------------------------------------------------------------- /runtime/hostfunctions/secrets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/hostfunctions/secrets.go -------------------------------------------------------------------------------- /runtime/hostfunctions/system.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/hostfunctions/system.go -------------------------------------------------------------------------------- /runtime/httpclient/connections.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/httpclient/connections.go -------------------------------------------------------------------------------- /runtime/httpclient/fetch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/httpclient/fetch.go -------------------------------------------------------------------------------- /runtime/httpclient/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/httpclient/types.go -------------------------------------------------------------------------------- /runtime/httpserver/dynamicMux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/httpserver/dynamicMux.go -------------------------------------------------------------------------------- /runtime/httpserver/health.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/httpserver/health.go -------------------------------------------------------------------------------- /runtime/httpserver/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/httpserver/server.go -------------------------------------------------------------------------------- /runtime/integration_tests/.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/integration_tests/.golangci.yaml -------------------------------------------------------------------------------- /runtime/integration_tests/postgresql_integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/integration_tests/postgresql_integration_test.go -------------------------------------------------------------------------------- /runtime/integration_tests/testdata/modus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/integration_tests/testdata/modus.json -------------------------------------------------------------------------------- /runtime/integration_tests/testdata/postgresql-example.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/integration_tests/testdata/postgresql-example.wasm -------------------------------------------------------------------------------- /runtime/langsupport/executionplan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/langsupport/executionplan.go -------------------------------------------------------------------------------- /runtime/langsupport/langtypeinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/langsupport/langtypeinfo.go -------------------------------------------------------------------------------- /runtime/langsupport/language.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/langsupport/language.go -------------------------------------------------------------------------------- /runtime/langsupport/planner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/langsupport/planner.go -------------------------------------------------------------------------------- /runtime/langsupport/primitives/converters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/langsupport/primitives/converters.go -------------------------------------------------------------------------------- /runtime/langsupport/primitives/decoders.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/langsupport/primitives/decoders.go -------------------------------------------------------------------------------- /runtime/langsupport/primitives/encoders.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/langsupport/primitives/encoders.go -------------------------------------------------------------------------------- /runtime/langsupport/primitives/readers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/langsupport/primitives/readers.go -------------------------------------------------------------------------------- /runtime/langsupport/primitives/writers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/langsupport/primitives/writers.go -------------------------------------------------------------------------------- /runtime/langsupport/typehandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/langsupport/typehandler.go -------------------------------------------------------------------------------- /runtime/langsupport/typeinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/langsupport/typeinfo.go -------------------------------------------------------------------------------- /runtime/langsupport/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/langsupport/utils.go -------------------------------------------------------------------------------- /runtime/langsupport/wasmadapter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/langsupport/wasmadapter.go -------------------------------------------------------------------------------- /runtime/languages/assemblyscript/adapter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/assemblyscript/adapter.go -------------------------------------------------------------------------------- /runtime/languages/assemblyscript/handler_arraybuffers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/assemblyscript/handler_arraybuffers.go -------------------------------------------------------------------------------- /runtime/languages/assemblyscript/handler_arrays.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/assemblyscript/handler_arrays.go -------------------------------------------------------------------------------- /runtime/languages/assemblyscript/handler_classes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/assemblyscript/handler_classes.go -------------------------------------------------------------------------------- /runtime/languages/assemblyscript/handler_dates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/assemblyscript/handler_dates.go -------------------------------------------------------------------------------- /runtime/languages/assemblyscript/handler_maps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/assemblyscript/handler_maps.go -------------------------------------------------------------------------------- /runtime/languages/assemblyscript/handler_objects.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/assemblyscript/handler_objects.go -------------------------------------------------------------------------------- /runtime/languages/assemblyscript/handler_primitivearrays.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/assemblyscript/handler_primitivearrays.go -------------------------------------------------------------------------------- /runtime/languages/assemblyscript/handler_primitives.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/assemblyscript/handler_primitives.go -------------------------------------------------------------------------------- /runtime/languages/assemblyscript/handler_strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/assemblyscript/handler_strings.go -------------------------------------------------------------------------------- /runtime/languages/assemblyscript/handler_typedarrays.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/assemblyscript/handler_typedarrays.go -------------------------------------------------------------------------------- /runtime/languages/assemblyscript/hash/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/assemblyscript/hash/hash.go -------------------------------------------------------------------------------- /runtime/languages/assemblyscript/planner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/assemblyscript/planner.go -------------------------------------------------------------------------------- /runtime/languages/assemblyscript/testdata/.gitignore: -------------------------------------------------------------------------------- 1 | !build/ 2 | !*.wasm 3 | -------------------------------------------------------------------------------- /runtime/languages/assemblyscript/testdata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/assemblyscript/testdata/README.md -------------------------------------------------------------------------------- /runtime/languages/assemblyscript/testdata/asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/assemblyscript/testdata/asconfig.json -------------------------------------------------------------------------------- /runtime/languages/assemblyscript/testdata/assembly/arrays.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/assemblyscript/testdata/assembly/arrays.ts -------------------------------------------------------------------------------- /runtime/languages/assemblyscript/testdata/assembly/classes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/assemblyscript/testdata/assembly/classes.ts -------------------------------------------------------------------------------- /runtime/languages/assemblyscript/testdata/assembly/dates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/assemblyscript/testdata/assembly/dates.ts -------------------------------------------------------------------------------- /runtime/languages/assemblyscript/testdata/assembly/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/assemblyscript/testdata/assembly/env.ts -------------------------------------------------------------------------------- /runtime/languages/assemblyscript/testdata/assembly/hostfns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/assemblyscript/testdata/assembly/hostfns.ts -------------------------------------------------------------------------------- /runtime/languages/assemblyscript/testdata/assembly/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/assemblyscript/testdata/assembly/index.ts -------------------------------------------------------------------------------- /runtime/languages/assemblyscript/testdata/assembly/maps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/assemblyscript/testdata/assembly/maps.ts -------------------------------------------------------------------------------- /runtime/languages/assemblyscript/testdata/assembly/strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/assemblyscript/testdata/assembly/strings.ts -------------------------------------------------------------------------------- /runtime/languages/assemblyscript/testdata/build/testdata.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/assemblyscript/testdata/build/testdata.wasm -------------------------------------------------------------------------------- /runtime/languages/assemblyscript/testdata/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/assemblyscript/testdata/package-lock.json -------------------------------------------------------------------------------- /runtime/languages/assemblyscript/testdata/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/assemblyscript/testdata/package.json -------------------------------------------------------------------------------- /runtime/languages/assemblyscript/tests/arraybuffers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/assemblyscript/tests/arraybuffers_test.go -------------------------------------------------------------------------------- /runtime/languages/assemblyscript/tests/arrays_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/assemblyscript/tests/arrays_test.go -------------------------------------------------------------------------------- /runtime/languages/assemblyscript/tests/classes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/assemblyscript/tests/classes_test.go -------------------------------------------------------------------------------- /runtime/languages/assemblyscript/tests/dates_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/assemblyscript/tests/dates_test.go -------------------------------------------------------------------------------- /runtime/languages/assemblyscript/tests/env_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/assemblyscript/tests/env_test.go -------------------------------------------------------------------------------- /runtime/languages/assemblyscript/tests/hostfns_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/assemblyscript/tests/hostfns_test.go -------------------------------------------------------------------------------- /runtime/languages/assemblyscript/tests/maps_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/assemblyscript/tests/maps_test.go -------------------------------------------------------------------------------- /runtime/languages/assemblyscript/tests/primitives_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/assemblyscript/tests/primitives_test.go -------------------------------------------------------------------------------- /runtime/languages/assemblyscript/tests/setup_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/assemblyscript/tests/setup_test.go -------------------------------------------------------------------------------- /runtime/languages/assemblyscript/tests/special_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/assemblyscript/tests/special_test.go -------------------------------------------------------------------------------- /runtime/languages/assemblyscript/tests/strings_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/assemblyscript/tests/strings_test.go -------------------------------------------------------------------------------- /runtime/languages/assemblyscript/tests/typedarrays_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/assemblyscript/tests/typedarrays_test.go -------------------------------------------------------------------------------- /runtime/languages/assemblyscript/typeinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/assemblyscript/typeinfo.go -------------------------------------------------------------------------------- /runtime/languages/golang/adapter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/golang/adapter.go -------------------------------------------------------------------------------- /runtime/languages/golang/handler_arrays.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/golang/handler_arrays.go -------------------------------------------------------------------------------- /runtime/languages/golang/handler_maps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/golang/handler_maps.go -------------------------------------------------------------------------------- /runtime/languages/golang/handler_pointers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/golang/handler_pointers.go -------------------------------------------------------------------------------- /runtime/languages/golang/handler_primitivearrays.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/golang/handler_primitivearrays.go -------------------------------------------------------------------------------- /runtime/languages/golang/handler_primitives.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/golang/handler_primitives.go -------------------------------------------------------------------------------- /runtime/languages/golang/handler_primitiveslices.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/golang/handler_primitiveslices.go -------------------------------------------------------------------------------- /runtime/languages/golang/handler_slices.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/golang/handler_slices.go -------------------------------------------------------------------------------- /runtime/languages/golang/handler_strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/golang/handler_strings.go -------------------------------------------------------------------------------- /runtime/languages/golang/handler_structs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/golang/handler_structs.go -------------------------------------------------------------------------------- /runtime/languages/golang/handler_time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/golang/handler_time.go -------------------------------------------------------------------------------- /runtime/languages/golang/planner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/golang/planner.go -------------------------------------------------------------------------------- /runtime/languages/golang/testdata/.gitignore: -------------------------------------------------------------------------------- 1 | !build/ 2 | !*.wasm 3 | -------------------------------------------------------------------------------- /runtime/languages/golang/testdata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/golang/testdata/README.md -------------------------------------------------------------------------------- /runtime/languages/golang/testdata/arrays.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/golang/testdata/arrays.go -------------------------------------------------------------------------------- /runtime/languages/golang/testdata/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/golang/testdata/build.cmd -------------------------------------------------------------------------------- /runtime/languages/golang/testdata/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/golang/testdata/build.sh -------------------------------------------------------------------------------- /runtime/languages/golang/testdata/build/testdata.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/golang/testdata/build/testdata.wasm -------------------------------------------------------------------------------- /runtime/languages/golang/testdata/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/golang/testdata/go.mod -------------------------------------------------------------------------------- /runtime/languages/golang/testdata/go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtime/languages/golang/testdata/hostfns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/golang/testdata/hostfns.go -------------------------------------------------------------------------------- /runtime/languages/golang/testdata/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/golang/testdata/http.go -------------------------------------------------------------------------------- /runtime/languages/golang/testdata/imports_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/golang/testdata/imports_mock.go -------------------------------------------------------------------------------- /runtime/languages/golang/testdata/imports_wasi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/golang/testdata/imports_wasi.go -------------------------------------------------------------------------------- /runtime/languages/golang/testdata/maps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/golang/testdata/maps.go -------------------------------------------------------------------------------- /runtime/languages/golang/testdata/primitives.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/golang/testdata/primitives.go -------------------------------------------------------------------------------- /runtime/languages/golang/testdata/slices.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/golang/testdata/slices.go -------------------------------------------------------------------------------- /runtime/languages/golang/testdata/special.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/golang/testdata/special.go -------------------------------------------------------------------------------- /runtime/languages/golang/testdata/strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/golang/testdata/strings.go -------------------------------------------------------------------------------- /runtime/languages/golang/testdata/structs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/golang/testdata/structs.go -------------------------------------------------------------------------------- /runtime/languages/golang/testdata/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/golang/testdata/time.go -------------------------------------------------------------------------------- /runtime/languages/golang/testdata/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/golang/testdata/utils.go -------------------------------------------------------------------------------- /runtime/languages/golang/tests/arrays_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/golang/tests/arrays_test.go -------------------------------------------------------------------------------- /runtime/languages/golang/tests/hostfns_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/golang/tests/hostfns_test.go -------------------------------------------------------------------------------- /runtime/languages/golang/tests/http_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/golang/tests/http_test.go -------------------------------------------------------------------------------- /runtime/languages/golang/tests/maps_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/golang/tests/maps_test.go -------------------------------------------------------------------------------- /runtime/languages/golang/tests/planner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/golang/tests/planner_test.go -------------------------------------------------------------------------------- /runtime/languages/golang/tests/primitives_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/golang/tests/primitives_test.go -------------------------------------------------------------------------------- /runtime/languages/golang/tests/recursivestructs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/golang/tests/recursivestructs_test.go -------------------------------------------------------------------------------- /runtime/languages/golang/tests/setup_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/golang/tests/setup_test.go -------------------------------------------------------------------------------- /runtime/languages/golang/tests/slices_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/golang/tests/slices_test.go -------------------------------------------------------------------------------- /runtime/languages/golang/tests/special_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/golang/tests/special_test.go -------------------------------------------------------------------------------- /runtime/languages/golang/tests/strings_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/golang/tests/strings_test.go -------------------------------------------------------------------------------- /runtime/languages/golang/tests/structs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/golang/tests/structs_test.go -------------------------------------------------------------------------------- /runtime/languages/golang/tests/time_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/golang/tests/time_test.go -------------------------------------------------------------------------------- /runtime/languages/golang/typeinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/golang/typeinfo.go -------------------------------------------------------------------------------- /runtime/languages/languages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/languages/languages.go -------------------------------------------------------------------------------- /runtime/logger/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/logger/logger.go -------------------------------------------------------------------------------- /runtime/logger/logwriter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/logger/logwriter.go -------------------------------------------------------------------------------- /runtime/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/main.go -------------------------------------------------------------------------------- /runtime/manifestdata/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/manifestdata/events.go -------------------------------------------------------------------------------- /runtime/manifestdata/manifestdata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/manifestdata/manifestdata.go -------------------------------------------------------------------------------- /runtime/messages/messages.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/messages/messages.pb.go -------------------------------------------------------------------------------- /runtime/metrics/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/metrics/metrics.go -------------------------------------------------------------------------------- /runtime/metrics/metrics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/metrics/metrics_test.go -------------------------------------------------------------------------------- /runtime/middleware/authKeys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/middleware/authKeys.go -------------------------------------------------------------------------------- /runtime/middleware/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/middleware/jwt.go -------------------------------------------------------------------------------- /runtime/middleware/jwt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/middleware/jwt_test.go -------------------------------------------------------------------------------- /runtime/models/bedrock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/models/bedrock.go -------------------------------------------------------------------------------- /runtime/models/hypermode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/models/hypermode.go -------------------------------------------------------------------------------- /runtime/models/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/models/models.go -------------------------------------------------------------------------------- /runtime/models/models_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/models/models_test.go -------------------------------------------------------------------------------- /runtime/models/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/models/types.go -------------------------------------------------------------------------------- /runtime/neo4jclient/neo4jclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/neo4jclient/neo4jclient.go -------------------------------------------------------------------------------- /runtime/neo4jclient/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/neo4jclient/registry.go -------------------------------------------------------------------------------- /runtime/neo4jclient/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/neo4jclient/types.go -------------------------------------------------------------------------------- /runtime/pluginmanager/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/pluginmanager/events.go -------------------------------------------------------------------------------- /runtime/pluginmanager/loader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/pluginmanager/loader.go -------------------------------------------------------------------------------- /runtime/pluginmanager/pluginmanager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/pluginmanager/pluginmanager.go -------------------------------------------------------------------------------- /runtime/pluginmanager/pluginregistry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/pluginmanager/pluginregistry.go -------------------------------------------------------------------------------- /runtime/plugins/plugins.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/plugins/plugins.go -------------------------------------------------------------------------------- /runtime/protos/messages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/protos/messages.proto -------------------------------------------------------------------------------- /runtime/secrets/kubernetes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/secrets/kubernetes.go -------------------------------------------------------------------------------- /runtime/secrets/localsecrets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/secrets/localsecrets.go -------------------------------------------------------------------------------- /runtime/secrets/secrets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/secrets/secrets.go -------------------------------------------------------------------------------- /runtime/sentryutils/sentry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/sentryutils/sentry.go -------------------------------------------------------------------------------- /runtime/services/services.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/services/services.go -------------------------------------------------------------------------------- /runtime/sqlclient/mysql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/sqlclient/mysql.go -------------------------------------------------------------------------------- /runtime/sqlclient/postgresql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/sqlclient/postgresql.go -------------------------------------------------------------------------------- /runtime/sqlclient/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/sqlclient/registry.go -------------------------------------------------------------------------------- /runtime/sqlclient/sqlclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/sqlclient/sqlclient.go -------------------------------------------------------------------------------- /runtime/sqlclient/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/sqlclient/types.go -------------------------------------------------------------------------------- /runtime/storage/awsstorage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/storage/awsstorage.go -------------------------------------------------------------------------------- /runtime/storage/localstorage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/storage/localstorage.go -------------------------------------------------------------------------------- /runtime/storage/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/storage/storage.go -------------------------------------------------------------------------------- /runtime/storage/storagemonitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/storage/storagemonitor.go -------------------------------------------------------------------------------- /runtime/testutils/testutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/testutils/testutils.go -------------------------------------------------------------------------------- /runtime/timezones/timezones.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/timezones/timezones.go -------------------------------------------------------------------------------- /runtime/timezones/tzdata_other.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/timezones/tzdata_other.go -------------------------------------------------------------------------------- /runtime/timezones/tzdata_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/timezones/tzdata_windows.go -------------------------------------------------------------------------------- /runtime/tools/local/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/tools/local/docker-compose.yml -------------------------------------------------------------------------------- /runtime/utils/buffers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/utils/buffers.go -------------------------------------------------------------------------------- /runtime/utils/buffers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/utils/buffers_test.go -------------------------------------------------------------------------------- /runtime/utils/cast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/utils/cast.go -------------------------------------------------------------------------------- /runtime/utils/cast_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/utils/cast_test.go -------------------------------------------------------------------------------- /runtime/utils/cleaner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/utils/cleaner.go -------------------------------------------------------------------------------- /runtime/utils/cleaner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/utils/cleaner_test.go -------------------------------------------------------------------------------- /runtime/utils/console.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/utils/console.go -------------------------------------------------------------------------------- /runtime/utils/console_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/utils/console_test.go -------------------------------------------------------------------------------- /runtime/utils/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/utils/context.go -------------------------------------------------------------------------------- /runtime/utils/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/utils/errors.go -------------------------------------------------------------------------------- /runtime/utils/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/utils/http.go -------------------------------------------------------------------------------- /runtime/utils/http_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/utils/http_test.go -------------------------------------------------------------------------------- /runtime/utils/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/utils/json.go -------------------------------------------------------------------------------- /runtime/utils/maps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/utils/maps.go -------------------------------------------------------------------------------- /runtime/utils/mapstructure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/utils/mapstructure.go -------------------------------------------------------------------------------- /runtime/utils/pointers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/utils/pointers.go -------------------------------------------------------------------------------- /runtime/utils/slices.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/utils/slices.go -------------------------------------------------------------------------------- /runtime/utils/strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/utils/strings.go -------------------------------------------------------------------------------- /runtime/utils/strings_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/utils/strings_test.go -------------------------------------------------------------------------------- /runtime/utils/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/utils/time.go -------------------------------------------------------------------------------- /runtime/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/utils/utils.go -------------------------------------------------------------------------------- /runtime/utils/wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/utils/wasm.go -------------------------------------------------------------------------------- /runtime/wasmhost/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/wasmhost/env.go -------------------------------------------------------------------------------- /runtime/wasmhost/fncall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/wasmhost/fncall.go -------------------------------------------------------------------------------- /runtime/wasmhost/hostfns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/wasmhost/hostfns.go -------------------------------------------------------------------------------- /runtime/wasmhost/initialization.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/wasmhost/initialization.go -------------------------------------------------------------------------------- /runtime/wasmhost/wasmhost.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/runtime/wasmhost/wasmhost.go -------------------------------------------------------------------------------- /sdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/README.md -------------------------------------------------------------------------------- /sdk/assemblyscript/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore logs generated by as-test 2 | logs/ 3 | -------------------------------------------------------------------------------- /sdk/assemblyscript/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/CHANGELOG.md -------------------------------------------------------------------------------- /sdk/assemblyscript/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/LICENSE -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/agents/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/agents/.gitignore -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/agents/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["assemblyscript-prettier"] 3 | } 4 | -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/agents/asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/agents/asconfig.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/agents/assembly/counterAgent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/agents/assembly/counterAgent.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/agents/assembly/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/agents/assembly/index.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/agents/assembly/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/agents/assembly/tsconfig.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/agents/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/agents/eslint.config.js -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/agents/modus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/agents/modus.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/agents/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/agents/package-lock.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/agents/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/agents/package.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/anthropic-functions/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["assemblyscript-prettier"] 3 | } 4 | -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/anthropic-functions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/anthropic-functions/README.md -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/anthropic-functions/modus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/anthropic-functions/modus.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/auth/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["assemblyscript-prettier"] 3 | } 4 | -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/auth/README.md -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/auth/asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/auth/asconfig.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/auth/assembly/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/auth/assembly/index.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/auth/assembly/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/auth/assembly/tsconfig.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/auth/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/auth/eslint.config.js -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/auth/modus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/auth/modus.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/auth/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/auth/package-lock.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/auth/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/auth/package.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/classification/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["assemblyscript-prettier"] 3 | } 4 | -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/classification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/classification/README.md -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/classification/asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/classification/asconfig.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/classification/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/classification/eslint.config.js -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/classification/modus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/classification/modus.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/classification/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/classification/package.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/dgraph/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["assemblyscript-prettier"] 3 | } 4 | -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/dgraph/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/dgraph/README.md -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/dgraph/asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/dgraph/asconfig.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/dgraph/assembly/classes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/dgraph/assembly/classes.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/dgraph/assembly/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/dgraph/assembly/index.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/dgraph/assembly/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/dgraph/assembly/tsconfig.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/dgraph/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/dgraph/eslint.config.js -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/dgraph/modus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/dgraph/modus.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/dgraph/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/dgraph/package-lock.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/dgraph/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/dgraph/package.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/embedding/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["assemblyscript-prettier"] 3 | } 4 | -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/embedding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/embedding/README.md -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/embedding/asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/embedding/asconfig.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/embedding/assembly/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/embedding/assembly/index.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/embedding/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/embedding/eslint.config.js -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/embedding/modus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/embedding/modus.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/embedding/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/embedding/package-lock.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/embedding/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/embedding/package.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/graphql/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["assemblyscript-prettier"] 3 | } 4 | -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/graphql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/graphql/README.md -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/graphql/asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/graphql/asconfig.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/graphql/assembly/classes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/graphql/assembly/classes.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/graphql/assembly/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/graphql/assembly/index.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/graphql/assembly/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/graphql/assembly/tsconfig.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/graphql/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/graphql/eslint.config.js -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/graphql/modus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/graphql/modus.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/graphql/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/graphql/package-lock.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/graphql/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/graphql/package.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/http/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["assemblyscript-prettier"] 3 | } 4 | -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/http/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/http/README.md -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/http/asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/http/asconfig.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/http/assembly/classes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/http/assembly/classes.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/http/assembly/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/http/assembly/index.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/http/assembly/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/http/assembly/tsconfig.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/http/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/http/eslint.config.js -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/http/modus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/http/modus.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/http/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/http/package-lock.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/http/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/http/package.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/mysql/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["assemblyscript-prettier"] 3 | } 4 | -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/mysql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/mysql/README.md -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/mysql/asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/mysql/asconfig.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/mysql/assembly/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/mysql/assembly/index.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/mysql/assembly/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/mysql/assembly/tsconfig.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/mysql/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/mysql/eslint.config.js -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/mysql/extras/dbschema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/mysql/extras/dbschema.sql -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/mysql/modus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/mysql/modus.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/mysql/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/mysql/package-lock.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/mysql/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/mysql/package.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/neo4j/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["assemblyscript-prettier"] 3 | } 4 | -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/neo4j/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/neo4j/README.md -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/neo4j/asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/neo4j/asconfig.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/neo4j/assembly/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/neo4j/assembly/index.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/neo4j/assembly/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/neo4j/assembly/tsconfig.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/neo4j/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/neo4j/eslint.config.js -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/neo4j/modus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/neo4j/modus.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/neo4j/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/neo4j/package-lock.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/neo4j/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/neo4j/package.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/postgresql/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["assemblyscript-prettier"] 3 | } 4 | -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/postgresql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/postgresql/README.md -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/postgresql/asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/postgresql/asconfig.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/postgresql/assembly/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/postgresql/assembly/index.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/postgresql/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/postgresql/eslint.config.js -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/postgresql/extras/dbschema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/postgresql/extras/dbschema.sql -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/postgresql/modus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/postgresql/modus.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/postgresql/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/postgresql/package-lock.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/postgresql/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/postgresql/package.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/secrets/.gitignore: -------------------------------------------------------------------------------- 1 | .modusdb/ 2 | -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/secrets/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["assemblyscript-prettier"] 3 | } 4 | -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/secrets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/secrets/README.md -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/secrets/asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/secrets/asconfig.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/secrets/assembly/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/secrets/assembly/index.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/secrets/assembly/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/secrets/assembly/tsconfig.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/secrets/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/secrets/eslint.config.js -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/secrets/modus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/secrets/modus.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/secrets/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/secrets/package-lock.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/secrets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/secrets/package.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/simple/.gitignore: -------------------------------------------------------------------------------- 1 | .modusdb/ 2 | -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/simple/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["assemblyscript-prettier"] 3 | } 4 | -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/simple/README.md -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/simple/asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/simple/asconfig.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/simple/assembly/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/simple/assembly/index.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/simple/assembly/person.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/simple/assembly/person.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/simple/assembly/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/simple/assembly/tsconfig.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/simple/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/simple/eslint.config.js -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/simple/modus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/simple/modus.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/simple/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/simple/package-lock.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/simple/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/simple/package.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/textgeneration/.gitignore: -------------------------------------------------------------------------------- 1 | .modusdb/ 2 | -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/textgeneration/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["assemblyscript-prettier"] 3 | } 4 | -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/textgeneration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/textgeneration/README.md -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/textgeneration/asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/textgeneration/asconfig.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/textgeneration/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/textgeneration/eslint.config.js -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/textgeneration/modus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/textgeneration/modus.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/textgeneration/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/textgeneration/package.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/time/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["assemblyscript-prettier"] 3 | } 4 | -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/time/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/time/README.md -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/time/asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/time/asconfig.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/time/assembly/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/time/assembly/index.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/time/assembly/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/time/assembly/tsconfig.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/time/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/time/eslint.config.js -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/time/modus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/time/modus.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/time/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/time/package-lock.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/time/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/time/package.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/vectors/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["assemblyscript-prettier"] 3 | } 4 | -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/vectors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/vectors/README.md -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/vectors/asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/vectors/asconfig.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/vectors/assembly/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/vectors/assembly/index.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/vectors/assembly/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/vectors/assembly/tsconfig.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/vectors/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/vectors/eslint.config.js -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/vectors/modus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/vectors/modus.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/vectors/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/vectors/package-lock.json -------------------------------------------------------------------------------- /sdk/assemblyscript/examples/vectors/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/examples/vectors/package.json -------------------------------------------------------------------------------- /sdk/assemblyscript/scripts/build-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/scripts/build-all.sh -------------------------------------------------------------------------------- /sdk/assemblyscript/scripts/install-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/scripts/install-all.sh -------------------------------------------------------------------------------- /sdk/assemblyscript/scripts/prepare-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/scripts/prepare-release.sh -------------------------------------------------------------------------------- /sdk/assemblyscript/scripts/upgrade-deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/scripts/upgrade-deps.sh -------------------------------------------------------------------------------- /sdk/assemblyscript/sdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/sdk.json -------------------------------------------------------------------------------- /sdk/assemblyscript/src/.prettierignore: -------------------------------------------------------------------------------- 1 | transform/lib/ 2 | -------------------------------------------------------------------------------- /sdk/assemblyscript/src/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["assemblyscript-prettier"] 3 | } 4 | -------------------------------------------------------------------------------- /sdk/assemblyscript/src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/LICENSE -------------------------------------------------------------------------------- /sdk/assemblyscript/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/README.md -------------------------------------------------------------------------------- /sdk/assemblyscript/src/as-test.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/as-test.config.json -------------------------------------------------------------------------------- /sdk/assemblyscript/src/asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/asconfig.json -------------------------------------------------------------------------------- /sdk/assemblyscript/src/assembly/__tests__/agent.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/assembly/__tests__/agent.spec.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/src/assembly/__tests__/database.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/assembly/__tests__/database.spec.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/src/assembly/__tests__/graphql.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/assembly/__tests__/graphql.spec.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/src/assembly/__tests__/http.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/assembly/__tests__/http.spec.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/src/assembly/__tests__/neo4j.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/assembly/__tests__/neo4j.spec.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/src/assembly/__tests__/openai.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/assembly/__tests__/openai.spec.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/src/assembly/__tests__/src/taskagent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/assembly/__tests__/src/taskagent.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/src/assembly/__tests__/vectors.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/assembly/__tests__/vectors.spec.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/src/assembly/agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/assembly/agent.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/src/assembly/agents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/assembly/agents.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/src/assembly/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/assembly/auth.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/src/assembly/database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/assembly/database.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/src/assembly/dgraph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/assembly/dgraph.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/src/assembly/dynamicmap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/assembly/dynamicmap.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/src/assembly/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/assembly/enums.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/src/assembly/exports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/assembly/exports.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/src/assembly/graphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/assembly/graphql.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/src/assembly/http.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/assembly/http.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/src/assembly/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/assembly/index.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/src/assembly/localtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/assembly/localtime.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/src/assembly/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/assembly/models.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/src/assembly/mysql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/assembly/mysql.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/src/assembly/neo4j.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/assembly/neo4j.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/src/assembly/overrides/modus_abort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/assembly/overrides/modus_abort.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/src/assembly/overrides/modus_console.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/assembly/overrides/modus_console.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/src/assembly/overrides/modus_trace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/assembly/overrides/modus_trace.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/src/assembly/postgresql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/assembly/postgresql.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/src/assembly/secrets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/assembly/secrets.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/src/assembly/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/assembly/tsconfig.json -------------------------------------------------------------------------------- /sdk/assemblyscript/src/assembly/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/assembly/utils.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/src/assembly/vectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/assembly/vectors.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/src/bin/build-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/bin/build-plugin.js -------------------------------------------------------------------------------- /sdk/assemblyscript/src/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/eslint.config.js -------------------------------------------------------------------------------- /sdk/assemblyscript/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/index.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/src/models/anthropic/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/models/anthropic/messages.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/src/models/experimental/embeddings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/models/experimental/embeddings.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/src/models/gemini/generate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/models/gemini/generate.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/src/models/meta/llama.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/models/meta/llama.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/src/models/openai/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/models/openai/chat.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/src/models/openai/embeddings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/models/openai/embeddings.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/src/models/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/models/tsconfig.json -------------------------------------------------------------------------------- /sdk/assemblyscript/src/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/package-lock.json -------------------------------------------------------------------------------- /sdk/assemblyscript/src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/package.json -------------------------------------------------------------------------------- /sdk/assemblyscript/src/plugin.asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/plugin.asconfig.json -------------------------------------------------------------------------------- /sdk/assemblyscript/src/tests/agent.run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/tests/agent.run.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/src/tests/database.run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/tests/database.run.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/src/tests/dynamicmap.run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/tests/dynamicmap.run.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/src/tests/graphql.run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/tests/graphql.run.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/src/tests/http.run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/tests/http.run.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/src/tests/neo4j.run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/tests/neo4j.run.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/src/tests/openai.run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/tests/openai.run.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/src/tests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/tests/tsconfig.json -------------------------------------------------------------------------------- /sdk/assemblyscript/src/tests/vectors.run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/tests/vectors.run.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/src/tools/assemblyscript-eslint-local.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/tools/assemblyscript-eslint-local.js -------------------------------------------------------------------------------- /sdk/assemblyscript/src/tools/assemblyscript-eslint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/tools/assemblyscript-eslint.js -------------------------------------------------------------------------------- /sdk/assemblyscript/src/transform/.gitignore: -------------------------------------------------------------------------------- 1 | lib/ 2 | -------------------------------------------------------------------------------- /sdk/assemblyscript/src/transform/.npmignore: -------------------------------------------------------------------------------- 1 | src/ 2 | -------------------------------------------------------------------------------- /sdk/assemblyscript/src/transform/src/extractor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/transform/src/extractor.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/src/transform/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/transform/src/index.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/src/transform/src/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/transform/src/metadata.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/src/transform/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/transform/src/types.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/src/transform/tests/docs.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/transform/tests/docs.test.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/src/transform/tests/metadata.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/transform/tests/metadata.test.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/src/transform/tests/types.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/transform/tests/types.test.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/src/transform/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/src/transform/tsconfig.json -------------------------------------------------------------------------------- /sdk/assemblyscript/templates/default/.env.dev.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/templates/default/.env.dev.local -------------------------------------------------------------------------------- /sdk/assemblyscript/templates/default/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/templates/default/.gitignore -------------------------------------------------------------------------------- /sdk/assemblyscript/templates/default/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["assemblyscript-prettier"] 3 | } 4 | -------------------------------------------------------------------------------- /sdk/assemblyscript/templates/default/asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/templates/default/asconfig.json -------------------------------------------------------------------------------- /sdk/assemblyscript/templates/default/assembly/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/templates/default/assembly/index.ts -------------------------------------------------------------------------------- /sdk/assemblyscript/templates/default/assembly/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/templates/default/assembly/tsconfig.json -------------------------------------------------------------------------------- /sdk/assemblyscript/templates/default/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/templates/default/eslint.config.js -------------------------------------------------------------------------------- /sdk/assemblyscript/templates/default/modus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/templates/default/modus.json -------------------------------------------------------------------------------- /sdk/assemblyscript/templates/default/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/templates/default/package-lock.json -------------------------------------------------------------------------------- /sdk/assemblyscript/templates/default/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/assemblyscript/templates/default/package.json -------------------------------------------------------------------------------- /sdk/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/LICENSE -------------------------------------------------------------------------------- /sdk/go/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/doc.go -------------------------------------------------------------------------------- /sdk/go/examples/agents/.gitignore: -------------------------------------------------------------------------------- 1 | .modusdb/ 2 | .postgres/ 3 | -------------------------------------------------------------------------------- /sdk/go/examples/agents/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/agents/build.cmd -------------------------------------------------------------------------------- /sdk/go/examples/agents/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/agents/build.sh -------------------------------------------------------------------------------- /sdk/go/examples/agents/counterAgent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/agents/counterAgent.go -------------------------------------------------------------------------------- /sdk/go/examples/agents/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/agents/go.mod -------------------------------------------------------------------------------- /sdk/go/examples/agents/go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdk/go/examples/agents/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/agents/main.go -------------------------------------------------------------------------------- /sdk/go/examples/agents/modus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/agents/modus.json -------------------------------------------------------------------------------- /sdk/go/examples/anthropic-functions/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/anthropic-functions/build.cmd -------------------------------------------------------------------------------- /sdk/go/examples/anthropic-functions/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/anthropic-functions/build.sh -------------------------------------------------------------------------------- /sdk/go/examples/anthropic-functions/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/anthropic-functions/go.mod -------------------------------------------------------------------------------- /sdk/go/examples/anthropic-functions/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/anthropic-functions/go.sum -------------------------------------------------------------------------------- /sdk/go/examples/anthropic-functions/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/anthropic-functions/main.go -------------------------------------------------------------------------------- /sdk/go/examples/anthropic-functions/modus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/anthropic-functions/modus.json -------------------------------------------------------------------------------- /sdk/go/examples/auth/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/auth/build.cmd -------------------------------------------------------------------------------- /sdk/go/examples/auth/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/auth/build.sh -------------------------------------------------------------------------------- /sdk/go/examples/auth/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/auth/go.mod -------------------------------------------------------------------------------- /sdk/go/examples/auth/go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdk/go/examples/auth/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/auth/main.go -------------------------------------------------------------------------------- /sdk/go/examples/auth/modus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/auth/modus.json -------------------------------------------------------------------------------- /sdk/go/examples/classification/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/classification/build.cmd -------------------------------------------------------------------------------- /sdk/go/examples/classification/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/classification/build.sh -------------------------------------------------------------------------------- /sdk/go/examples/classification/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/classification/go.mod -------------------------------------------------------------------------------- /sdk/go/examples/classification/go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdk/go/examples/classification/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/classification/main.go -------------------------------------------------------------------------------- /sdk/go/examples/classification/modus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/classification/modus.json -------------------------------------------------------------------------------- /sdk/go/examples/dgraph/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/dgraph/build.cmd -------------------------------------------------------------------------------- /sdk/go/examples/dgraph/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/dgraph/build.sh -------------------------------------------------------------------------------- /sdk/go/examples/dgraph/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/dgraph/go.mod -------------------------------------------------------------------------------- /sdk/go/examples/dgraph/go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdk/go/examples/dgraph/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/dgraph/main.go -------------------------------------------------------------------------------- /sdk/go/examples/dgraph/modus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/dgraph/modus.json -------------------------------------------------------------------------------- /sdk/go/examples/dgraph/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/dgraph/types.go -------------------------------------------------------------------------------- /sdk/go/examples/embedding/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/embedding/build.cmd -------------------------------------------------------------------------------- /sdk/go/examples/embedding/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/embedding/build.sh -------------------------------------------------------------------------------- /sdk/go/examples/embedding/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/embedding/go.mod -------------------------------------------------------------------------------- /sdk/go/examples/embedding/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/embedding/go.sum -------------------------------------------------------------------------------- /sdk/go/examples/embedding/minilm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/embedding/minilm.go -------------------------------------------------------------------------------- /sdk/go/examples/embedding/modus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/embedding/modus.json -------------------------------------------------------------------------------- /sdk/go/examples/embedding/openai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/embedding/openai.go -------------------------------------------------------------------------------- /sdk/go/examples/graphql/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/graphql/build.cmd -------------------------------------------------------------------------------- /sdk/go/examples/graphql/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/graphql/build.sh -------------------------------------------------------------------------------- /sdk/go/examples/graphql/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/graphql/go.mod -------------------------------------------------------------------------------- /sdk/go/examples/graphql/go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdk/go/examples/graphql/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/graphql/main.go -------------------------------------------------------------------------------- /sdk/go/examples/graphql/modus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/graphql/modus.json -------------------------------------------------------------------------------- /sdk/go/examples/graphql/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/graphql/types.go -------------------------------------------------------------------------------- /sdk/go/examples/http/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/http/build.cmd -------------------------------------------------------------------------------- /sdk/go/examples/http/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/http/build.sh -------------------------------------------------------------------------------- /sdk/go/examples/http/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/http/go.mod -------------------------------------------------------------------------------- /sdk/go/examples/http/go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdk/go/examples/http/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/http/main.go -------------------------------------------------------------------------------- /sdk/go/examples/http/modus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/http/modus.json -------------------------------------------------------------------------------- /sdk/go/examples/http/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/http/types.go -------------------------------------------------------------------------------- /sdk/go/examples/mysql/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/mysql/build.cmd -------------------------------------------------------------------------------- /sdk/go/examples/mysql/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/mysql/build.sh -------------------------------------------------------------------------------- /sdk/go/examples/mysql/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/mysql/go.mod -------------------------------------------------------------------------------- /sdk/go/examples/mysql/go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdk/go/examples/mysql/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/mysql/main.go -------------------------------------------------------------------------------- /sdk/go/examples/mysql/modus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/mysql/modus.json -------------------------------------------------------------------------------- /sdk/go/examples/neo4j/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/neo4j/build.cmd -------------------------------------------------------------------------------- /sdk/go/examples/neo4j/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/neo4j/build.sh -------------------------------------------------------------------------------- /sdk/go/examples/neo4j/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/neo4j/go.mod -------------------------------------------------------------------------------- /sdk/go/examples/neo4j/go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdk/go/examples/neo4j/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/neo4j/main.go -------------------------------------------------------------------------------- /sdk/go/examples/neo4j/modus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/neo4j/modus.json -------------------------------------------------------------------------------- /sdk/go/examples/postgresql/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/postgresql/build.cmd -------------------------------------------------------------------------------- /sdk/go/examples/postgresql/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/postgresql/build.sh -------------------------------------------------------------------------------- /sdk/go/examples/postgresql/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/postgresql/go.mod -------------------------------------------------------------------------------- /sdk/go/examples/postgresql/go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdk/go/examples/postgresql/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/postgresql/main.go -------------------------------------------------------------------------------- /sdk/go/examples/postgresql/modus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/postgresql/modus.json -------------------------------------------------------------------------------- /sdk/go/examples/secrets/.gitignore: -------------------------------------------------------------------------------- 1 | .modusdb/ 2 | -------------------------------------------------------------------------------- /sdk/go/examples/secrets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/secrets/README.md -------------------------------------------------------------------------------- /sdk/go/examples/secrets/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/secrets/build.cmd -------------------------------------------------------------------------------- /sdk/go/examples/secrets/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/secrets/build.sh -------------------------------------------------------------------------------- /sdk/go/examples/secrets/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/secrets/go.mod -------------------------------------------------------------------------------- /sdk/go/examples/secrets/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/secrets/main.go -------------------------------------------------------------------------------- /sdk/go/examples/secrets/modus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/secrets/modus.json -------------------------------------------------------------------------------- /sdk/go/examples/secrets/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/secrets/setup.sh -------------------------------------------------------------------------------- /sdk/go/examples/secrets/teardown.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/secrets/teardown.sh -------------------------------------------------------------------------------- /sdk/go/examples/simple/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/simple/build.cmd -------------------------------------------------------------------------------- /sdk/go/examples/simple/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/simple/build.sh -------------------------------------------------------------------------------- /sdk/go/examples/simple/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/simple/go.mod -------------------------------------------------------------------------------- /sdk/go/examples/simple/go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdk/go/examples/simple/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/simple/main.go -------------------------------------------------------------------------------- /sdk/go/examples/simple/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/simple/main_test.go -------------------------------------------------------------------------------- /sdk/go/examples/simple/modus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/simple/modus.json -------------------------------------------------------------------------------- /sdk/go/examples/textgeneration/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/textgeneration/build.cmd -------------------------------------------------------------------------------- /sdk/go/examples/textgeneration/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/textgeneration/build.sh -------------------------------------------------------------------------------- /sdk/go/examples/textgeneration/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/textgeneration/go.mod -------------------------------------------------------------------------------- /sdk/go/examples/textgeneration/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/textgeneration/go.sum -------------------------------------------------------------------------------- /sdk/go/examples/textgeneration/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/textgeneration/main.go -------------------------------------------------------------------------------- /sdk/go/examples/textgeneration/media.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/textgeneration/media.go -------------------------------------------------------------------------------- /sdk/go/examples/textgeneration/modus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/textgeneration/modus.json -------------------------------------------------------------------------------- /sdk/go/examples/textgeneration/products.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/textgeneration/products.go -------------------------------------------------------------------------------- /sdk/go/examples/textgeneration/simple.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/textgeneration/simple.go -------------------------------------------------------------------------------- /sdk/go/examples/textgeneration/toolcalling.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/textgeneration/toolcalling.go -------------------------------------------------------------------------------- /sdk/go/examples/time/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/time/build.cmd -------------------------------------------------------------------------------- /sdk/go/examples/time/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/time/build.sh -------------------------------------------------------------------------------- /sdk/go/examples/time/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/time/go.mod -------------------------------------------------------------------------------- /sdk/go/examples/time/go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdk/go/examples/time/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/time/main.go -------------------------------------------------------------------------------- /sdk/go/examples/time/modus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/time/modus.json -------------------------------------------------------------------------------- /sdk/go/examples/vectors/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/vectors/build.cmd -------------------------------------------------------------------------------- /sdk/go/examples/vectors/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/vectors/build.sh -------------------------------------------------------------------------------- /sdk/go/examples/vectors/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/vectors/go.mod -------------------------------------------------------------------------------- /sdk/go/examples/vectors/go.sum: -------------------------------------------------------------------------------- 1 | golang.org/x/exp v0.0.0-20250819193227-8b4c13bb791b h1:DXr+pvt3nC887026GRP39Ej11UATqWDmWuS99x26cD0= 2 | -------------------------------------------------------------------------------- /sdk/go/examples/vectors/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/vectors/main.go -------------------------------------------------------------------------------- /sdk/go/examples/vectors/modus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/examples/vectors/modus.json -------------------------------------------------------------------------------- /sdk/go/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/go.mod -------------------------------------------------------------------------------- /sdk/go/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/go.sum -------------------------------------------------------------------------------- /sdk/go/pkg/agents/agents.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/agents/agents.go -------------------------------------------------------------------------------- /sdk/go/pkg/agents/imports_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/agents/imports_mock.go -------------------------------------------------------------------------------- /sdk/go/pkg/agents/imports_wasi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/agents/imports_wasi.go -------------------------------------------------------------------------------- /sdk/go/pkg/auth/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/auth/jwt.go -------------------------------------------------------------------------------- /sdk/go/pkg/console/console.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/console/console.go -------------------------------------------------------------------------------- /sdk/go/pkg/console/console_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/console/console_test.go -------------------------------------------------------------------------------- /sdk/go/pkg/console/imports_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/console/imports_mock.go -------------------------------------------------------------------------------- /sdk/go/pkg/console/imports_wasi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/console/imports_wasi.go -------------------------------------------------------------------------------- /sdk/go/pkg/console/timers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/console/timers.go -------------------------------------------------------------------------------- /sdk/go/pkg/db/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/db/db.go -------------------------------------------------------------------------------- /sdk/go/pkg/db/db_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/db/db_test.go -------------------------------------------------------------------------------- /sdk/go/pkg/db/imports_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/db/imports_mock.go -------------------------------------------------------------------------------- /sdk/go/pkg/db/imports_wasi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/db/imports_wasi.go -------------------------------------------------------------------------------- /sdk/go/pkg/db/location.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/db/location.go -------------------------------------------------------------------------------- /sdk/go/pkg/db/location_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/db/location_test.go -------------------------------------------------------------------------------- /sdk/go/pkg/db/point.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/db/point.go -------------------------------------------------------------------------------- /sdk/go/pkg/db/point_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/db/point_test.go -------------------------------------------------------------------------------- /sdk/go/pkg/dgraph/dgraph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/dgraph/dgraph.go -------------------------------------------------------------------------------- /sdk/go/pkg/dgraph/dgraph_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/dgraph/dgraph_test.go -------------------------------------------------------------------------------- /sdk/go/pkg/dgraph/imports_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/dgraph/imports_mock.go -------------------------------------------------------------------------------- /sdk/go/pkg/dgraph/imports_wasi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/dgraph/imports_wasi.go -------------------------------------------------------------------------------- /sdk/go/pkg/graphql/graphql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/graphql/graphql.go -------------------------------------------------------------------------------- /sdk/go/pkg/graphql/graphql_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/graphql/graphql_test.go -------------------------------------------------------------------------------- /sdk/go/pkg/graphql/imports_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/graphql/imports_mock.go -------------------------------------------------------------------------------- /sdk/go/pkg/graphql/imports_wasi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/graphql/imports_wasi.go -------------------------------------------------------------------------------- /sdk/go/pkg/http/content.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/http/content.go -------------------------------------------------------------------------------- /sdk/go/pkg/http/headers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/http/headers.go -------------------------------------------------------------------------------- /sdk/go/pkg/http/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/http/http.go -------------------------------------------------------------------------------- /sdk/go/pkg/http/http_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/http/http_test.go -------------------------------------------------------------------------------- /sdk/go/pkg/http/imports_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/http/imports_mock.go -------------------------------------------------------------------------------- /sdk/go/pkg/http/imports_wasi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/http/imports_wasi.go -------------------------------------------------------------------------------- /sdk/go/pkg/http/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/http/request.go -------------------------------------------------------------------------------- /sdk/go/pkg/http/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/http/response.go -------------------------------------------------------------------------------- /sdk/go/pkg/localtime/imports_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/localtime/imports_mock.go -------------------------------------------------------------------------------- /sdk/go/pkg/localtime/imports_wasi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/localtime/imports_wasi.go -------------------------------------------------------------------------------- /sdk/go/pkg/localtime/localtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/localtime/localtime.go -------------------------------------------------------------------------------- /sdk/go/pkg/models/anthropic/messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/models/anthropic/messages.go -------------------------------------------------------------------------------- /sdk/go/pkg/models/experimental/classification.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/models/experimental/classification.go -------------------------------------------------------------------------------- /sdk/go/pkg/models/experimental/embeddings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/models/experimental/embeddings.go -------------------------------------------------------------------------------- /sdk/go/pkg/models/imports_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/models/imports_mock.go -------------------------------------------------------------------------------- /sdk/go/pkg/models/imports_wasi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/models/imports_wasi.go -------------------------------------------------------------------------------- /sdk/go/pkg/models/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/models/models.go -------------------------------------------------------------------------------- /sdk/go/pkg/models/models_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/models/models_test.go -------------------------------------------------------------------------------- /sdk/go/pkg/models/openai/chat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/models/openai/chat.go -------------------------------------------------------------------------------- /sdk/go/pkg/models/openai/chat_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/models/openai/chat_test.go -------------------------------------------------------------------------------- /sdk/go/pkg/models/openai/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/models/openai/common.go -------------------------------------------------------------------------------- /sdk/go/pkg/models/openai/embeddings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/models/openai/embeddings.go -------------------------------------------------------------------------------- /sdk/go/pkg/mysql/mysql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/mysql/mysql.go -------------------------------------------------------------------------------- /sdk/go/pkg/neo4j/imports_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/neo4j/imports_mock.go -------------------------------------------------------------------------------- /sdk/go/pkg/neo4j/imports_wasi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/neo4j/imports_wasi.go -------------------------------------------------------------------------------- /sdk/go/pkg/neo4j/neo4j.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/neo4j/neo4j.go -------------------------------------------------------------------------------- /sdk/go/pkg/neo4j/neo4j_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/neo4j/neo4j_test.go -------------------------------------------------------------------------------- /sdk/go/pkg/postgresql/postgresql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/postgresql/postgresql.go -------------------------------------------------------------------------------- /sdk/go/pkg/secrets/imports_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/secrets/imports_mock.go -------------------------------------------------------------------------------- /sdk/go/pkg/secrets/imports_wasi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/secrets/imports_wasi.go -------------------------------------------------------------------------------- /sdk/go/pkg/secrets/secrets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/secrets/secrets.go -------------------------------------------------------------------------------- /sdk/go/pkg/testutils/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/testutils/stack.go -------------------------------------------------------------------------------- /sdk/go/pkg/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/utils/utils.go -------------------------------------------------------------------------------- /sdk/go/pkg/vectors/vectors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/vectors/vectors.go -------------------------------------------------------------------------------- /sdk/go/pkg/vectors/vectors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/pkg/vectors/vectors_test.go -------------------------------------------------------------------------------- /sdk/go/scripts/prepare-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/scripts/prepare-release.sh -------------------------------------------------------------------------------- /sdk/go/scripts/update-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/scripts/update-all.sh -------------------------------------------------------------------------------- /sdk/go/sdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/sdk.json -------------------------------------------------------------------------------- /sdk/go/templates/default/.env.dev.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/templates/default/.env.dev.local -------------------------------------------------------------------------------- /sdk/go/templates/default/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/templates/default/.gitignore -------------------------------------------------------------------------------- /sdk/go/templates/default/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/templates/default/go.mod -------------------------------------------------------------------------------- /sdk/go/templates/default/go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdk/go/templates/default/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/templates/default/main.go -------------------------------------------------------------------------------- /sdk/go/templates/default/modus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/templates/default/modus.json -------------------------------------------------------------------------------- /sdk/go/tools/modus-go-build/.gitignore: -------------------------------------------------------------------------------- 1 | modus-go-build 2 | -------------------------------------------------------------------------------- /sdk/go/tools/modus-go-build/codegen/codegen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/tools/modus-go-build/codegen/codegen.go -------------------------------------------------------------------------------- /sdk/go/tools/modus-go-build/codegen/postprocess.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/tools/modus-go-build/codegen/postprocess.go -------------------------------------------------------------------------------- /sdk/go/tools/modus-go-build/codegen/preprocess.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/tools/modus-go-build/codegen/preprocess.go -------------------------------------------------------------------------------- /sdk/go/tools/modus-go-build/compiler/compiler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/tools/modus-go-build/compiler/compiler.go -------------------------------------------------------------------------------- /sdk/go/tools/modus-go-build/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/tools/modus-go-build/config/config.go -------------------------------------------------------------------------------- /sdk/go/tools/modus-go-build/extractor/extractor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/tools/modus-go-build/extractor/extractor.go -------------------------------------------------------------------------------- /sdk/go/tools/modus-go-build/extractor/functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/tools/modus-go-build/extractor/functions.go -------------------------------------------------------------------------------- /sdk/go/tools/modus-go-build/extractor/packages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/tools/modus-go-build/extractor/packages.go -------------------------------------------------------------------------------- /sdk/go/tools/modus-go-build/extractor/transform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/tools/modus-go-build/extractor/transform.go -------------------------------------------------------------------------------- /sdk/go/tools/modus-go-build/gitinfo/gitinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/tools/modus-go-build/gitinfo/gitinfo.go -------------------------------------------------------------------------------- /sdk/go/tools/modus-go-build/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/tools/modus-go-build/main.go -------------------------------------------------------------------------------- /sdk/go/tools/modus-go-build/metadata/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/tools/modus-go-build/metadata/metadata.go -------------------------------------------------------------------------------- /sdk/go/tools/modus-go-build/metagen/metagen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/tools/modus-go-build/metagen/metagen.go -------------------------------------------------------------------------------- /sdk/go/tools/modus-go-build/metagen/output.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/tools/modus-go-build/metagen/output.go -------------------------------------------------------------------------------- /sdk/go/tools/modus-go-build/modinfo/modinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/tools/modus-go-build/modinfo/modinfo.go -------------------------------------------------------------------------------- /sdk/go/tools/modus-go-build/utils/typeinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/tools/modus-go-build/utils/typeinfo.go -------------------------------------------------------------------------------- /sdk/go/tools/modus-go-build/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/tools/modus-go-build/utils/utils.go -------------------------------------------------------------------------------- /sdk/go/tools/modus-go-build/wasm/filters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/tools/modus-go-build/wasm/filters.go -------------------------------------------------------------------------------- /sdk/go/tools/modus-go-build/wasm/wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/sdk/go/tools/modus-go-build/wasm/wasm.go -------------------------------------------------------------------------------- /tools/modus-dbmigrate/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/tools/modus-dbmigrate/.gitignore -------------------------------------------------------------------------------- /tools/modus-dbmigrate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/tools/modus-dbmigrate/README.md -------------------------------------------------------------------------------- /tools/modus-dbmigrate/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/tools/modus-dbmigrate/go.mod -------------------------------------------------------------------------------- /tools/modus-dbmigrate/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/tools/modus-dbmigrate/go.sum -------------------------------------------------------------------------------- /tools/modus-dbmigrate/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/tools/modus-dbmigrate/main.go -------------------------------------------------------------------------------- /tools/modus-dbmigrate/migrations/000001_init_inference_history.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS "inferences"; 2 | -------------------------------------------------------------------------------- /tools/modus-dbmigrate/migrations/000004_add_collection_labels.down.sql: -------------------------------------------------------------------------------- 1 | BEGIN; 2 | 3 | ALTER TABLE collection_texts DROP COLUMN labels; 4 | 5 | COMMIT; 6 | -------------------------------------------------------------------------------- /tools/modus-dbmigrate/migrations/000004_add_collection_labels.up.sql: -------------------------------------------------------------------------------- 1 | BEGIN; 2 | 3 | ALTER TABLE collection_texts ADD COLUMN labels TEXT[]; 4 | 5 | COMMIT; 6 | -------------------------------------------------------------------------------- /tools/modus-dbmigrate/migrations/000005_add_tenancy.down.sql: -------------------------------------------------------------------------------- 1 | BEGIN; 2 | 3 | ALTER TABLE collection_texts DROP COLUMN IF EXISTS namespace; 4 | 5 | COMMIT; 6 | -------------------------------------------------------------------------------- /tools/modus-dbmigrate/migrations/000005_add_tenancy.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/tools/modus-dbmigrate/migrations/000005_add_tenancy.up.sql -------------------------------------------------------------------------------- /tools/modus-dbmigrate/migrations/000006_add_started_at_index.down.sql: -------------------------------------------------------------------------------- 1 | BEGIN; 2 | 3 | DROP INDEX IF EXISTS idx_started_at_desc; 4 | 5 | COMMIT; 6 | -------------------------------------------------------------------------------- /tools/modus-dbmigrate/migrations/000007_add_agent_state.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS "agents"; 2 | -------------------------------------------------------------------------------- /tools/modus-keygen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/tools/modus-keygen/.gitignore -------------------------------------------------------------------------------- /tools/modus-keygen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/tools/modus-keygen/README.md -------------------------------------------------------------------------------- /tools/modus-keygen/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/tools/modus-keygen/go.mod -------------------------------------------------------------------------------- /tools/modus-keygen/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/tools/modus-keygen/go.sum -------------------------------------------------------------------------------- /tools/modus-keygen/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/tools/modus-keygen/main.go -------------------------------------------------------------------------------- /tools/release-info/.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | modus-*.json 3 | -------------------------------------------------------------------------------- /tools/release-info/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/tools/release-info/.prettierrc -------------------------------------------------------------------------------- /tools/release-info/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/tools/release-info/constants.ts -------------------------------------------------------------------------------- /tools/release-info/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/tools/release-info/eslint.config.js -------------------------------------------------------------------------------- /tools/release-info/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/tools/release-info/index.ts -------------------------------------------------------------------------------- /tools/release-info/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/tools/release-info/package-lock.json -------------------------------------------------------------------------------- /tools/release-info/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/tools/release-info/package.json -------------------------------------------------------------------------------- /tools/release-info/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/tools/release-info/tsconfig.json -------------------------------------------------------------------------------- /tools/release-info/versioninfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypermodeinc/modus/HEAD/tools/release-info/versioninfo.ts --------------------------------------------------------------------------------