Skip to content

Commit d13e9ad

Browse files
Adjust wording
1 parent e5a1657 commit d13e9ad

File tree

16 files changed

+31
-31
lines changed

16 files changed

+31
-31
lines changed

modus/sdk/assemblyscript/collections.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { SdkHeader, SdkTip } from "/snippets/sdk-snippets.mdx"
77

88
<SdkHeader language="AssemblyScript" feature="Collections" />
99

10-
The Modus Collection API allows you to add vector search within your functions.
10+
The Modus Collection APIs allow you to add vector search within your functions.
1111

1212
## Import
1313

modus/sdk/assemblyscript/console.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ import { SdkHeader, SdkTip } from "/snippets/sdk-snippets.mdx"
77

88
<SdkHeader language="AssemblyScript" feature="Console" />
99

10-
The Modus Console API allows you to capture information from your functions,
10+
The Modus Console APIs allow you to capture information from your functions,
1111
such as errors and other information that can help you debug your functions.
1212

1313
<Info>
14-
Unlike other APIs, the Console API is globally available by default in all
15-
functions, you don't need to import it.
14+
Unlike other APIs, the Console namespace is globally available by default in
15+
all functions, you don't need to import it.
1616
</Info>
1717

18-
The Console API mimics the behavior of the AssemblyScript
18+
The Console APIs mimic the behavior of the AssemblyScript
1919
[`console`](https://www.assemblyscript.org/stdlib/console.html) object, but
2020
directs the output to Hypermode as follows:
2121

modus/sdk/assemblyscript/dgraph.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { SdkHeader, SdkTip } from "/snippets/sdk-snippets.mdx"
77

88
<SdkHeader language="AssemblyScript" feature="Dgraph" />
99

10-
The Modus Dgraph API allows you to run queries and mutations against a Dgraph
10+
The Modus Dgraph APIs allow you to run queries and mutations against a Dgraph
1111
database.
1212

1313
## Import

modus/sdk/assemblyscript/graphql.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { SdkHeader, SdkTip } from "/snippets/sdk-snippets.mdx"
77

88
<SdkHeader language="AssemblyScript" feature="GraphQL" />
99

10-
The Modus GraphQL API allows you to securely call and fetch data from any
10+
The Modus GraphQL APIs allow you to securely call and fetch data from any
1111
GraphQL endpoint.
1212

1313
## Import

modus/sdk/assemblyscript/http.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { SdkHeader, SdkTip } from "/snippets/sdk-snippets.mdx"
77

88
<SdkHeader language="AssemblyScript" feature="HTTP" />
99

10-
The Modus HTTP API allows you to securely call and fetch data from an HTTP
10+
The Modus HTTP APIs allow you to securely call and fetch data from an HTTP
1111
endpoint. It's similar to the HTTP
1212
[`fetch`](https://developer.mozilla.org/docs/Web/API/Fetch_API) API used in
1313
JavaScript, but with some modifications to work with Hypermode Functions.

modus/sdk/assemblyscript/models.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,20 @@ import { SdkHeader, SdkTip } from "/snippets/sdk-snippets.mdx"
77

88
<SdkHeader language="AssemblyScript" feature="Models" />
99

10-
The Modus Models API allows you to invoke AI models directly from your
10+
The Modus Models APIs allow you to invoke AI models directly from your
1111
functions, irrespective of the model's host.
1212

13-
Since many models have unique interfaces, the design of the Models API is
14-
extremely flexible. A common base class forms the core of the API, which extends
15-
to conform to any model's required schema.
13+
Since many models have unique interfaces, the design of the Models APIs are
14+
extremely flexible. A common base class forms the core of the APIs, which
15+
extends to conform to any model's required schema.
1616

1717
The SDK contains both the base classes and pre-defined implementations for many
1818
commonly used models. You can either use one of the pre-defined classes, or can
1919
create custom classes for any model you like, by extending from the base `Model`
2020
class.
2121

2222
<Tip>
23-
For your reference, several complete examples for using the Models API are available in
23+
For your reference, several complete examples for using the Models APIs are available in
2424
[Model Invoking](/modus/model-invoking).
2525

2626
Each example demonstrates using different types of AI models for different

modus/sdk/assemblyscript/neo4j.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { SdkHeader, SdkTip } from "/snippets/sdk-snippets.mdx"
77

88
<SdkHeader language="AssemblyScript" feature="Neo4j" />
99

10-
The Modus Neo4j API allows you to run queries and mutations against a Neo4j
10+
The Modus Neo4j APIs allow you to run queries and mutations against a Neo4j
1111
database.
1212

1313
## Import

modus/sdk/assemblyscript/postgresql.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description: "Execute queries against a PostgreSQL database"
66
import { SdkHeader, SdkTip } from "/snippets/sdk-snippets.mdx"
77

88
<SdkHeader language="AssemblyScript" feature="PostgreSQL" />
9-
The Modus PostgreSQL API allows you to run queries against PostgreSQL or any
9+
The Modus PostgreSQL APIs allow you to run queries against PostgreSQL or any
1010
PostgreSQL-compatible database platform.
1111

1212
## Import

modus/sdk/go/collections.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { SdkHeader, SdkTip } from "/snippets/sdk-snippets.mdx"
77

88
<SdkHeader language="Go" feature="Collections" />
99

10-
The Modus Collection API allows you to add vector search within your functions.
10+
The Modus Collection APIs allow you to add vector search within your functions.
1111

1212
## Import
1313

modus/sdk/go/console.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ import { SdkHeader, SdkTip } from "/snippets/sdk-snippets.mdx"
77

88
<SdkHeader language="Go" feature="Console" />
99

10-
The Modus Console API allows you to capture information from your functions,
10+
The Modus Console APIs allow you to capture information from your functions,
1111
such as errors and other information that can help you debug your functions.
1212

1313
<Info>
14-
Unlike other APIs, the Console API is globally available by default in all
15-
functions, you don't need to import it.
14+
Unlike other APIs, the Console namespace is globally available by default in
15+
all functions, you don't need to import it.
1616
</Info>
1717

18-
The Console API mimics the behavior of the AssemblyScript
18+
The Console APIs mimic the behavior of the AssemblyScript
1919
[`console`](https://www.assemblyscript.org/stdlib/console.html) object, but
2020
directs the output to Hypermode as follows:
2121

0 commit comments

Comments
 (0)