public Settings()

in experiments/create-search-index/src/Models/Settings.cs [19:34]


    public Settings()
    {
        this.AzureAiVisionKey = string.Empty;
        this.AzureAiVisionEndpoint = string.Empty;
        this.AzureAiVisionEmbeddingsModelVersion = "2024-02-01";
        this.AzureAiVisionEmbeddingsApiVersion = "2023-04-15";
        this.AzureAiSearchKey = string.Empty;
        this.AzureAiSearchEndpoint = string.Empty;
        this.AzureAiSearchIndexName = string.Empty;
        this.DropAndRecreateIndexIfItExists = true;
        this.ExternalSourceType = ExternalSourceType.MET;
        this.ExternalSourceConnectionInfo = string.Empty;
        this.RecordCountToIndex = -1;
        this.ExternalSourceConnectionCosmosDatabase = "met-openaccess-api";
        this.ExternalSourceConnectionCosmosContainer = "objects";
    }