woheller69

Results 418 comments of woheller69

I just tried it, but it looks quite ugly, like a display error. So I will not implement it.

just look at the min values in the week overview...

will again think about it. RH is not available for weekly view from Open-Meteo

I would suggest to add it in CalDAV -> Manage synced calendars. Add a Floating Action Button with a "+" there to add a new calender. Add a context menu...

What about simply allowing to enter negative values?

It works with the following 2 changes: 1.) Fossify Commons library: Add a "-" after "0123456789" in commons/src/main/res/layout/dialog_custom_interval_picker.xml android:id="@+id/dialog_custom_interval_value" android:layout_width="match_parent" android:layout_height="wrap_content" android:digits="0123456789-" android:inputType="number" android:maxLength="5" android:textCursorDrawable="@null" 2.) in EventActivity.kt -> saveEvent()...

And where do I set ``` repeat_last_n=64,```

Or do I have to set these parameters now when defining the model ``` Llama( model_path = self.model_path, n_gpu_layers = 0, f16_kv = True, top_k = 40, top_p = 0.4,...

Thanks, stupid error on my side :-) So I moved the repeat_penalty to Llama(...) and removed the commas. ``` self.main_model = Llama( model_path = self.model_path, n_gpu_layers = 0, f16_kv =...