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/core/tests/unit_tests
ccurme 181dfef118
core, standard tests, partner packages: add test for model params (#21677)
1. Adds `.get_ls_params` to BaseChatModel which returns
```python
class LangSmithParams(TypedDict, total=False):
    ls_provider: str
    ls_model_name: str
    ls_model_type: Literal["chat"]
    ls_temperature: Optional[float]
    ls_max_tokens: Optional[int]
    ls_stop: Optional[List[str]]
```
by default it will only return
```python
{ls_model_type="chat", ls_stop=stop}
```

2. Add these params to inheritable metadata in
`CallbackManager.configure`

3. Implement `.get_ls_params` and populate all params for Anthropic +
all subclasses of BaseChatOpenAI

Sample trace:
https://smith.langchain.com/public/d2962673-4c83-47c7-b51e-61d07aaffb1b/r

**OpenAI**:
<img width="984" alt="Screenshot 2024-05-17 at 10 03 35 AM"
src="https://github.com/langchain-ai/langchain/assets/26529506/2ef41f74-a9df-4e0e-905d-da74fa82a910">

**Anthropic**:
<img width="978" alt="Screenshot 2024-05-17 at 10 06 07 AM"
src="https://github.com/langchain-ai/langchain/assets/26529506/39701c9f-7da5-4f1a-ab14-84e9169d63e7">

**Mistral** (and all others for which params are not yet populated):
<img width="977" alt="Screenshot 2024-05-17 at 10 08 43 AM"
src="https://github.com/langchain-ai/langchain/assets/26529506/37d7d894-fec2-4300-986f-49a5f0191b03">
4 months ago
..
_api core: use qualname in beta message (#20361) 5 months ago
callbacks community, core[callbacks]: move FileCallbackHandler from community to core (#20495) 5 months ago
chat_history core[patch],community[patch]: Move file chat history back to community (#20834) 5 months ago
data Separate out langchain_core package (#13577) 10 months ago
dependencies community[minor]: Add glue catalog loader (#20220) 5 months ago
document_loaders core[minor]: Add aload to document loader (#19936) 6 months ago
documents core[minor]: move document compressor base (#17910) 7 months ago
embeddings core[minor]: moved fake llms and embeddings to core (#19226) 6 months ago
example_selectors core[minor]: Add async methods to MaxMarginalRelevanceExampleSelector (#19639) 6 months ago
examples core:adds tests for partial_variables (#15427) 9 months ago
fake core: Assign missing message ids in BaseChatModel (#19863) 6 months ago
indexing core[minor],langchain[patch]: Move base indexing interface and logic to core (#20667) 5 months ago
language_models community[patch]: update use of deprecated llm methods (#20393) 5 months ago
load BUG: more core fixes (#13665) 10 months ago
messages fix: core: Include in json output also fields set outside the constructor (#21342) 5 months ago
output_parsers core[patch]: improve comma separated list output parser to handle non-space separated list (#20434) 5 months ago
outputs core[patch]: fix ChatGeneration.text with content blocks (#20294) 5 months ago
prompts core: mustache prompt templates (#19980) 5 months ago
runnables core, standard tests, partner packages: add test for model params (#21677) 4 months ago
stores core[minor],langchain[patch],community[patch]: Move storage interfaces to core (#20750) 5 months ago
tracers core: tracer: remove numeric execution order (#21220) 5 months ago
utils core[patch]: `utils.guard_import` fix (#21133) 5 months ago
__init__.py Separate out langchain_core package (#13577) 10 months ago
conftest.py fix: core: Include in json output also fields set outside the constructor (#21342) 5 months ago
prompt_file.txt Separate out langchain_core package (#13577) 10 months ago
stubs.py core: Assign missing message ids in BaseChatModel (#19863) 6 months ago
test_globals.py Separate out langchain_core package (#13577) 10 months ago
test_imports.py infra: Fix test filesystem paths incompatible with windows (#14388) 9 months ago
test_messages.py core[patch]: Fixes for convert_messages (#21207) 5 months ago
test_outputs.py REFACTOR: Refactor langchain_core (#13627) 10 months ago
test_sys_info.py core(minor): Add a way to print out system information for debugging purposes. (#15718) 9 months ago
test_tools.py core[major]: only use function description (#21622) 4 months ago