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 9595
9696MINIMAL_TASK : dict [str , Any ] = {
9797 'id' : 'task-abc' ,
98- 'context_id ' : 'session-xyz' ,
98+ 'contextId ' : 'session-xyz' ,
9999 'status' : {'state' : 'working' },
100100 'kind' : 'task' ,
101101}
102102
103103MINIMAL_CANCELLED_TASK : dict [str , Any ] = {
104104 'id' : 'task-abc' ,
105- 'context_id ' : 'session-xyz' ,
105+ 'contextId ' : 'session-xyz' ,
106106 'status' : {'state' : 'canceled' },
107107 'kind' : 'task' ,
108108}
Original file line number Diff line number Diff line change 113113TEXT_PART_DATA : dict [str , Any ] = {'kind' : 'text' , 'text' : 'Hello' }
114114FILE_URI_PART_DATA : dict [str , Any ] = {
115115 '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' },
117117}
118118FILE_BYTES_PART_DATA : dict [str , Any ] = {
119119 'kind' : 'file' ,
You can’t perform that action at this time.
0 commit comments