private _getContributor(model: ModelSelection): IAgentHostPromptCtor | undefined {
for (const ctor of this._promptsWithMatcher) {
return ctor;
}
for (const { prefix, ctor } of this._familyPrefixList) {
if (model.id.startsWith(prefix)) {