@@ -20,9 +20,6 @@ resources for your functions at runtime. You define the manifest in the
2020 <Card title = " Models" icon = " cube" href = " #models" >
2121 Define inference services for use in your functions
2222 </Card >
23- <Card title = " Collections" icon = " table" href = " #collections" >
24- Define sets of text data to enable natural language search
25- </Card >
2623</CardGroup >
2724
2825### Base manifest
@@ -516,46 +513,3 @@ dedicated instance of the model. Your project's functions securely access the
516513hosted model, with no further configuration required.
517514
518515</Tip >
519-
520- ## Collections
521-
522- Collections simplify the usage of vector embeddings to build natural language
523- search features. The ` collections ` object allows you to define indexed data
524- types that are automatically embedded and searchable based on the search method
525- you define.
526-
527- Each collection requires a unique name, specified as a key, containing only
528- alphanumeric characters and hyphens.
529-
530- For more detail on implementing Collections, see [ Search] ( /modus/search ) .
531-
532- ``` json modus.json
533- {
534- "collections" : {
535- "myProducts" : {
536- "searchMethods" : {
537- "searchMethod" : {
538- "embedder" : " myEmbedder" ,
539- "index" : {
540- "type" : " sequential"
541- }
542- }
543- }
544- }
545- }
546- }
547- ```
548-
549- <ResponseField name = " searchMethods" type = " object" required >
550- Search methods define a pair of an embedder and index to make available for
551- searching the data in your collection.
552- </ResponseField >
553-
554- <ResponseField name = " embedder" type = " string" required >
555- The function name to embed text added to the collection.
556- </ResponseField >
557-
558- <ResponseField name = " index" type = " string" >
559- If provided, describes the index mechanism used by the search method. ` type ` :
560- specifies the type of the index. For example, ` sequential ` (default).
561- </ResponseField >
0 commit comments