Skip to content

Commit ccaaa17

Browse files
committed
[fix] info message
1 parent 603c6df commit ccaaa17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def llm_pull(model = 'llama3.1'):
120120
response = pull(model, stream=True)
121121
for chunk in response:
122122
if chunk.completed and chunk.total:
123-
print(f'Pulling {model} - {chunk.status} - {math.floor((chunk.completed / chunk.total) * 100)}% completed')
123+
print(f'Please wait .... {model} - {chunk.status} - {math.floor((chunk.completed / chunk.total) * 100)}% completed')
124124
else:
125125
print(f'Pulling {model} - {chunk.status}')
126126

0 commit comments

Comments
 (0)