mirror of
https://github.com/Hopiu/llm.git
synced 2026-03-16 20:50:25 +00:00
AsyncModel.chain() raises NotImplementedError, closes #1021
This commit is contained in:
parent
89c99df39c
commit
a029e0b70c
1 changed files with 3 additions and 0 deletions
|
|
@ -1358,6 +1358,9 @@ class _AsyncModel(_BaseModel):
|
|||
key=key,
|
||||
)
|
||||
|
||||
def chain(self, *args, **kwargs):
|
||||
raise NotImplementedError("AsyncModel does not yet support tools")
|
||||
|
||||
|
||||
class AsyncModel(_AsyncModel):
|
||||
@abstractmethod
|
||||
|
|
|
|||
Loading…
Reference in a new issue