ther0bster
ther0bster
this issue with the `session_id` error seems related to issue #4025, issue #4229, and issue #4161 pull request #4138 addresses this issue To verify if this resolves your issue, test...
@ticpu Thanks for testing the fix! Just to confirm, did you also compile the project after applying the commits? If you did, could you please check if there are any...
@duggthangs currently, this feature unfortunately does not support `/context`, `/copy-context` or manual copy/paste as this would require more profound architectural changes. I will try to look into it when I...
@sukima this copy/paste without api feature is currently in a working proof of concept state. you can just check out the PR branch and test it: ``` $ cd ~...
@AgarwalPragy thank you for testing the copy-paste implementation and for the feedback! still waiting for any comments from the maintainers.
I'm getting the same error on a esp32 using `embedded-tls`, `defmt`, and `embassy` Here with `defmt` TRACE level logging. ``` ... I (405) boot: Loaded app from partition at offset...
I was able to resolve the issue by decreasing the `embassy-executor` `task-arena-size` in `Cargo.toml` from ```toml embassy-executor = { version = "0.7", features = ["task-arena-size-65536"] } ``` to ```toml embassy-executor...