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
2 changes: 1 addition & 1 deletion content/docs/ai/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ AI in ObjectStack is a **cross-protocol capability layer**: agents, tools, and k
- **Knowledge & RAG → the Knowledge Protocol + adapter plugins** (`knowledge-memory`, `knowledge-ragflow`, `embedder-openai`) — permission-aware retrieval over your own objects.
- **Agents, tools, skills → typed metadata** (`defineAgent` / `defineTool` / `defineSkill`) plus the Model Registry. Author them as source (`*.agent.ts`, `*.tool.ts`, …) with your own AI coding agent (Claude Code, Cursor), aided by the ObjectStack [skills](/docs/ai/skills-reference) and MCP introspection.

The **cloud / Enterprise** tier adds an in-product chat *runtime* on top of these same primitives — the `ask` data-query assistant, the `build` Studio authoring assistant, and the `/api/v1/ai/*` chat endpoints (`@objectstack/service-ai`, cloud [ADR-0025](https://github.com/objectstack-ai/cloud/blob/main/docs/adr/0025-service-ai-to-cloud-open-mcp-only.md)). The open edition has no built-in in-product chat.
The **cloud / Enterprise** tier adds an in-product chat *runtime* on top of these same primitives — the `ask` data-query assistant, the `build` Studio authoring assistant, and the `/api/v1/ai/*` chat endpoints (`@objectstack/service-ai`, cloud [ADR-0025](https://github.com/objectstack-ai/cloud/blob/main/docs/adr/0025-service-ai-to-cloud-open-mcp-only.md)). The open edition has no built-in in-product chat — that runtime is documented in the [cloud AI & Agents docs](https://docs.objectos.app/docs/ai).
</Callout>

## What's in this module
Expand Down
3 changes: 2 additions & 1 deletion content/docs/ai/natural-language-queries.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ AI runtime (`@objectstack/service-ai`, closed) — the `ask` data-query assistan
and the `/api/v1/ai/*` chat endpoints — that registers these same data tools,
plus the group-by/roll-up `aggregate_data` tool, into its own chat loop. That
package is not part of the open framework and is documented separately in the
cloud docs; this page covers the open path only. On the open edition, use
[cloud docs](https://docs.objectos.app/docs/ai); this page covers the open path
only. On the open edition, use
`@objectstack/mcp` above to get the same natural-language querying with your
own AI.
</Callout>
Expand Down