@@ -916,6 +916,20 @@ modules:
916
916
# an environment variable
917
917
apiKey : ' '
918
918
919
+ # The text2vec-ollama module uses Ollama Embeddings API
920
+ # to dynamically compute vector embeddings based on the
921
+ # sentence's context.
922
+ # More information about Ollama Embeddings API can be found here:
923
+ # https://github.com/ollama/ollama/blob/main/docs/api.md#generate-embeddings
924
+ # Please note that you have to deploy Ollama container by yourself
925
+ # and then properly point the Ollama endpoint using module settings.
926
+ # More about this configuration can be found here:
927
+ # https://weaviate.io/developers/weaviate/modules/retriever-vectorizer-modules/text2vec-ollama#ollama-endpoint
928
+ text2vec-ollama :
929
+
930
+ # enable if you want to use Ollama module
931
+ enabled : false
932
+
919
933
# The multi2vec-clip modules uses CLIP transformers to vectorize both images
920
934
# and text in the same vector space. It is typically slow(er) on CPUs and should
921
935
# run with CUDA-enabled GPUs for optimal performance.
@@ -1252,6 +1266,18 @@ modules:
1252
1266
# an environment variable
1253
1267
apiKey : ' '
1254
1268
1269
+ # The generative-ollama module uses Ollama Generate API
1270
+ # More information about Ollama's Generate API can be found here:
1271
+ # https://github.com/ollama/ollama/blob/main/docs/api.md#generate-a-completion
1272
+ # Please note that you have to deploy Ollama container by yourself
1273
+ # and then properly point the Ollama endpoint using module settings.
1274
+ # More about this configuration can be found here:
1275
+ # https://weaviate.io/developers/weaviate/modules/reader-generator-modules/generative-ollama#ollama-endpoint
1276
+ generative-ollama :
1277
+
1278
+ # enable if you want to use Ollama module
1279
+ enabled : false
1280
+
1255
1281
# The img2vec-neural module uses neural networks, to generate
1256
1282
# a vector representation of the image
1257
1283
img2vec-neural :
0 commit comments