langchain-maritaca 0.2.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- langchain_maritaca/__init__.py +14 -0
- langchain_maritaca/chat_models.py +794 -0
- langchain_maritaca/embeddings.py +289 -0
- langchain_maritaca/py.typed +0 -0
- langchain_maritaca/version.py +7 -0
- langchain_maritaca-0.2.2.dist-info/METADATA +274 -0
- langchain_maritaca-0.2.2.dist-info/RECORD +9 -0
- langchain_maritaca-0.2.2.dist-info/WHEEL +4 -0
- langchain_maritaca-0.2.2.dist-info/licenses/LICENSE +21 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"""Maritaca AI integration for LangChain.
|
|
2
|
+
|
|
3
|
+
Maritaca AI provides Brazilian Portuguese-optimized language models.
|
|
4
|
+
|
|
5
|
+
Author: Anderson Henrique da Silva
|
|
6
|
+
Location: Minas Gerais, Brasil
|
|
7
|
+
GitHub: https://github.com/anderson-ufrj
|
|
8
|
+
"""
|
|
9
|
+
|
|
10
|
+
from langchain_maritaca.chat_models import ChatMaritaca
|
|
11
|
+
from langchain_maritaca.embeddings import DeepInfraEmbeddings
|
|
12
|
+
from langchain_maritaca.version import __version__
|
|
13
|
+
|
|
14
|
+
__all__ = ["ChatMaritaca", "DeepInfraEmbeddings", "__version__"]
|