Skip to content
Merged
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
21 changes: 21 additions & 0 deletions docs/cloud/models-overview.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
id: models-overview
title: Available Models
sidebar_label: Available Models
slug: /cloud/models/overview
description: "Explore NEAR AI Cloud model catalog"
---

import { ModelList } from '@site/src/components/ModelList';

NEAR AI Cloud provides access to leading AI models, each optimized for different use cases ranging from advanced reasoning and tool calling to long-context processing and multilingual tasks. All models run in secure TEE environments with transparent, pay-per-use pricing.

## Quick Reference

<ModelList showTable />

---

## Model Details

<ModelList />
11 changes: 11 additions & 0 deletions docs/cloud/quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import TabItem from '@theme/TabItem';
import ModelsIcon from '@site/static/img/icons/ai.svg';
import PrivateInferenceIcon from '@site/static/img/icons/private-inference.svg';
import VerificationIcon from '@site/static/img/icons/verification.svg';
import UnifiedApiIcon from '@site/static/img/icons/unified-api.svg';
import { FeatureCard, FeatureCardGrid } from '@site/src/components/FeatureCard';

# NEAR AI Cloud Quickstart
Expand Down Expand Up @@ -132,6 +133,10 @@ The API will return a JSON response containing the model's completion:

All inference is performed within Trusted Execution Environments (TEEs), ensuring your data remains private and verifiable.

:::tip Using OpenAI SDKs?
For advanced features like streaming, async operations, Files API, and Conversations API, see our comprehensive [OpenAI Compatibility Guide](/cloud/guides/openai-compatibility).
:::

---

## Next Steps
Expand All @@ -155,5 +160,11 @@ All inference is performed within Trusted Execution Environments (TEEs), ensurin
description="Understand how to verify and validate secure interactions with AI models"
href="/cloud/verification"
/>
<FeatureCard
icon={UnifiedApiIcon}
title="OpenAI Compatibility"
description="Use standard OpenAI SDKs with streaming, async, Files API, and more"
href="/cloud/guides/openai-compatibility"
/>
</FeatureCardGrid>

2 changes: 1 addition & 1 deletion docs/cloud/reasoning-models.mdx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
id: reasoning-models
title: Reasoning Models
sidebar_label: Reasoning Models
sidebar_label: Reasoning Models Config
slug: /cloud/reasoning-models
description: "Learn how to enable and disable reasoning capabilities for supported models"
---
Expand Down
17 changes: 5 additions & 12 deletions sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,25 +30,18 @@ const sidebars = {
icon: "/img/icons/quickstart.svg",
},
},
{
type: "doc",
id: "cloud/models",
customProps: {
icon: "/img/icons/ai.svg",
},
},
{
type: "category",
label: "Configuration",
label: "Models",
link: {
type: "doc",
id: "cloud/reasoning-models",
id: "cloud/models-overview",
},
collapsed: false,
collapsed: true,
customProps: {
icon: "/img/icons/docs.svg",
icon: "/img/icons/ai.svg",
},
items: ["cloud/reasoning-models"],
items: ["cloud/models-overview", "cloud/reasoning-models"],
},
{
type: "doc",
Expand Down