Skip to content
Open
Show file tree
Hide file tree
Changes from 8 commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
56cbc91
Refactor for multi index in redis
mdciri Feb 5, 2026
a0fe349
Copilot terraform skills
uolter Feb 6, 2026
24ad7a4
[CAI-747] add parser app (#1996)
anemone008 Feb 5, 2026
542cd2c
[CAI-748] Add Puppeteer (#1999)
anemone008 Feb 6, 2026
e779b68
Update scripts to accept structured documents to create a dedicated i…
mdciri Feb 9, 2026
15b8b95
Update github action accordingly to python script
mdciri Feb 9, 2026
f096b08
Update chatbot create index workflow to accept input types
mdciri Feb 9, 2026
062d3b7
Update documents to read structured data into llamaindex documents
mdciri Feb 6, 2026
af6dc9c
Update apps/chatbot-index/src/modules/settings.py
mdciri Feb 10, 2026
7128817
Update apps/chatbot-index/src/modules/documents.py
mdciri Feb 10, 2026
17badb0
Update .github/actions/chatbot/action.yaml
mdciri Feb 10, 2026
f50a388
Fix the input and output types
mdciri Feb 10, 2026
0df9e63
Update structured llamaindex documents id
mdciri Feb 10, 2026
338efd6
Add assertion for the inputs
mdciri Feb 10, 2026
d1a8d4d
Update .changeset/eager-colts-smile.md
mdciri Feb 10, 2026
57d348f
Update apps/chatbot-index/src/modules/create_vector_index.py
mdciri Feb 10, 2026
4b315f0
Update document to safe load jsons
mdciri Feb 10, 2026
01ed416
Merge branch 'CAI-741-refactor-for-new-index' of github.com:pagopa/de…
mdciri Feb 10, 2026
dc9663a
Merge branch 'main' into CAI-741-refactor-for-new-index
mdciri Feb 10, 2026
74d9b35
Update cleaning redis when creating index given an index id
mdciri Feb 10, 2026
8966f99
Update .github/workflows/chatbot_create_index.yaml
mdciri Feb 10, 2026
6025cc3
Sobstitute s3 client with s3 resource
mdciri Feb 10, 2026
7a2232a
Update apps/chatbot-index/src/modules/vector_index.py
mdciri Feb 10, 2026
e2547c5
Update apps/chatbot-index/src/modules/documents.py
mdciri Feb 10, 2026
15187d3
Update apps/chatbot-index/src/modules/codec.py
mdciri Feb 10, 2026
bc02597
Update documents json loads
mdciri Feb 10, 2026
149725b
fix docker compose
batdevis Feb 11, 2026
ac5bd1f
Merge branch 'CAI-741-refactor-for-new-index' of github.com:pagopa/de…
batdevis Feb 11, 2026
4f70244
Add to the github workflow and action the index-id to create as env var
mdciri Feb 11, 2026
c3f2e8b
Merge branch 'CAI-741-refactor-for-new-index' of github.com:pagopa/de…
mdciri Feb 11, 2026
cda13ba
Update class name to be more generic
mdciri Feb 11, 2026
779967b
Update class name to be more generic
mdciri Feb 11, 2026
14e0a75
Merge branch 'main' into CAI-741-refactor-for-new-index
mdciri Feb 11, 2026
873f81e
Update workflow inputs
mdciri Feb 11, 2026
34dbc95
Update create-index service in compose.yaml
mdciri Feb 11, 2026
f3271e0
Update dockerfile and scripts
mdciri Feb 11, 2026
5b91eff
Update codec return
mdciri Feb 11, 2026
6c65f57
fix s3 init on create index
batdevis Feb 11, 2026
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
5 changes: 5 additions & 0 deletions .changeset/cuddly-pumas-cross.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"parser": minor
---

Create parser app
5 changes: 5 additions & 0 deletions .changeset/eager-colts-smile.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"chatbot-index": minor
---

"create index now considers also structured data"
5 changes: 5 additions & 0 deletions .changeset/three-cups-change.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"parser": minor
---

Add Puppeteer to parser app
18 changes: 17 additions & 1 deletion .github/actions/chatbot/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,22 @@ inputs:
description: the name of the chatbot lambda function
required: true
default: ''
static:
description: 'Whether to create vector index using static data'
required: true
default: 'true'
dynamic:
description: 'Whether to create vector index using dynamic data'
required: true
default: 'true'
api:
description: 'Whether to create vector index using api data'
required: true
default: 'true'
structured:
description: 'Whether to create vector index using structured data'
required: true
default: 'false'

runs:
using: "composite"
Expand Down Expand Up @@ -42,4 +58,4 @@ runs:
shell: bash
run: |
cd apps/chatbot-index
PYTHONPATH=. poetry run python src/modules/create_vector_index.py
PYTHONPATH=. poetry run python src/modules/create_vector_index.py ${{ inputs.static == true && ' --static' || '' }} ${{ inputs.dynamic == true && ' --dynamic' || '' }} ${{ inputs.api == true && ' --api' || '' }} ${{ inputs.structured == true && ' --structured' || '' }} --clean-redis
Loading
Loading