@@ -28,7 +28,7 @@ export class DefaultService {
2828 ...options
2929 } ) ;
3030 }
31-
31+
3232 /**
3333 * Retrieves a collection by Chroma Resource Name.
3434 */
@@ -38,7 +38,7 @@ export class DefaultService {
3838 ...options
3939 } ) ;
4040 }
41-
41+
4242 /**
4343 * Health check endpoint that returns 200 if the server and executor are ready
4444 */
@@ -48,7 +48,7 @@ export class DefaultService {
4848 ...options
4949 } ) ;
5050 }
51-
51+
5252 /**
5353 * Heartbeat endpoint that returns a nanosecond timestamp of the current time.
5454 */
@@ -58,7 +58,7 @@ export class DefaultService {
5858 ...options
5959 } ) ;
6060 }
61-
61+
6262 /**
6363 * Pre-flight checks endpoint reporting basic readiness info.
6464 */
@@ -68,7 +68,7 @@ export class DefaultService {
6868 ...options
6969 } ) ;
7070 }
71-
71+
7272 /**
7373 * Reset endpoint allowing authorized users to reset the database.
7474 */
@@ -78,7 +78,7 @@ export class DefaultService {
7878 ...options
7979 } ) ;
8080 }
81-
81+
8282 /**
8383 * Creates a new tenant.
8484 */
@@ -92,7 +92,7 @@ export class DefaultService {
9292 }
9393 } ) ;
9494 }
95-
95+
9696 /**
9797 * Returns an existing tenant by name.
9898 */
@@ -102,7 +102,7 @@ export class DefaultService {
102102 ...options
103103 } ) ;
104104 }
105-
105+
106106 /**
107107 * Updates an existing tenant by name.
108108 */
@@ -116,7 +116,7 @@ export class DefaultService {
116116 }
117117 } ) ;
118118 }
119-
119+
120120 /**
121121 * Lists all databases for a given tenant.
122122 */
@@ -126,7 +126,7 @@ export class DefaultService {
126126 ...options
127127 } ) ;
128128 }
129-
129+
130130 /**
131131 * Creates a new database for a given tenant.
132132 */
@@ -140,7 +140,7 @@ export class DefaultService {
140140 }
141141 } ) ;
142142 }
143-
143+
144144 /**
145145 * Deletes a specific database.
146146 */
@@ -150,7 +150,7 @@ export class DefaultService {
150150 ...options
151151 } ) ;
152152 }
153-
153+
154154 /**
155155 * Retrieves a specific database by name.
156156 */
@@ -160,7 +160,7 @@ export class DefaultService {
160160 ...options
161161 } ) ;
162162 }
163-
163+
164164 /**
165165 * Lists all collections in the specified database.
166166 */
@@ -170,7 +170,7 @@ export class DefaultService {
170170 ...options
171171 } ) ;
172172 }
173-
173+
174174 /**
175175 * Creates a new collection under the specified database.
176176 */
@@ -184,7 +184,7 @@ export class DefaultService {
184184 }
185185 } ) ;
186186 }
187-
187+
188188 /**
189189 * Deletes a collection in a given database.
190190 */
@@ -194,7 +194,7 @@ export class DefaultService {
194194 ...options
195195 } ) ;
196196 }
197-
197+
198198 /**
199199 * Retrieves a collection by ID or name.
200200 */
@@ -204,7 +204,7 @@ export class DefaultService {
204204 ...options
205205 } ) ;
206206 }
207-
207+
208208 /**
209209 * Updates an existing collection's name or metadata.
210210 */
@@ -218,7 +218,7 @@ export class DefaultService {
218218 }
219219 } ) ;
220220 }
221-
221+
222222 /**
223223 * Adds records to a collection.
224224 */
@@ -232,7 +232,7 @@ export class DefaultService {
232232 }
233233 } ) ;
234234 }
235-
235+
236236 /**
237237 * Retrieves the number of records in a collection.
238238 */
@@ -242,7 +242,7 @@ export class DefaultService {
242242 ...options
243243 } ) ;
244244 }
245-
245+
246246 /**
247247 * Deletes records in a collection. Can filter by IDs or metadata.
248248 */
@@ -256,7 +256,7 @@ export class DefaultService {
256256 }
257257 } ) ;
258258 }
259-
259+
260260 /**
261261 * Forks an existing collection.
262262 */
@@ -270,7 +270,7 @@ export class DefaultService {
270270 }
271271 } ) ;
272272 }
273-
273+
274274 /**
275275 * Retrieves records from a collection by ID or metadata filter.
276276 */
@@ -284,7 +284,7 @@ export class DefaultService {
284284 }
285285 } ) ;
286286 }
287-
287+
288288 /**
289289 * Query a collection in a variety of ways, including vector search, metadata filtering, and full-text search
290290 */
@@ -298,7 +298,7 @@ export class DefaultService {
298298 }
299299 } ) ;
300300 }
301-
301+
302302 /**
303303 * Updates records in a collection by ID.
304304 */
@@ -312,7 +312,7 @@ export class DefaultService {
312312 }
313313 } ) ;
314314 }
315-
315+
316316 /**
317317 * Upserts records in a collection (create if not exists, otherwise update).
318318 */
@@ -326,7 +326,7 @@ export class DefaultService {
326326 }
327327 } ) ;
328328 }
329-
329+
330330 /**
331331 * Retrieves the total number of collections in a given database.
332332 */
@@ -336,7 +336,7 @@ export class DefaultService {
336336 ...options
337337 } ) ;
338338 }
339-
339+
340340 /**
341341 * Returns the version of the server.
342342 */
@@ -346,5 +346,5 @@ export class DefaultService {
346346 ...options
347347 } ) ;
348348 }
349-
350- }
349+
350+ }
0 commit comments