langchain/libs/partners/anthropic/tests/integration_tests
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
test_chat_models.py patch: remove usage of llm, chat model __call__ (#20788) 2024-04-24 19:39:23 -04:00
test_compile.py
test_experimental.py anthropic[patch]: fix experimental tests (#20021) 2024-04-04 13:37:43 -07:00
test_llms.py patch: remove usage of llm, chat model __call__ (#20788) 2024-04-24 19:39:23 -04:00
test_standard.py multiple: standard chat model tests (#20359) 2024-04-11 18:23:13 -07:00