euriai 1.0.10__py3-none-any.whl → 1.0.11__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.10"
7
+ __version__ = "1.0.11"
8
8
 
9
9
  # Core imports that should always work
10
10
  try:
euriai/autogen.py CHANGED
@@ -5,12 +5,19 @@ from euriai.client import EuriaiClient
5
5
  try:
6
6
  # Try newer AutoGen structure first (v0.6+)
7
7
  try:
8
- from autogen_agentchat import AssistantAgent, UserProxyAgent, GroupChat, GroupChatManager
8
+ from autogen_agentchat.agents import AssistantAgent, UserProxyAgent
9
+ from autogen_agentchat.teams import GroupChat, GroupChatManager
9
10
  import autogen_agentchat as autogen
10
11
  except ImportError:
11
- # Fall back to older AutoGen structure
12
- import autogen
13
- from autogen import AssistantAgent, UserProxyAgent, GroupChat, GroupChatManager
12
+ # Try alternative newer structure
13
+ try:
14
+ from autogen_agentchat.base import AssistantAgent, UserProxyAgent
15
+ from autogen_agentchat import GroupChat, GroupChatManager
16
+ import autogen_agentchat as autogen
17
+ except ImportError:
18
+ # Fall back to older AutoGen structure
19
+ import autogen
20
+ from autogen import AssistantAgent, UserProxyAgent, GroupChat, GroupChatManager
14
21
  except ImportError:
15
22
  autogen = None
16
23
  AssistantAgent = UserProxyAgent = GroupChat = GroupChatManager = None
@@ -282,10 +289,13 @@ class EuriaiAutoGen:
282
289
  try:
283
290
  # Try newer AutoGen structure first (v0.6+)
284
291
  try:
285
- from autogen_agentchat import AssistantAgent
292
+ from autogen_agentchat.agents import AssistantAgent
286
293
  except ImportError:
287
- # Fall back to older AutoGen structure
288
- from autogen import AssistantAgent
294
+ try:
295
+ from autogen_agentchat.base import AssistantAgent
296
+ except ImportError:
297
+ # Fall back to older AutoGen structure
298
+ from autogen import AssistantAgent
289
299
  except ImportError:
290
300
  from . import check_optional_dependency
291
301
  check_optional_dependency("pyautogen", "AutoGen", "autogen")
@@ -339,10 +349,13 @@ class EuriaiAutoGen:
339
349
  try:
340
350
  # Try newer AutoGen structure first (v0.6+)
341
351
  try:
342
- from autogen_agentchat import UserProxyAgent
352
+ from autogen_agentchat.agents import UserProxyAgent
343
353
  except ImportError:
344
- # Fall back to older AutoGen structure
345
- from autogen import UserProxyAgent
354
+ try:
355
+ from autogen_agentchat.base import UserProxyAgent
356
+ except ImportError:
357
+ # Fall back to older AutoGen structure
358
+ from autogen import UserProxyAgent
346
359
  except ImportError:
347
360
  from . import check_optional_dependency
348
361
  check_optional_dependency("pyautogen", "AutoGen", "autogen")
@@ -387,10 +400,13 @@ class EuriaiAutoGen:
387
400
  try:
388
401
  # Try newer AutoGen structure first (v0.6+)
389
402
  try:
390
- from autogen_agentchat import GroupChat
403
+ from autogen_agentchat.teams import GroupChat
391
404
  except ImportError:
392
- # Fall back to older AutoGen structure
393
- from autogen import GroupChat
405
+ try:
406
+ from autogen_agentchat import GroupChat
407
+ except ImportError:
408
+ # Fall back to older AutoGen structure
409
+ from autogen import GroupChat
394
410
  except ImportError:
395
411
  from . import check_optional_dependency
396
412
  check_optional_dependency("pyautogen", "AutoGen", "autogen")
@@ -432,10 +448,13 @@ class EuriaiAutoGen:
432
448
  try:
433
449
  # Try newer AutoGen structure first (v0.6+)
434
450
  try:
435
- from autogen_agentchat import GroupChatManager
451
+ from autogen_agentchat.teams import GroupChatManager
436
452
  except ImportError:
437
- # Fall back to older AutoGen structure
438
- from autogen import GroupChatManager
453
+ try:
454
+ from autogen_agentchat import GroupChatManager
455
+ except ImportError:
456
+ # Fall back to older AutoGen structure
457
+ from autogen import GroupChatManager
439
458
  except ImportError:
440
459
  from . import check_optional_dependency
441
460
  check_optional_dependency("pyautogen", "AutoGen", "autogen")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: euriai
3
- Version: 1.0.10
3
+ Version: 1.0.11
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,5 +1,5 @@
1
- euriai/__init__.py,sha256=5lD7G4Zx6YEknj1kCFjZ479HvHvMvNWpDQG0YOdgsc4,6630
2
- euriai/autogen.py,sha256=PO3_LfK3sjeOPu4k5YVf7nul9ovtYLq7M4GnQJ_31Ys,20250
1
+ euriai/__init__.py,sha256=eOEliRAI6kAmV4qxPF8JlTrOCf5VsDtHLA1L3tWvXaY,6630
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
5
5
  euriai/crewai.py,sha256=nfMMOOhKiCIc2v42nj2Zf9rP0U5m4GrfK_6zkXL77gw,7594
@@ -12,8 +12,8 @@ euriai/langgraph.py,sha256=sw9e-PnfwAwmp_tUCnAGIUB78GyJsMkAzxOGvFUafiM,34128
12
12
  euriai/llamaindex.py,sha256=c-ujod2bjL6QIvfAyuIxm1SvSCS00URFElYybKQ5Ew0,26551
13
13
  euriai/n8n.py,sha256=hjkckqyW_hZNL78UkBCof1WvKCKCIjwdvZdAgx6NrB8,3764
14
14
  euriai/smolagents.py,sha256=xlixGx2IWzAPTpSJGsYIK2L-SHGY9Mw1-8GbwVsEYtU,28507
15
- euriai-1.0.10.dist-info/METADATA,sha256=ZRTlY_AvkACSwfFSx4c_cb9kBGqN6KJP5YdHoiP1B2s,6807
16
- euriai-1.0.10.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
17
- euriai-1.0.10.dist-info/entry_points.txt,sha256=9OkET8KIGcsjQn8UlnpPKRT75s2KW34jq1__1SXtpMA,43
18
- euriai-1.0.10.dist-info/top_level.txt,sha256=TG1htJ8cuD62MXn-NJ7DVF21QHY16w6M_QgfF_Er_EQ,7
19
- euriai-1.0.10.dist-info/RECORD,,
15
+ euriai-1.0.11.dist-info/METADATA,sha256=McMsOsabYlsQeJbT6F5wiSR59TzYwELDwuaR6Z1ZnUA,6807
16
+ euriai-1.0.11.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
17
+ euriai-1.0.11.dist-info/entry_points.txt,sha256=9OkET8KIGcsjQn8UlnpPKRT75s2KW34jq1__1SXtpMA,43
18
+ euriai-1.0.11.dist-info/top_level.txt,sha256=TG1htJ8cuD62MXn-NJ7DVF21QHY16w6M_QgfF_Er_EQ,7
19
+ euriai-1.0.11.dist-info/RECORD,,