From 452b49aef08bb30d1c97567db7b103089b0c77dd Mon Sep 17 00:00:00 2001 From: David Koski <46639364+davidkoski@users.noreply.github.com> Date: Tue, 19 Mar 2024 08:56:37 -0700 Subject: [PATCH] fixed height for the progress view, produce more tokens (#33) --- Applications/LLMEval/ContentView.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Applications/LLMEval/ContentView.swift b/Applications/LLMEval/ContentView.swift index 40bd418..315708b 100644 --- a/Applications/LLMEval/ContentView.swift +++ b/Applications/LLMEval/ContentView.swift @@ -35,6 +35,7 @@ struct ContentView: View { Spacer() if llm.running { ProgressView() + .frame(maxHeight: 20) Spacer() } Picker("", selection: $selectedDisplayStyle) { @@ -131,7 +132,7 @@ class LLMEvaluator { /// parameters controlling the output let temperature: Float = 0.6 - let maxTokens = 100 + let maxTokens = 240 enum LoadState { case idle