Adam Thometz

Results 2 issues of Adam Thometz

Running the `ChatBedrock` model with Cohere's new Command R and Command R+ models will throw a `ValidationException`. When you invoke the following model: ``` llm = ChatBedrock( model_id="cohere.command-r-v1:0", model_kwargs={ "temperature":...

[See original issue for context](https://github.com/bpmn-io/bpmn-js/issues/2210) ### Proposed Changes Change one line of code in `lib/features/rules/BpmnRules.js` in the `canMove` function: ``` - if (!target) + if (target === undefined) ``` ###...