Skip to content

Commit 220f10d

Browse files
committed
additional break added
1 parent 4f2e694 commit 220f10d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/MicrosoftAi/AbstractionMapper.cs

+1
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ public static ChatRequest ToOllamaSharpChatRequest(IList<ChatMessage> chatMessag
7373
};
7474

7575
if (!(options?.AdditionalProperties?.Any() ?? false)) return request;
76+
7677
TryAddOllamaOption<bool?>(options, OllamaOption.F16kv, v => request.Options.F16kv = (bool?)v);
7778
TryAddOllamaOption<float?>(options, OllamaOption.FrequencyPenalty, v => request.Options.FrequencyPenalty = (float?)v);
7879
TryAddOllamaOption<bool?>(options, OllamaOption.LogitsAll, v => request.Options.LogitsAll = (bool?)v);

0 commit comments

Comments
 (0)