Skip to content

Commit eaebcc2

Browse files
committed
Update hf query input
1 parent 0d8308b commit eaebcc2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ollama_manager/commands/pull.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ def handle_hugging_face(payload: list[str]):
208208
@click.command(name="pull")
209209
@click.option(
210210
"--hugging_face",
211-
"--hf",
211+
"-hf",
212212
help="Pull models from Hugging Face",
213213
type=bool,
214214
default=False,
@@ -231,7 +231,7 @@ def pull_model(hugging_face: bool, query: str, limit: int):
231231
session = get_session()
232232
if hugging_face:
233233
if not query:
234-
query = input("Enter the model query for hugging face: ")
234+
query = input("🤗 hf search: ")
235235
models = list_hugging_face_models(session, limit, query)
236236
else:
237237
models = list_remote_models(session)

0 commit comments

Comments
 (0)