Tobias Gårdhus

Results 20 comments of Tobias Gårdhus
trafficstars

Super weird, but it seems that a reboot has fixed the pop up errors.

It happens independently of model (tried with openai gpt4 and mixtral 8x7b), and seems to be a CSS issue I would guess. ![image](https://github.com/janhq/jan/assets/46934916/1e4d89a0-9976-4aff-acba-cca58ff511e9) This div seems to be the cause?

All looks good for me on version 0.4.4 as well, thanks for the fix!

For browsing tags I created a small userscript that let's you filter the long list of tags: ```javascript // ==UserScript== // @name OllamaFilter // @match *://ollama.com/library/*/tags // @version 1.0 //...

What happened to this brilliant idea? :eyes:

Yeah sorry! Well the goal would be to visualize temporal/dynamic changes over time, by dropping/adding nodes/edges.

I cannot make rotating my screen work either. I'm running the latest Raspberry Pi OS Lite on a raspberry pi 3B+ and tried the follow configurations in `/boot/config.txt` ``` dtoverlay=vc4-kms-dpi-hyperpixel4,rotate=90...

I'm having same problem currently getting warnings since I have set up my .env in another way.

Adding the following suppressions to my import statements "solved" it. ```python import logging import warnings logging.disable(logging.CRITICAL) with warnings.catch_warnings(action="ignore"): from litellm import completion ```