Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion index.toml
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ notebook = "40_Building_Chat_Application_with_Function_Calling.ipynb"
aliases = []
completion_time = "20 min"
created_at = 2024-03-05
dependencies = ["sentence-transformers>=4.1.0", "gradio"]
dependencies = ["sentence-transformers>=4.1.0", "gradio", "pytz"]

[[tutorial]]
title = "Query Classification with TransformersTextRouter and TransformersZeroShotTextRouter"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -733,7 +733,7 @@
"source": [
"%%bash\n",
"\n",
"pip install -U gradio"
"pip install -U gradio pytz"
]
},
{
Expand All @@ -745,7 +745,6 @@
"outputs": [],
"source": [
"import gradio as gr\n",
"import json\n",
"\n",
"from haystack.dataclasses import ChatMessage\n",
"from haystack.components.generators.chat import OpenAIChatGenerator\n",
Expand Down