|
|
|
|
|
by wokwokwok
694 days ago
|
|
Given this is just calling the OpenAI / ollama network APIs using reqwest (as far as I can tell,
reading the code), care to comment on why you would use it? As with most things “langchain” esk, where they generate the prompt for you, it’s hard to see what value is really being offered, and they’re fragile against trivial changes in model and model versions. There’s some mention of agents but I can’t see any examples. Broadly speaking, what’s the elevator pitch here? If I’m interacting with either of those two APIs via the network, client libraries are a dime a dozen… but, probably, you’re better off hand crafting your own prompts. If you wanted to embed an LLM, you wouldn’t rely on a network endpoint and you could just use a llama.cpp binding. What’s special here? |
|
I do want to rely on a network endpoint, as not all my computers are capable of running LLMs locally in an efficient manner.