Skip to content

Latest commit

 

History

History
46 lines (32 loc) · 1.09 KB

File metadata and controls

46 lines (32 loc) · 1.09 KB

Project: /docs/reference/js/_project.yaml Book: /docs/reference/_book.yaml page_type: reference

{% comment %} DO NOT EDIT THIS FILE! This is generated by the JS SDK team, and any local changes will be overwritten. Changes should be made in the source code at https://github.com/firebase/firebase-js-sdk {% endcomment %}

CodeExecutionResult interface

The results of code execution run by the model.

Signature:

export interface CodeExecutionResult 

Properties

Property Type Description
outcome Outcome The result of the code execution.
output string The output from the code execution, or an error message if it failed.

CodeExecutionResult.outcome

The result of the code execution.

Signature:

outcome?: Outcome;

CodeExecutionResult.output

The output from the code execution, or an error message if it failed.

Signature:

output?: string;