Skip to content
Merged
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
3 changes: 3 additions & 0 deletions AgentQnA/retrieval_tool/run_ingest_data.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ port=6007
FILEDIR=${WORKDIR}/GenAIExamples/AgentQnA/example_data/
FILENAME=test_docs_music.jsonl

# AgentQnA ingestion script requires following packages
packages=("requests" "tqdm")

# Check if packages are installed
for package in "${packages[@]}"; do
if pip freeze | grep -q "$package="; then
Expand Down