dominpm

Results 11 comments of dominpm

@cesi08 were you able to come up with a solution for this?

By executing: ```sql ALTER TABLE steps ADD COLUMN "defaultOpen" BOOLEAN NOT NULL DEFAULT FALSE; ``` This error should be fixed. Although the schema for the SQL data layer should be...

It seems it has been chosen not to retrieve (or show) the results as we can see from the comments on this class: ```python class FileSearchToolCall(BaseModel): id: str """The ID...

I am using Context Manager: async with cl.Step(name="X") as step: ... The \_\_aexit\_\_ should have this implemented (also the \_\_enter\_\_): ```python async def __aexit__(self, exc_type, exc_val, exc_tb): self.end = utc_now()...

- #1951 Discusses unintended Markdown rendering when user messages start with `#`.

The DB Schema should be updated to match chainlit's latest version. Meanwhile, as a workaround do `ALTER TABLE steps ADD COLUMN "defaultOpen" BOOLEAN NOT NULL DEFAULT FALSE;`

It is happening in both ways, both dms and adding the app in a griup chat. Is there any more config to add to the chainlit app aside from the...

@willydouhard Is cl.user_session available when chatting through teams? And is there an alternative for `fetch_slack_message_history` for MS Teams?