Keep checkpoints aligned with PromptKit profiles
This commit is contained in:
@@ -53,3 +53,14 @@ func (c *scheduledClient) LLMProfileManifests() []artifacts.LLMProfileManifest {
|
||||
}
|
||||
return provider.LLMProfileManifests()
|
||||
}
|
||||
|
||||
func (c *scheduledClient) LLMCheckpointFingerprints() ([]CheckpointFingerprint, error) {
|
||||
if c == nil || c.client == nil {
|
||||
return nil, nil
|
||||
}
|
||||
provider, ok := c.client.(CheckpointFingerprintProvider)
|
||||
if !ok {
|
||||
return nil, nil
|
||||
}
|
||||
return provider.LLMCheckpointFingerprints()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user