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.
@@ -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__"]