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/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)`
5 months ago
..
__init__.py anthropic[minor]: package move (#17974) 7 months ago
chat_models.py docs, multiple: de-beta with_structured_output (#20850) 5 months ago
experimental.py anthropic[minor]: tool use (#20016) 6 months ago
llms.py patch: remove usage of llm, chat model __call__ (#20788) 5 months ago
output_parsers.py core[minor], ...: add tool calls message (#18947) 6 months ago
py.typed anthropic: beta messages integration (#14928) 9 months ago