File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 95
95
96
96
MINIMAL_TASK : dict [str , Any ] = {
97
97
'id' : 'task-abc' ,
98
- 'context_id ' : 'session-xyz' ,
98
+ 'contextId ' : 'session-xyz' ,
99
99
'status' : {'state' : 'working' },
100
100
'kind' : 'task' ,
101
101
}
102
102
103
103
MINIMAL_CANCELLED_TASK : dict [str , Any ] = {
104
104
'id' : 'task-abc' ,
105
- 'context_id ' : 'session-xyz' ,
105
+ 'contextId ' : 'session-xyz' ,
106
106
'status' : {'state' : 'canceled' },
107
107
'kind' : 'task' ,
108
108
}
Original file line number Diff line number Diff line change 113
113
TEXT_PART_DATA : dict [str , Any ] = {'kind' : 'text' , 'text' : 'Hello' }
114
114
FILE_URI_PART_DATA : dict [str , Any ] = {
115
115
'kind' : 'file' ,
116
- 'file' : {'uri' : 'file:///path/to/file.txt' , 'mime_type ' : 'text/plain' },
116
+ 'file' : {'uri' : 'file:///path/to/file.txt' , 'mimeType ' : 'text/plain' },
117
117
}
118
118
FILE_BYTES_PART_DATA : dict [str , Any ] = {
119
119
'kind' : 'file' ,
You can’t perform that action at this time.
0 commit comments