-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add more LLM providers and their tests, improve docs #170
Conversation
@@ -3,6 +3,9 @@ | |||
from pathlib import Path | |||
import sys | |||
import typing | |||
import enum | |||
|
|||
import numpy |
Check notice
Code scanning / CodeQL
Unused import Note
raise Exception(f'during building type/instantiation {cls!r}') from e | ||
|
||
|
||
from .numpy import try_handle_np |
Check notice
Code scanning / CodeQL
Cyclic import Note
genlayer.py.storage._internal.numpy
@@ -452,3 +409,5 @@ | |||
|
|||
|
|||
_known_descs[datetime.datetime] = _DateTimeDesc() | |||
|
|||
import genlayer.py.storage._internal.numpy |
Check notice
Code scanning / CodeQL
Unused import Note
import sys | ||
import typing | ||
|
||
from .core import * |
Check notice
Code scanning / CodeQL
'import *' may pollute namespace Note
genlayer.py.storage._internal.core
return _imp(cls) | ||
|
||
|
||
from .generate import _known_descs, _Instantiation, LitTuple, LitPy |
Check notice
Code scanning / CodeQL
Cyclic import Note
genlayer.py.storage._internal.generate
from ._internal import ( | ||
decode_sub_vm_result, | ||
decode_sub_vm_result_retn, | ||
lazy_from_fd, | ||
_lazy_api, | ||
) |
Check notice
Code scanning / CodeQL
Unused import Note
|
||
return lazy_from_fd(wasi.sandbox(cloudpickle.dumps(data)), decode) | ||
|
||
return lazy_from_fd(wasi.sandbox(cloudpickle.dumps(fn)), decode_sub_vm_result) |
Check warning
Code scanning / CodeQL
Use of the return value of a procedure Warning
sandbox
b23ab29
to
75a2b34
Compare
75a2b34
to
1553e17
Compare
1553e17
to
7ff9741
Compare
No description provided.