|
|
|
|
|
by tarruda
697 days ago
|
|
It is not like strong models are at a point where you can 100% trust their output. It is always necessary to review LLM generated text before using it. I'd rather have a weaker model which I can always rely on being available than a strong model which is hosted by a third party service that can be shut down at any time. |
|
Every LLM project I’ve worked with has an abstraction layer for calling hosted LLMs. It’s trivial to implement another adapter to call a different LLM. It’s often does as a fallback, failover strategy.
There are also services that will merge different providers into a unified API call if you don’t want to handle the complexity on the client.
It’s really not a problem.