Süleyman Gölbol
Süleyman Gölbol
MyInterface: ```python from typing import Protocol class MyInterface(Protocol): def my_method(self, num: int) -> str: raise NotImplementedError ``` MyImplementation: ```python from myinterface import MyInterface from overrides import override class MyImpl(MyInterface): @override...
Hello, I think it would be good to have something like this: ```python from typing import Protocol from overrides import EnforceOverrides class ILLMPipeline(Protocol, EnforceOverrides): def pipeline_creator(self, llmmodel): raise NotImplementedError ```...
### Describe the bug I jsut tried to install the app on Zorin OS 18 (an OS based on Ubuntu 24.04) But it cannot find the `libwebkit2gtk-4.0-dev`, trying to install...