Skip to content
This repository was archived by the owner on Jul 22, 2025. It is now read-only.

Commit 4ba9167

Browse files
committed
FIX: Custom prefix causing allowed seeded LLMs not to be shown
1 parent d158760 commit 4ba9167

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/configuration/llm_enumerator.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def self.values(allowed_seeded_llms: nil)
5959
if allowed_seeded_llms.is_a?(Array)
6060
values =
6161
values.filter do |value_h|
62-
value_h[:value] > 0 || allowed_seeded_llms.include?("custom:#{value_h[:value]}")
62+
value_h[:value] > 0 || allowed_seeded_llms.include?("#{value_h[:value]}")
6363
end
6464
end
6565

0 commit comments

Comments
 (0)