Replies: 5 comments 2 replies
-
|
Good call. This would be awesome. |
Beta Was this translation helpful? Give feedback.
-
|
Sounds interesting, So, what is required to be implemented? Get list of the models and update the config provider? |
Beta Was this translation helpful? Give feedback.
-
|
I guess we need to discuss in more detail how this could work. I'm assuming you mean only for local LLMs (like ollama and whatnot)? How do you envision this should work? |
Beta Was this translation helpful? Give feedback.
-
|
I'm looking for any provider that runs locally and has autodiscovery enabled |
Beta Was this translation helpful? Give feedback.
-
|
I've created this PR to what we needed for a while : #3019. it make litellm models automatically loaded to Crush. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
It would be nice to have an autodiscovery of models through the
/modelsAPI endpoint that most providers seem to support.Something that could be configured like that:
{ "$schema": "https://charm.land/crush.json", "providers": { "litellm": { "type": "openai", "base_url": "http://localhost:4000", "name": "LiteLLM", "autodiscover_models": true } }Then when launched it would query
{base_url}/modelsto get the list of models.Beta Was this translation helpful? Give feedback.
All reactions