Files
langchain-python/langchain/llms
trigaten 6fafcd0a70 Strange behavior with LLM import requirements (#1104)
This import works fine:
```python
from langchain import Anthropic
```
This import does not:
```python
from langchain import AI21
```

```
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: cannot import name 'AI21' from 'langchain' (/opt/anaconda3/envs/fed_nlp/lib/python3.9/site-packages/langchain/__init__.py)
```

I think there is a slight documentation inconsistency here:
https://langchain.readthedocs.io/en/latest/reference/modules/llms.html

This PR starts to solve that. Should all the import examples be
`from langchain.llms import X` instead of `from langchain import X`?
2023-02-16 23:13:34 -08:00
..
2023-02-13 22:06:25 -08:00
2023-02-15 23:04:28 -08:00
2023-02-14 15:06:14 -08:00
2023-01-30 14:55:44 -08:00
2023-02-11 15:12:35 -08:00
2022-12-15 07:53:32 -08:00
2022-12-18 16:22:42 -05:00
2022-12-15 07:53:32 -08:00
2022-12-15 07:53:32 -08:00
2022-11-14 22:05:41 -08:00