haandol

Results 6 comments of haandol

This error has nothing to do with syntax error (and I tried your suggestion too, just in case) because the exact same request payload works in Python ```python client.update_item( TableName=SESSION_TABLE_NAME,...

```javascript const dynamoDb = new AWS.DynamoDB.DocumentClient({region: 'ap-northeast-2'}); const resp = await dynamoDb.scan({ TableName: TABLE_NAME, FilterExpression: 'attribute_exists(Cids)', }).promise(); console.info(`Update ${resp.Count} users`); for (const item of resp.Items || []) { console.info(item.Uid); await...

DocumentClient generated the body goes like this. `{"TableName":"test","Key":{"Uid":{"M":{"S":{"S":"id1"}}}},"UpdateExpression":"DELETE Cids :cameraId","ExpressionAttributeValues":{":cameraId":{"M":{"SS":{"L":[{"S":"cid1"}]}}}}}` DocumentClient wraps 'SS' with 'M' and it occurs the error, `operator: DELETE, operand type: MAP`

same issue here on Ventura 13.5.2.

same here, tool calling does not work on any other model but claude. (and with_structured_output too)