mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-11-26 09:57:24 +03:00
Update Llama2.py
This commit is contained in:
parent
e418c03aa0
commit
802cf1ce21
@ -3,6 +3,7 @@ from __future__ import annotations
|
||||
from aiohttp import ClientSession
|
||||
|
||||
from ..typing import AsyncResult, Messages
|
||||
from ..requests.raise_for_status import raise_for_status
|
||||
from .base_provider import AsyncGeneratorProvider, ProviderModelMixin
|
||||
|
||||
|
||||
@ -67,8 +68,10 @@ class Llama2(AsyncGeneratorProvider, ProviderModelMixin):
|
||||
}
|
||||
started = False
|
||||
async with session.post(f"{cls.url}/api", json=data, proxy=proxy) as response:
|
||||
response.raise_for_status()
|
||||
await raise_for_status(response)
|
||||
async for chunk in response.content.iter_any():
|
||||
if not chunk:
|
||||
continue
|
||||
if not started:
|
||||
chunk = chunk.lstrip()
|
||||
started = True
|
||||
|
Loading…
Reference in New Issue
Block a user