Class CustomCodeExecutionSpec

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
      public abstract class CustomCodeExecutionSpec.Builder

      Builder for CustomCodeExecutionSpec.

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      abstract Optional<String> evaluationFunction() A string representing a user-defined function for evaluation.
      static CustomCodeExecutionSpec.Builder builder() Instantiates a builder for CustomCodeExecutionSpec.
      abstract CustomCodeExecutionSpec.Builder toBuilder() Creates a builder with the same values as this instance.
      static CustomCodeExecutionSpec fromJson(String jsonString) Deserializes a JSON string to a CustomCodeExecutionSpec object.
      • Methods inherited from class com.google.genai.JsonSerializable

        fromJsonNode, fromJsonString, objectMapper, setMaxReadLength, stringToJsonNode, toJson, toJsonNode, toJsonString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • CustomCodeExecutionSpec

        CustomCodeExecutionSpec()
    • Method Detail

      • evaluationFunction

         abstract Optional<String> evaluationFunction()

        A string representing a user-defined function for evaluation. Expected user to define the following function, e.g.: def evaluate(instance: dict[str, Any]) -> float: Please include this function signature in the code snippet. Instance is the evaluation instance, any fields populated in the instance are available to the function as instance[field_name].