You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
langchain/libs/partners/ibm/langchain_ibm
ccurme 481d3855dc
patch: remove usage of llm, chat model __call__ (#20788)
- `llm(prompt)` -> `llm.invoke(prompt)`
- `llm(prompt=prompt` -> `llm.invoke(prompt)` (same with `messages=`)
- `llm(prompt, callbacks=callbacks)` -> `llm.invoke(prompt,
config={"callbacks": callbacks})`
- `llm(prompt, **kwargs)` -> `llm.invoke(prompt, **kwargs)`
5 months ago
..
__init__.py ibm: Add support for Embedding Models (#20647) 6 months ago
embeddings.py ibm: Add support for Embedding Models (#20647) 6 months ago
llms.py patch: remove usage of llm, chat model __call__ (#20788) 5 months ago
py.typed ibm: added partners package `langchain_ibm`, added llm (#16512) 8 months ago