kumoai.connector.LLMSourceTableFuture#
- class kumoai.connector.LLMSourceTableFuture[source]#
Bases:
SourceTableFutureA representation of an on-going
SourceTablegeneration process for LLM. This class inherits from theSourceTableFuturewith some functions specific to LLM job.- done()#
Returns
Trueif this future has been resolved withresult(), orFalseif this future is still in-progress. Note that this method will returnTrueif the future is complete, but in a failed state, and that this method will returnFalseif the job is complete, but the future has not been awaited.- Return type:
- future()#
Returns the
concurrent.futures.Futureobject wrapped by this future. It is not recommended to access this object directly.- Return type:
Future[SourceTable]