euriai 1.0.19__tar.gz → 1.0.20__tar.gz

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: euriai
3
- Version: 1.0.19
3
+ Version: 1.0.20
4
4
  Summary: Python client for Euri API (euron.one) with CLI, LangChain, and LlamaIndex integration
5
5
  Author: Euri
6
6
  Author-email: tech@euron.one
@@ -4,7 +4,7 @@ Euri AI Python SDK
4
4
  A comprehensive Python SDK for the Euri AI API with integrations for popular frameworks.
5
5
  """
6
6
 
7
- __version__ = "1.0.19"
7
+ __version__ = "1.0.20"
8
8
 
9
9
  # Core imports that should always work
10
10
  try:
@@ -433,6 +433,23 @@ class EuriaiLlamaIndexEmbedding(BaseEmbedding):
433
433
  async def aget_query_embedding(self, query: str) -> List[float]:
434
434
  """Async get query embedding."""
435
435
  return await self.aget_text_embedding(query)
436
+
437
+ # Abstract methods required by BaseEmbedding
438
+ def _get_text_embedding(self, text: str) -> List[float]:
439
+ """Private method required by BaseEmbedding."""
440
+ return self.get_text_embedding(text)
441
+
442
+ def _get_query_embedding(self, query: str) -> List[float]:
443
+ """Private method required by BaseEmbedding."""
444
+ return self.get_query_embedding(query)
445
+
446
+ async def _aget_text_embedding(self, text: str) -> List[float]:
447
+ """Private async method required by BaseEmbedding."""
448
+ return await self.aget_text_embedding(text)
449
+
450
+ async def _aget_query_embedding(self, query: str) -> List[float]:
451
+ """Private async method required by BaseEmbedding."""
452
+ return await self.aget_query_embedding(query)
436
453
 
437
454
 
438
455
  class EuriaiLlamaIndex:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: euriai
3
- Version: 1.0.19
3
+ Version: 1.0.20
4
4
  Summary: Python client for Euri API (euron.one) with CLI, LangChain, and LlamaIndex integration
5
5
  Author: Euri
6
6
  Author-email: tech@euron.one
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="euriai",
5
- version="1.0.19",
5
+ version="1.0.20",
6
6
  description="Python client for Euri API (euron.one) with CLI, LangChain, and LlamaIndex integration",
7
7
  long_description=open("README.md", encoding="utf-8").read(),
8
8
  long_description_content_type="text/markdown",
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes