euriai 1.0.19__py3-none-any.whl → 1.0.20__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.
euriai/__init__.py CHANGED
@@ -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:
euriai/llamaindex.py CHANGED
@@ -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
@@ -1,4 +1,4 @@
1
- euriai/__init__.py,sha256=claTvNZ_iqGvMHoPLa7Lqj2O4Ac-SYAZuGBeFwVpep8,6427
1
+ euriai/__init__.py,sha256=hMl5bhNp36_HPkjquSsWXNDusVHozF0lvznCpCKLRAQ,6427
2
2
  euriai/autogen.py,sha256=z1WHftUgu3_Sn8zDXmf31onikS0p8TwH5JE4llL7ogk,21144
3
3
  euriai/cli.py,sha256=hF1wiiL2QQSfWf8WlLQyNVDBd4YkbiwmMSoPxVbyPTM,3290
4
4
  euriai/client.py,sha256=L-o6hv9N3md-l-hz-kz5nYVaaZqnrREZlo_0jguhF7E,4066
@@ -9,11 +9,11 @@ euriai/euri_chat.py,sha256=DEAiet1ReRwB4ljkPYaTl1Nb5uc20-JF-3PQjGQZXk4,3567
9
9
  euriai/euri_embed.py,sha256=g7zs1G-ZBDJjOGJtkkfIcV4LPtRcm9wpVWmrfMGn5EM,2919
10
10
  euriai/langchain.py,sha256=gVF9eh21RC1WtDn7SQoEREUDqOObm5IRx6BFZtB5xcc,34968
11
11
  euriai/langgraph.py,sha256=_D89ugUcVQevjZ1GK-IkJQdbi7JFxJGtqFJ0CyO89bk,44623
12
- euriai/llamaindex.py,sha256=c-ujod2bjL6QIvfAyuIxm1SvSCS00URFElYybKQ5Ew0,26551
12
+ euriai/llamaindex.py,sha256=MisVVWjqUWR9zJnXbcM8hKfje48EMtX7STETnlWKcII,27316
13
13
  euriai/n8n.py,sha256=hjkckqyW_hZNL78UkBCof1WvKCKCIjwdvZdAgx6NrB8,3764
14
14
  euriai/smolagents.py,sha256=xlixGx2IWzAPTpSJGsYIK2L-SHGY9Mw1-8GbwVsEYtU,28507
15
- euriai-1.0.19.dist-info/METADATA,sha256=PySHaQOnXL358TJQsK9NN8gLDe5Vee43T7RmoxN7CWQ,6807
16
- euriai-1.0.19.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
17
- euriai-1.0.19.dist-info/entry_points.txt,sha256=9OkET8KIGcsjQn8UlnpPKRT75s2KW34jq1__1SXtpMA,43
18
- euriai-1.0.19.dist-info/top_level.txt,sha256=TG1htJ8cuD62MXn-NJ7DVF21QHY16w6M_QgfF_Er_EQ,7
19
- euriai-1.0.19.dist-info/RECORD,,
15
+ euriai-1.0.20.dist-info/METADATA,sha256=s_ZQUwK6tIrVvkxxvn534ZTSaOuqnnnLWG0bRo3xG8g,6807
16
+ euriai-1.0.20.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
17
+ euriai-1.0.20.dist-info/entry_points.txt,sha256=9OkET8KIGcsjQn8UlnpPKRT75s2KW34jq1__1SXtpMA,43
18
+ euriai-1.0.20.dist-info/top_level.txt,sha256=TG1htJ8cuD62MXn-NJ7DVF21QHY16w6M_QgfF_Er_EQ,7
19
+ euriai-1.0.20.dist-info/RECORD,,