It seems you are giving a tuple as a parameter and the function is expecting key word arguments.
You can try something like the following unpacking the values.
params = {
'0': 'bitcoin',
'1': 115251,
'2': '2025-08-04T18:30:40.926246+00:00',
'3': 'Monday'
}
conn.run(INSERT_SQL, **params)