You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 19, 2025. It is now read-only.
I would like to execute generate_text function with Resolvable object, so that I can pass non default dataset, like this
// Name of the table for storing the resultletoutput_table={name: "execution_result",schema: "non_default_dataset",};// Execute the pipelinebqml.generate_text(output_table,keys,model,(ctx)=>`SELECT *, ${prompt_template} AS prompt FROM (${source_table_func(ctx)})`,{flatten_json_output: true});
Could you add support for the output_table parameter to accept a Resolvable object?