euriai 1.0.11__tar.gz → 1.0.14__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.11
3
+ Version: 1.0.14
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.11"
7
+ __version__ = "1.0.14"
8
8
 
9
9
  # Core imports that should always work
10
10
  try:
@@ -518,6 +518,17 @@ class EuriaiLangGraph:
518
518
  if self.compiled_graph is None:
519
519
  self.compile_graph()
520
520
 
521
+ # Prepare config for checkpointer if needed
522
+ if config is None:
523
+ config = {}
524
+
525
+ # If checkpointer is enabled and no thread_id provided, create one
526
+ if self.checkpointer is not None and "configurable" not in config:
527
+ import uuid
528
+ config["configurable"] = {
529
+ "thread_id": str(uuid.uuid4())
530
+ }
531
+
521
532
  # Execute workflow
522
533
  result = self.compiled_graph.invoke(input_state, config=config)
523
534
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: euriai
3
- Version: 1.0.11
3
+ Version: 1.0.14
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.11",
5
+ version="1.0.14",
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