Compare commits

...

3 Commits

Author SHA1 Message Date
Brandon Hancock (bhancock_ai)
a78f1f6ff5 Merge branch 'main' into fix/embedder-doc 2025-03-20 13:08:16 -04:00
Lorenze Jay
21265aeab4 Merge branch 'main' of github.com:crewAIInc/crewAI into fix/embedder-doc 2025-03-07 15:31:10 -08:00
Lorenze Jay
70e656b5a9 docs: Update JSONSearchTool and RagTool configuration parameter from 'embedder' to 'embedding_model' 2025-03-07 15:30:33 -08:00
2 changed files with 10 additions and 8 deletions

View File

@@ -7,8 +7,10 @@ icon: file-code
# `JSONSearchTool`
<Note>
The JSONSearchTool is currently in an experimental phase. This means the tool is under active development, and users might encounter unexpected behavior or changes.
We highly encourage feedback on any issues or suggestions for improvements.
The JSONSearchTool is currently in an experimental phase. This means the tool
is under active development, and users might encounter unexpected behavior or
changes. We highly encourage feedback on any issues or suggestions for
improvements.
</Note>
## Description
@@ -60,7 +62,7 @@ tool = JSONSearchTool(
# stream=true,
},
},
"embedder": {
"embedding_model": {
"provider": "google", # or openai, ollama, ...
"config": {
"model": "models/embedding-001",

View File

@@ -138,7 +138,7 @@ config = {
"model": "gpt-4",
}
},
"embedder": {
"embedding_model": {
"provider": "openai",
"config": {
"model": "text-embedding-ada-002"