You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: preserve all configuration properties across cloning and deserialization
This ensures deployment behavior, model adaptation capabilities, and training history
are maintained when copying or reloading models.
Updated three methods:
1. WithParameters: Now passes LoRAConfiguration, CrossValidationResult, AgentConfig,
AgentRecommendation, and DeploymentConfiguration to constructor
2. DeepCopy: Same as WithParameters for consistency
3. Deserialize: Now assigns all RAG components (RagRetriever, RagReranker, RagGenerator,
QueryProcessors) and configuration properties (LoRAConfiguration, CrossValidationResult,
AgentConfig, AgentRecommendation, DeploymentConfiguration) from deserialized object
This fixes the issue where deployment/export/runtime settings, LoRA configurations, and
meta-learning properties were lost when calling WithParameters, DeepCopy, or Deserialize.
0 commit comments