forked from neo4j-contrib/neo4j-apoc-procedures
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
323 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,110 @@ | ||
package apoc.ml.vectordb; | ||
|
||
public class Chroma { | ||
/* | ||
/api/v1 | ||
Root | ||
POST | ||
/api/v1/reset | ||
Reset | ||
GET | ||
/api/v1/version | ||
Version | ||
GET | ||
/api/v1/heartbeat | ||
Heartbeat | ||
GET | ||
/api/v1/pre-flight-checks | ||
Pre Flight Checks | ||
POST | ||
/api/v1/databases | ||
Create Database | ||
GET | ||
/api/v1/databases/{database} | ||
Get Database | ||
POST | ||
/api/v1/tenants | ||
Create Tenant | ||
GET | ||
/api/v1/tenants/{tenant} | ||
Get Tenant | ||
GET | ||
/api/v1/collections | ||
List Collections | ||
POST | ||
/api/v1/collections | ||
Create Collection | ||
GET | ||
/api/v1/count_collections | ||
Count Collections | ||
POST | ||
/api/v1/collections/{collection_id}/add | ||
Add | ||
POST | ||
/api/v1/collections/{collection_id}/update | ||
Update | ||
POST | ||
/api/v1/collections/{collection_id}/upsert | ||
Upsert | ||
POST | ||
/api/v1/collections/{collection_id}/get | ||
Get | ||
POST | ||
/api/v1/collections/{collection_id}/delete | ||
Delete | ||
GET | ||
/api/v1/collections/{collection_id}/count | ||
Count | ||
POST | ||
/api/v1/collections/{collection_id}/query | ||
Get Nearest Neighbors | ||
GET | ||
/api/v1/collections/{collection_name} | ||
Get Collection | ||
DELETE | ||
/api/v1/collections/{collection_name} | ||
Delete Collection | ||
Parameters | ||
*/ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters