fix: fix PredefinedPipeline.CHAT_WITH_WEBSITE template (#8401)

* fix pipeline template

* reno

* update to gpt-4o-mini
This commit is contained in:
Stefano Fiorucci 2024-09-25 10:06:30 +02:00 committed by GitHub
parent ef60016d79
commit 2cc76beacd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 10 additions and 5 deletions

View File

@ -1,8 +1,8 @@
components:
converter:
init_parameters:
extractor_type: DefaultExtractor
type: haystack.components.converters.html.HTMLToDocument
init_parameters:
extraction_kwargs: null
fetcher:
init_parameters:
@ -22,7 +22,7 @@ components:
strict: true
type: env_var
generation_kwargs: {}
model: gpt-3.5-turbo
model: gpt-4o-mini
streaming_callback: null
system_prompt: null
type: haystack.components.generators.openai.OpenAIGenerator

View File

@ -7,7 +7,7 @@ components:
env_vars: [ "OPENAI_API_KEY" ]
strict: true
type: "env_var"
model: "gpt-3.5-turbo"
model: "gpt-4o-mini"
type: "haystack.components.generators.openai.OpenAIGenerator"
prompt_builder:

View File

@ -10,7 +10,7 @@ components:
strict: true
type: env_var
generation_kwargs: {}
model: gpt-3.5-turbo
model: gpt-4o-mini
streaming_callback: null
system_prompt: null
type: haystack.components.generators.openai.OpenAIGenerator

View File

@ -0,0 +1,5 @@
---
fixes:
- |
Update the `CHAT_WITH_WEBSITE` Pipeline template to reflect the changes in
the `HTMLToDocument` converter component.