We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 603c6df commit ccaaa17Copy full SHA for ccaaa17
client/cli.py
@@ -120,7 +120,7 @@ def llm_pull(model = 'llama3.1'):
120
response = pull(model, stream=True)
121
for chunk in response:
122
if chunk.completed and chunk.total:
123
- print(f'Pulling {model} - {chunk.status} - {math.floor((chunk.completed / chunk.total) * 100)}% completed')
+ print(f'Please wait .... {model} - {chunk.status} - {math.floor((chunk.completed / chunk.total) * 100)}% completed')
124
else:
125
print(f'Pulling {model} - {chunk.status}')
126
0 commit comments