Skip to content

Commit aa29193

Browse files
danmichaeljonesDan Jones
andauthored
Update to V1 (#73)
* Bump version to V1 * Update docstrings * Update README * Update README badge --------- Co-authored-by: Dan Jones <[email protected]>
1 parent bb32811 commit aa29193

File tree

5 files changed

+630
-551
lines changed

5 files changed

+630
-551
lines changed

README.md

Lines changed: 29 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,38 @@
11
# Weaviate Agents Python Client
22

3-
[![Main Branch](https://github.com/weaviate/weaviate-agents-python-client/actions/workflows/tests.yml/badge.svg?branch=main)](https://github.com/weaviate/weaviate-agents-python-client/actions)
3+
[![Main Branch](https://github.com/weaviate/weaviate-agents-python-client/actions/workflows/main.yaml/badge.svg?branch=main)](https://github.com/weaviate/weaviate-agents-python-client/actions)
44
[![PyPI version](https://badge.fury.io/py/weaviate-agents.svg)](https://badge.fury.io/py/weaviate-agents)
55

6-
> ⚠️ **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.
7-
86
This package is a sub-package to be used in conjunction with the [Weaviate Python Client](https://github.com/weaviate/weaviate-python-client). Rather than installing this package directly, you should install it as an optional extra when installing the Weaviate Python Client.
97

108
```bash
119
pip install weaviate-client[agents]
1210
```
11+
12+
# Query Agent
13+
14+
Query Agent is a Weaviate-native agent that turns natural-language questions into precise database operations, making full use of dynamic filters, cross-collection routing, query optimization, and aggregations. It returns accurate and relevant results with source citations. It replaces manual query construction and ad-hoc logic with runtime, context-aware planning that optimizes and executes queries across user collections.
15+
16+
Query Agent supports two modes:
17+
- Ask mode: for building agentic applications that require conversational interactions and answers backed by data stored in Weaviate. This can be accessed using the `ask()` and `ask_stream()` methods, depending on whether your application needs streaming tokens and progress messages.
18+
- Search mode: for building agentic applications that require high quality information retrieval with strong recall and controlled precision, without the final-answer generation. This can be accessed using the `search()` method.
19+
20+
The `QueryAgent` and `AsyncQueryAgent` clients provide sync and async versions of the same methods.
21+
22+
The Weviate Query Agent is Generally Available. For more information, see the [Weaviate Agents - Query Agent Docs](https://weaviate.io/developers/agents/query).
23+
24+
# Transformation Agent
25+
26+
The Weaviate Transformation Agent is an agentic service designed to augment and transform data using generative models. Use the Transformation Agent to append new properties and/or update existing properties of data on existing objects in Weaviate.
27+
28+
> ⚠️ **Alpha Release**: Weaviate Transformation Agent 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.
29+
30+
For more information, see the [Weaviate Agents - Transformation Agent Docs](https://docs.weaviate.io/agents/transformation).
31+
32+
# Personalization Agent
33+
34+
The Weaviate Personalization Agent is an agentic service designed to return personalized recommendations tailored to each user. The developer would simply provide a user profile with a history of interactions, and the Personalization Agent takes care of all intervening steps to provide a set of personalized recommendations from Weaviate.
35+
36+
> ⚠️ **Alpha Release**: Weaviate Personalization Agent 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.
37+
38+
For more information, see the [Weaviate Agents - Personalization Agent Docs](https://docs.weaviate.io/agents/personalization).

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "weaviate-agents"
3-
version = "0.13.0"
3+
version = "1.0.0"
44
description = "The official sub-package for the Weaviate Agents project."
55
readme = "README.md"
66
requires-python = ">=3.9"

0 commit comments

Comments
 (0)