Revise the protos and TaskStoreExecutor to account for the fact that we need to
invoke Create Call to actually trigger execution.
CreateValue just embeds computations representing python functions but it
doesn't invoke them
To invoke them we need to call create_call
Get rid of the oneoff of request protos; instead have a TaskInput message
that contains Values representing the i) computation and ii) the value
to be passed to the computation if any.
TaskHandler can handle a task by delegating the work the TFEagerExecutor
This PR doesn't include the code to poll the TaskStore for tasks and update tasks with the results
Related to https://github.com/bytetoko/tff-sheets/issues/11
Revise the protos and TaskStoreExecutor to account for the fact that we need to invoke Create Call to actually trigger execution.
CreateValue just embeds computations representing python functions but it doesn't invoke them
To invoke them we need to call create_call
Get rid of the oneoff of request protos; instead have a TaskInput message that contains Values representing the i) computation and ii) the value to be passed to the computation if any.
Cleanup the code using python formatter
Expand the readme README.