Skip to content

Commit

Permalink
update links
Browse files Browse the repository at this point in the history
  • Loading branch information
mattjohnsonpint committed Jan 30, 2025
1 parent 00ca158 commit 2e86be2
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 18 deletions.
18 changes: 9 additions & 9 deletions getting-started-with-hyper-commerce.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -119,15 +119,15 @@ In the Hypermode console, you’ll see several key components of your project:
- **[Functions](/modus):** These are serverless functions written in
AssemblyScript (a TypeScript-like language) that are automatically exposed as
GraphQL APIs. Once deployed, you can query these functions within your app.
- **[Collections](/modus/sdk/collections):** Hypermode offers built-in key-value
storage, known as collections, with support for vector embeddings. This allows
you to store and retrieve data efficiently, without requiring a database for
basic use cases.
- **[Models](/modus/sdk/models):** This section represents the AI models defined
for your project. These models handle tasks like embedding text into vectors
for search. Hypermode provides open source shared and dedicated model hosting
for rapid experimentation. You can also connect to your preferred large
language model, including OpenAI, Anthropic, and Gemini.
- **[Collections](/modus/sdk/assemblyscript/collections):** Hypermode offers
built-in key-value storage, known as collections, with support for vector
embeddings. This allows you to store and retrieve data efficiently, without
requiring a database for basic use cases.
- **[Models](/modus/sdk/assemblyscript/models):** This section represents the AI
models defined for your project. These models handle tasks like embedding text
into vectors for search. Hypermode provides open source shared and dedicated
model hosting for rapid experimentation. You can also connect to your
preferred large language model, including OpenAI, Anthropic, and Gemini.
- **[Connections](/modus/app-manifest#connections):** You define all external
connections, with the runtime denying all other egress for secure-by-default
processing.
Expand Down
22 changes: 13 additions & 9 deletions modus/app-manifest.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -131,11 +131,12 @@ where they're securely stored until needed.
### HTTP connection

This connection type supports the HTTP and HTTPS protocols to communicate with
external hosts. You can use the [HTTP APIs](/modus/sdk/http) in the Modus SDK to
interact with the host.
external hosts. You can use the [HTTP APIs](/modus/sdk/assemblyscript/http) in
the Modus SDK to interact with the host.

This connection type is also used for [GraphQL APIs](/modus/sdk/graphql) and to
invoke externally hosted AI [models](/modus/sdk/models).
This connection type is also used for
[GraphQL APIs](/modus/sdk/assemblyscript/graphql) and to invoke externally
hosted AI [models](/modus/sdk/assemblyscript/models).

**Example:**

Expand Down Expand Up @@ -250,7 +251,8 @@ This example specifies a query parameter named `key` provided by a secret named
### Dgraph connection

This connection type supports connecting to Dgraph databases. You can use the
[Dgraph APIs](/modus/sdk/dgraph) in the Modus SDK to interact with the database.
[Dgraph APIs](/modus/sdk/assemblyscript/dgraph) in the Modus SDK to interact
with the database.

**Example:**

Expand Down Expand Up @@ -281,7 +283,8 @@ This connection type supports connecting to Dgraph databases. You can use the
### MySQL connection

This connection type supports connecting to MySQL databases. You can use the
[MySQL APIs](/modus/sdk/mysql) in the Modus SDK to interact with the database.
[MySQL APIs](/modus/sdk/assemblyscript/mysql) in the Modus SDK to interact with
the database.

**Example:**

Expand Down Expand Up @@ -329,7 +332,8 @@ For example, use `tls=true` to enable encryption (not `sslmode=require`).
### Neo4j connection

This connection type supports connecting to Neo4j databases. You can use the
[Neo4j APIs](/modus/sdk/neo4j) in the Modus SDK to interact with the database.
[Neo4j APIs](/modus/sdk/assemblyscript/neo4j) in the Modus SDK to interact with
the database.

**Example:**

Expand Down Expand Up @@ -365,8 +369,8 @@ This connection type supports connecting to Neo4j databases. You can use the
### PostgreSQL connection

This connection type supports connecting to PostgreSQL databases. You can use
the [PostgreSQL APIs](/modus/sdk/postgresql) in the Modus SDK to interact with
the database.
the [PostgreSQL APIs](/modus/sdk/assemblyscript/postgresql) in the Modus SDK to
interact with the database.

**Example:**

Expand Down

0 comments on commit 2e86be2

Please sign in to comment.