Hi,
I have a few questions regarding the breaking change in v2.9.4.
Background:
I use the chainlit-datalayer repository .
I noticed that this schema doesn't have a table named steps only Step.
In the Thread table, there is a steps column that references the Step table.
I assumed, that the column rows should be in the "Steps" table, so I added the modes column with type Json? to the "Step" table and created a migration.sql file.
Chainlit runs without an error, but I noticed, that the modes column is always null, even though i implemented and used the modes feature.
Questions:
- Do I really need to have a Steps table? If not, should the command be as follows:
ALTER TABLE "Step" ADD COLUMN IF NOT EXISTS "modes" JSONB;
- Is it normal that modes column is not populated, even though I have created a model selection as in the PR #2734?
Hi,
I have a few questions regarding the breaking change in v2.9.4.
Background:
I use the chainlit-datalayer repository .
I noticed that this schema doesn't have a table named
stepsonlyStep.In the
Threadtable, there is astepscolumn that references theSteptable.I assumed, that the column rows should be in the
"Steps"table, so I added themodescolumn with typeJson?to the"Step"table and created amigration.sqlfile.Chainlit runs without an error, but I noticed, that the
modescolumn is always null, even though i implemented and used the modes feature.Questions:
ALTER TABLE "Step" ADD COLUMN IF NOT EXISTS "modes" JSONB;