We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e560aa commit b448cc9Copy full SHA for b448cc9
packages/action-parser/src/index.ts
@@ -98,7 +98,7 @@ function parseActionVlm(
98
if (paramName.includes('start_box') || paramName.includes('end_box')) {
99
const oriBox = trimmedParam;
100
// Remove parentheses and split
101
- const numbers = oriBox.replace(/[()]/g, '').split(',');
+ const numbers = oriBox.replace(/[()[\]]/g, '').split(',');
102
103
// Convert to float and scale
104
const floatNumbers = numbers.map(
0 commit comments