Class CreateFileSearchStoreConfig

java.lang.Object
com.google.genai.JsonSerializable
com.google.genai.types.CreateFileSearchStoreConfig

public abstract class CreateFileSearchStoreConfig extends JsonSerializable
Optional parameters for creating a file search store.
  • Constructor Details

    • CreateFileSearchStoreConfig

      public CreateFileSearchStoreConfig()
  • Method Details

    • httpOptions

      public abstract Optional<HttpOptions> httpOptions()
      Used to override HTTP request options.
    • displayName

      public abstract Optional<String> displayName()
      The human-readable display name for the file search store.
    • embeddingModel

      public abstract Optional<String> embeddingModel()
      The embedding model to use for the FileSearchStore. Format: `models/{model}`. If not specified, the default embedding model will be used.
    • builder

      public static CreateFileSearchStoreConfig.Builder builder()
      Instantiates a builder for CreateFileSearchStoreConfig.
    • toBuilder

      public abstract CreateFileSearchStoreConfig.Builder toBuilder()
      Creates a builder with the same values as this instance.
    • fromJson

      public static CreateFileSearchStoreConfig fromJson(String jsonString)
      Deserializes a JSON string to a CreateFileSearchStoreConfig object.