Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add modusdb support to modus runtime #477

Closed
wants to merge 27 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,10 @@
"label": "HTTP Client Example",
"value": "http"
},
{
"label": "ModusDB Example",
"value": "modusdb"
},
{
"label": "PostgreSQL Client Example",
"value": "postgresql"
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,7 @@ In previous releases, the name "Hypermode" was used for all three._
- Enable GraphQL endpoints to be defined in the manifest [#464](https://github.com/hypermodeinc/modus/pull/464)
- Publish SDKs and templates via release workflows [#465](https://github.com/hypermodeinc/modus/pull/465)
- Fix AssemblyScript build failure when no Git repo is present [#475](https://github.com/hypermodeinc/modus/pull/475)
- Add ModusDB support to modus runtime [#477](https://github.com/hypermodeinc/modus/pull/477)
- Disable AWS Bedrock support temporarily [#479](https://github.com/hypermodeinc/modus/pull/479)
- Update SDK releases [#480](https://github.com/hypermodeinc/modus/pull/480)
- Add metadata shared library [#482](https://github.com/hypermodeinc/modus/pull/482)
Expand Down
1 change: 1 addition & 0 deletions cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@
"millis",
"minilm",
"modfile",
"modusdb",
"Msgf",
"mydb",
"mydgraph",
Expand Down
1 change: 1 addition & 0 deletions go.work
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ use (
./sdk/go/examples/embedding
./sdk/go/examples/graphql
./sdk/go/examples/http
./sdk/go/examples/modusdb
./sdk/go/examples/postgresql
./sdk/go/examples/simple
./sdk/go/examples/textgeneration
Expand Down
3 changes: 2 additions & 1 deletion runtime/.gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
modus_runtime
runtime

data
internal_data
node_modules
dist
2 changes: 1 addition & 1 deletion runtime/config/commandline.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ func parseCommandLineFlags() {
var showVersion bool
const versionUsage = "Show the Runtime version number and exit."
flag.BoolVar(&showVersion, "version", false, versionUsage)
flag.BoolVar(&showVersion, "v", false, versionUsage+" (shorthand)")
// flag.BoolVar(&showVersion, "v", false, versionUsage+" (shorthand)")

flag.Parse()

Expand Down
Loading
Loading