mirror of
				https://github.com/MindWorkAI/AI-Studio.git
				synced 2025-11-04 00:40:20 +00:00 
			
		
		
		
	Renamed embedding infos
This commit is contained in:
		
							parent
							
								
									75705eb976
								
							
						
					
					
						commit
						b4eef64564
					
				@ -92,8 +92,8 @@ public partial class AssistantERI : AssistantBaseCore
 | 
			
		||||
            this.authDescription = this.SettingsManager.ConfigurationData.ERI.PreselectedAuthDescription;
 | 
			
		||||
            this.selectedOperatingSystem = this.SettingsManager.ConfigurationData.ERI.PreselectedOperatingSystem;
 | 
			
		||||
            this.allowedLLMProviders = this.SettingsManager.ConfigurationData.ERI.PreselectedAllowedLLMProviders;
 | 
			
		||||
            this.embeddings = this.SettingsManager.ConfigurationData.ERI.EmbeddingInfos;
 | 
			
		||||
            this.retrievalDescription = this.SettingsManager.ConfigurationData.ERI.PreselectedRetrievalDescription;
 | 
			
		||||
            this.embeddings = this.SettingsManager.ConfigurationData.ERI.PreselectedEmbeddingInfos;
 | 
			
		||||
            this.additionalLibraries = this.SettingsManager.ConfigurationData.ERI.PreselectedAdditionalLibraries;
 | 
			
		||||
            return true;
 | 
			
		||||
        }
 | 
			
		||||
@ -126,8 +126,8 @@ public partial class AssistantERI : AssistantBaseCore
 | 
			
		||||
        this.SettingsManager.ConfigurationData.ERI.PreselectedAuthDescription = this.authDescription;
 | 
			
		||||
        this.SettingsManager.ConfigurationData.ERI.PreselectedOperatingSystem = this.selectedOperatingSystem;
 | 
			
		||||
        this.SettingsManager.ConfigurationData.ERI.PreselectedAllowedLLMProviders = this.allowedLLMProviders;
 | 
			
		||||
        this.SettingsManager.ConfigurationData.ERI.EmbeddingInfos = this.embeddings;
 | 
			
		||||
        this.SettingsManager.ConfigurationData.ERI.PreselectedRetrievalDescription = this.retrievalDescription;
 | 
			
		||||
        this.SettingsManager.ConfigurationData.ERI.PreselectedEmbeddingInfos = this.embeddings;
 | 
			
		||||
        this.SettingsManager.ConfigurationData.ERI.PreselectedAdditionalLibraries = this.additionalLibraries;
 | 
			
		||||
        await this.SettingsManager.StoreSettings();
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
@ -95,7 +95,7 @@ public sealed class DataERI
 | 
			
		||||
    /// <summary>
 | 
			
		||||
    /// Do you want to predefine any embedding information?
 | 
			
		||||
    /// </summary>
 | 
			
		||||
    public List<EmbeddingInfo> EmbeddingInfos { get; set; } = new();
 | 
			
		||||
    public List<EmbeddingInfo> PreselectedEmbeddingInfos { get; set; } = new();
 | 
			
		||||
 | 
			
		||||
    /// <summary>
 | 
			
		||||
    /// Do you want to preselect a retrieval description?
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user