diff --git a/README.md b/README.md index c00d17b..d52765c 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,4 @@ JS/TS client for Weaviate Agents. -
- -> ⚠️ **Alpha Release**: Weaviate Agents is currently in alpha and is subject to change. Features may be modified or removed without notice. Please check that you are using the latest version of the package. - [Documentation](https://weaviate.io/developers/agents) diff --git a/src/query/agent.ts b/src/query/agent.ts index e1d70dd..eb5ecc7 100644 --- a/src/query/agent.ts +++ b/src/query/agent.ts @@ -24,11 +24,6 @@ import { getHeaders } from "./connection.js"; /** * An agent for executing agentic queries against Weaviate. - * - * Warning: - * Weaviate Agents - Query Agent is an early stage alpha product. - * The API is subject to breaking changes. Please ensure you are using the latest version of the client. - * * For more information, see the [Weaviate Query Agent Docs](https://weaviate.io/developers/agents/query) */ export class QueryAgent { diff --git a/src/query/collection.ts b/src/query/collection.ts index 3a2984f..e68bea8 100644 --- a/src/query/collection.ts +++ b/src/query/collection.ts @@ -30,6 +30,6 @@ export type QueryAgentCollectionConfig = { viewProperties?: string[]; /** Target vector for the query if a collection uses named vector. */ targetVector?: string | string[]; - /** Filters to apply to apply when query is executed, in addition to filters selected by the Query Agent. */ + /** Filters to apply when query is executed, in addition to filters selected by the Query Agent. */ additionalFilters?: FilterValue; }; diff --git a/src/query/search.ts b/src/query/search.ts index 3f75237..769b505 100644 --- a/src/query/search.ts +++ b/src/query/search.ts @@ -20,12 +20,6 @@ import { getHeaders } from "./connection.js"; * This is used internally by the QueryAgent class to run search-mode queries. * After the first request is made, the underlying searches are cached and can * be reused for paginating through the a consistent set of results. - * - * Warning: - * Weaviate Agents - Query Agent is an early stage alpha product. - * The API is subject to breaking changes. Please ensure you are using the latest version of the client. - * - * For more information, see the [Weaviate Query Agent Docs](https://weaviate.io/developers/agents/query) */ export class QueryAgentSearcher { private cachedSearches?: ApiSearchResult[];