|
|
|
|
|
by SheinhardtWigCo
1165 days ago
|
|
Are you saying you'd use something else in production? > For example, it's still a pain to distinguish between using a Chat oriented LLM vs a regular completion one. Totally agree. After using it for a few weeks, this is one of the most visible weaknesses in the design. |
|
Absolutely. The Langchain interface is quite easy to build atop any old LLM, and if you're just using OpenAI then OpenAI already distirbutes clients in a bunch of languages that you can just use. Even then, you're calling a few HTTP endpoints and stuffing some data in a payload. It's really basic stuff. I'd prototype in Langchain, grab the prompts and agents I ended up using, and reimplement them in $MY_PL on $MY_PLATFORM. That's what I find so fun about these LLMs, they're just trivial to use for anyone that can ship text off to an endpoint (whether networked or local) and receive a text response.