langchain/libs/partners/anthropic/langchain_anthropic
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)`
2024-04-24 19:39:23 -04:00
..
__init__.py
chat_models.py docs, multiple: de-beta with_structured_output (#20850) 2024-04-24 19:34:57 +00:00
experimental.py anthropic[minor]: tool use (#20016) 2024-04-04 13:22:48 -07:00
llms.py patch: remove usage of llm, chat model __call__ (#20788) 2024-04-24 19:39:23 -04:00
output_parsers.py core[minor], ...: add tool calls message (#18947) 2024-04-09 18:41:42 -05:00
py.typed