Add return types to *.pyi stubs (#880)

* Start generating return types

* Finish tensor type hinting

* Add `save_gguf` to `utils`

* Typehint `quant-llama.py`
This commit is contained in:
Lukas Kreussel
2023-09-17 23:11:01 +02:00
committed by GitHub
parent c2b866172a
commit 03e194123d
9 changed files with 611 additions and 197 deletions

View File

@ -1 +1,5 @@
from .candle import *
from .candle import *
__doc__ = candle.__doc__
if hasattr(candle, "__all__"):
__all__ = candle.__all__