Merge remote-tracking branch 'refs/remotes/origin/dev' into dev

This commit is contained in:
oobabooga 2024-11-18 10:15:36 -08:00
commit d01293861b
11 changed files with 18 additions and 17 deletions

View File

@ -143,21 +143,20 @@ def convert_history(history):
new_history = []
for entry in history:
if isinstance(entry['content'], list):
image_url = None
content = None
for item in entry['content']:
if not isinstance(item, dict):
continue
image_url = None
content = None
if item['type'] == 'image_url' and isinstance(item['image_url'], dict):
image_url = item['image_url']['url']
elif item['type'] == 'text' and isinstance(item['text'], str):
content = item['text']
if image_url:
new_history.append({"image_url": image_url, "role": "user"})
if content:
new_history.append({"content": content, "role": "user"})
if image_url:
new_history.append({"image_url": image_url, "role": "user"})
if content:
new_history.append({"content": content, "role": "user"})
else:
new_history.append(entry)

View File

@ -260,6 +260,8 @@ def download_model_wrapper(repo_id, specific_file, progress=gr.Progress(), retur
yield ("Please enter a model path")
return
repo_id = repo_id.strip()
specific_file = specific_file.strip()
downloader = importlib.import_module("download-model").ModelDownloader()
progress(0.0)

View File

@ -1,4 +1,4 @@
accelerate==1.0.*
accelerate==1.1.*
bitsandbytes==0.44.*
colorama
datasets

View File

@ -1,4 +1,4 @@
accelerate==1.0.*
accelerate==1.1.*
colorama
datasets
einops

View File

@ -1,4 +1,4 @@
accelerate==1.0.*
accelerate==1.1.*
colorama
datasets
einops

View File

@ -1,4 +1,4 @@
accelerate==1.0.*
accelerate==1.1.*
colorama
datasets
einops

View File

@ -1,4 +1,4 @@
accelerate==1.0.*
accelerate==1.1.*
colorama
datasets
einops

View File

@ -1,4 +1,4 @@
accelerate==1.0.*
accelerate==1.1.*
colorama
datasets
einops

View File

@ -1,4 +1,4 @@
accelerate==1.0.*
accelerate==1.1.*
colorama
datasets
einops

View File

@ -1,4 +1,4 @@
accelerate==1.0.*
accelerate==1.1.*
bitsandbytes==0.44.*
colorama
datasets

View File

@ -1,4 +1,4 @@
accelerate==1.0.*
accelerate==1.1.*
colorama
datasets
einops