Skip to content

Commit f5c2649

Browse files
authored
remove alpha warnings (#34)
* remove alpha warnings * fix comment
1 parent 9a2c34e commit f5c2649

File tree

4 files changed

+1
-16
lines changed

4 files changed

+1
-16
lines changed

README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,4 @@
22

33
JS/TS client for Weaviate Agents.
44

5-
<br>
6-
7-
> ⚠️ **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.
8-
95
[Documentation](https://weaviate.io/developers/agents)

src/query/agent.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,6 @@ import { getHeaders } from "./connection.js";
2525

2626
/**
2727
* An agent for executing agentic queries against Weaviate.
28-
*
29-
* Warning:
30-
* Weaviate Agents - Query Agent is an early stage alpha product.
31-
* The API is subject to breaking changes. Please ensure you are using the latest version of the client.
32-
*
3328
* For more information, see the [Weaviate Query Agent Docs](https://weaviate.io/developers/agents/query)
3429
*/
3530
export class QueryAgent {

src/query/collection.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@ export type QueryAgentCollectionConfig = {
3030
viewProperties?: string[];
3131
/** Target vector for the query if a collection uses named vector. */
3232
targetVector?: string | string[];
33-
/** Filters to apply to apply when query is executed, in addition to filters selected by the Query Agent. */
33+
/** Filters to apply when query is executed, in addition to filters selected by the Query Agent. */
3434
additionalFilters?: FilterValue;
3535
};

src/query/search.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,6 @@ import { getHeaders } from "./connection.js";
1717
* This is used internally by the QueryAgent class to run search-mode queries.
1818
* After the first request is made, the underlying searches are cached and can
1919
* be reused for paginating through the a consistent set of results.
20-
*
21-
* Warning:
22-
* Weaviate Agents - Query Agent is an early stage alpha product.
23-
* The API is subject to breaking changes. Please ensure you are using the latest version of the client.
24-
*
25-
* For more information, see the [Weaviate Query Agent Docs](https://weaviate.io/developers/agents/query)
2620
*/
2721
export class QueryAgentSearcher {
2822
private cachedSearches?: ApiSearch[];

0 commit comments

Comments
 (0)