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 docs/docs/api-overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ OGX implements the OpenAI API and organizes endpoints by stability level. Use an
{ title: 'Files', endpoint: '/v1/files', href: '/docs/api/files', blurb: 'File upload and management' },
{ title: 'Vector IO', endpoint: '/v1/vector_stores', href: '/docs/api/vector-io', blurb: 'Document storage and semantic search' },
{ title: 'Batches', endpoint: '/v1/batches', href: '/docs/api/batches', blurb: 'Offline batch processing' },
{ title: 'Tools', endpoint: '/v1/tools', href: '/docs/api/tools', blurb: 'Tool listing and management' },
{ title: 'Tools', endpoint: '/v1/admin/tools', href: '/docs/api/tools', blurb: 'Tool listing and management' },
{ title: 'Conversations', endpoint: '/v1/conversations', href: '/docs/api/conversations', blurb: 'Conversation state management' },
{ title: 'Prompts', endpoint: '/v1/prompts', href: '/docs/api/prompts', blurb: 'Prompt templates and versioning' },
],
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/building_applications/tools.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import TabItem from '@theme/TabItem';
# Tools

:::note[Tool Configuration Simplified]
Built-in tools (web search, RAG, WolframAlpha) are now auto-registered based on your provider configuration. The `/v1/tools` and `/v1/toolgroups` endpoints are available for tool discovery and management. For MCP servers, use the [Connectors API](/docs/concepts/apis/).
Built-in tools (web search, RAG, WolframAlpha) are now auto-registered based on your provider configuration. The `/v1/admin/tools` and `/v1/toolgroups` endpoints are available for tool discovery and management. For MCP servers, use the [Connectors API](/docs/concepts/apis/).
:::

Tools are functions that can be invoked by an agent to perform tasks. They are organized into tool groups and registered with specific providers. Each tool group represents a collection of related tools from a single provider. They are organized into groups so that state can be externalized: the collection operates on the same state typically.
Expand Down
2 changes: 1 addition & 1 deletion docs/src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ const API_SURFACE = [
]},
{ category: 'Moderation & Tools', endpoints: [
{ label: 'Moderations', path: '/v1/moderations' },
{ label: 'Tools', path: '/v1/tools' },
{ label: 'Tools', path: '/v1/admin/tools' },
{ label: 'Connectors', path: '/v1/connectors' },
]},
];
Expand Down
Loading