HackerTrans
トップ新着トレンドコメント過去質問紹介求人

dataversity

no profile record

投稿

Show HN: Run Hugging Face models with a single command

llmpm.co
2 ポイント·投稿者 dataversity·4 か月前·3 コメント

コメント

dataversity
·4 か月前·議論
The goal is to make working with local models easier for developers, especially when experimenting with different models or sharing setups with others.

Would love to hear back from the community
dataversity
·4 か月前·議論
Some of the features llmpm supports today:

• Install and run open-source models (almost all Hugging Face models)

• Package models with projects so environments are reproducible

• Serve models through an OpenAI compatible API

• Built-in chat UI for interacting with running models

• CLI workflow designed for developers

• Model benchmarking and rankings to help choose models Example:

llmpm serve llama3

This exposes an API endpoint similar to:

http://localhost:8080/v1/chat/completions
dataversity
·4 か月前·議論
Hi folks, I’ve been working on llmpm, a CLI tool that makes open-source LLMs installable like packages. The idea came from the frustration of trying to run different models locally. Every model tends to have slightly different instructions, dependencies, or runtimes. I wanted something that worked more like npm or pip, install a model and run it immediately. With llmpm you can do things like:

llmpm install llama3

llmpm run llama3
dataversity
·4 か月前·議論
[dead]
dataversity
·4 か月前·議論
Tried this out this morning. It’s a pretty powerful CLI tool for developers working with open-source LLMs.
dataversity
·4 か月前·議論
Also, is there is way I can invoke the models or is there an API which your tool exposes?
dataversity
·4 か月前·議論
Looks crazy! Thanks for building it, there is indeed a need for a npm or pip like package manager for AI Models.