You can wire the Weaviate node into an AI agent as a tool provider: the agent calls the operations you allow. See Agent tools.
Credentials
Connect Weaviate under Credentials in the node settings. See Connecting credentials for the general flow. Enter the values manually when creating the credential. Get your credentials here.Operations
Objects
| Operation | ID | Description |
|---|---|---|
| Batch Delete Objects | batch_delete | Batch-delete objects matching a where filter (up to 10,000 per call). |
| Delete Object | delete | Delete an object by ID (REST). |
| Get Object | get | Get an object by ID (REST). |
| Insert Object | insert | Insert an object (REST). |
| Update Object | update | Partial update (PATCH /v1/objects/{class}/{id}), merges provided fields. |
| Upload & Index Document | upload_and_index | Upload a document file, chunk + embed it, and batch-insert objects. |
Schema
| Operation | ID | Description |
|---|---|---|
| Create Collection | create_collection | Create a collection (schema class). |
| Delete Collection | delete_collection | Drop a collection and ALL of its objects, permanent. |
| List Collections | list_collections | List collections (schema classes). |
Search
| Operation | ID | Description |
|---|---|---|
| Aggregate | aggregate | Aggregate statistics over a collection (GraphQL Aggregate, count, mean, topOccurrences, etc.). |
| Generative Search (RAG) | generative_search | Generative search (RAG): retrieve objects then generate text with an LLM (GraphQL generate). |
| Hybrid Search | hybrid_search | Hybrid BM25 + vector search (GraphQL hybrid). |
| Query / Search | query | Vector similarity search (GraphQL nearVector). |
| Query by Text | query_text | Semantic search by text (GraphQL nearText, requires the class to have a text2vec vectorizer module). |