dm-aioaiagent 0.4.0__tar.gz → 0.4.1__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.
- {dm_aioaiagent-0.4.0 → dm_aioaiagent-0.4.1}/PKG-INFO +15 -2
- {dm_aioaiagent-0.4.0 → dm_aioaiagent-0.4.1}/dm_aioaiagent/async_ai_agent.py +0 -2
- {dm_aioaiagent-0.4.0 → dm_aioaiagent-0.4.1}/dm_aioaiagent.egg-info/PKG-INFO +15 -2
- {dm_aioaiagent-0.4.0 → dm_aioaiagent-0.4.1}/dm_aioaiagent.egg-info/requires.txt +2 -0
- {dm_aioaiagent-0.4.0 → dm_aioaiagent-0.4.1}/setup.py +3 -1
- {dm_aioaiagent-0.4.0 → dm_aioaiagent-0.4.1}/README.md +0 -0
- {dm_aioaiagent-0.4.0 → dm_aioaiagent-0.4.1}/dm_aioaiagent/__init__.py +0 -0
- {dm_aioaiagent-0.4.0 → dm_aioaiagent-0.4.1}/dm_aioaiagent/ai_agent.py +0 -0
- {dm_aioaiagent-0.4.0 → dm_aioaiagent-0.4.1}/dm_aioaiagent/openai_image_message_content.py +0 -0
- {dm_aioaiagent-0.4.0 → dm_aioaiagent-0.4.1}/dm_aioaiagent/types.py +0 -0
- {dm_aioaiagent-0.4.0 → dm_aioaiagent-0.4.1}/dm_aioaiagent.egg-info/SOURCES.txt +0 -0
- {dm_aioaiagent-0.4.0 → dm_aioaiagent-0.4.1}/dm_aioaiagent.egg-info/dependency_links.txt +0 -0
- {dm_aioaiagent-0.4.0 → dm_aioaiagent-0.4.1}/dm_aioaiagent.egg-info/top_level.txt +0 -0
- {dm_aioaiagent-0.4.0 → dm_aioaiagent-0.4.1}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: dm-aioaiagent
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.1
|
|
4
4
|
Summary: This is my custom aioaiagent client
|
|
5
5
|
Home-page: https://pypi.org/project/dm-aioaiagent
|
|
6
6
|
Author: dimka4621
|
|
@@ -18,9 +18,22 @@ Requires-Dist: pydantic<3.0.0,>=2.9.2
|
|
|
18
18
|
Requires-Dist: langchain~=0.3.0
|
|
19
19
|
Requires-Dist: langchain-core~=0.3.5
|
|
20
20
|
Requires-Dist: langgraph~=0.2.23
|
|
21
|
+
Requires-Dist: langsmith~=0.1.144
|
|
21
22
|
Requires-Dist: grandalf>=0.8
|
|
22
23
|
Requires-Dist: langchain-community~=0.3.0
|
|
23
24
|
Requires-Dist: langchain-openai~=0.2.0
|
|
25
|
+
Requires-Dist: langchain-anthropic~=0.3.0
|
|
26
|
+
Dynamic: author
|
|
27
|
+
Dynamic: author-email
|
|
28
|
+
Dynamic: classifier
|
|
29
|
+
Dynamic: description
|
|
30
|
+
Dynamic: description-content-type
|
|
31
|
+
Dynamic: home-page
|
|
32
|
+
Dynamic: keywords
|
|
33
|
+
Dynamic: project-url
|
|
34
|
+
Dynamic: requires-dist
|
|
35
|
+
Dynamic: requires-python
|
|
36
|
+
Dynamic: summary
|
|
24
37
|
|
|
25
38
|
# DM-aioaiagent
|
|
26
39
|
|
|
@@ -14,8 +14,6 @@ __all__ = ["DMAioAIAgent"]
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
class DMAioAIAgent(DMAIAgent):
|
|
17
|
-
agent_name = "AsyncAIAgent"
|
|
18
|
-
|
|
19
17
|
async def run(self, query: str, **kwargs) -> str:
|
|
20
18
|
new_messages = await self.run_messages(messages=[{"role": "user", "content": query}], **kwargs)
|
|
21
19
|
return new_messages[-1].content
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: dm-aioaiagent
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.1
|
|
4
4
|
Summary: This is my custom aioaiagent client
|
|
5
5
|
Home-page: https://pypi.org/project/dm-aioaiagent
|
|
6
6
|
Author: dimka4621
|
|
@@ -18,9 +18,22 @@ Requires-Dist: pydantic<3.0.0,>=2.9.2
|
|
|
18
18
|
Requires-Dist: langchain~=0.3.0
|
|
19
19
|
Requires-Dist: langchain-core~=0.3.5
|
|
20
20
|
Requires-Dist: langgraph~=0.2.23
|
|
21
|
+
Requires-Dist: langsmith~=0.1.144
|
|
21
22
|
Requires-Dist: grandalf>=0.8
|
|
22
23
|
Requires-Dist: langchain-community~=0.3.0
|
|
23
24
|
Requires-Dist: langchain-openai~=0.2.0
|
|
25
|
+
Requires-Dist: langchain-anthropic~=0.3.0
|
|
26
|
+
Dynamic: author
|
|
27
|
+
Dynamic: author-email
|
|
28
|
+
Dynamic: classifier
|
|
29
|
+
Dynamic: description
|
|
30
|
+
Dynamic: description-content-type
|
|
31
|
+
Dynamic: home-page
|
|
32
|
+
Dynamic: keywords
|
|
33
|
+
Dynamic: project-url
|
|
34
|
+
Dynamic: requires-dist
|
|
35
|
+
Dynamic: requires-python
|
|
36
|
+
Dynamic: summary
|
|
24
37
|
|
|
25
38
|
# DM-aioaiagent
|
|
26
39
|
|
|
@@ -8,7 +8,7 @@ def readme():
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='dm-aioaiagent',
|
|
11
|
-
version='v0.4.
|
|
11
|
+
version='v0.4.1',
|
|
12
12
|
author='dimka4621',
|
|
13
13
|
author_email='mismartconfig@gmail.com',
|
|
14
14
|
description='This is my custom aioaiagent client',
|
|
@@ -23,9 +23,11 @@ setup(
|
|
|
23
23
|
'langchain~=0.3.0',
|
|
24
24
|
'langchain-core~=0.3.5',
|
|
25
25
|
'langgraph~=0.2.23',
|
|
26
|
+
'langsmith~=0.1.144',
|
|
26
27
|
'grandalf>=0.8',
|
|
27
28
|
'langchain-community~=0.3.0',
|
|
28
29
|
'langchain-openai~=0.2.0',
|
|
30
|
+
'langchain-anthropic~=0.3.0'
|
|
29
31
|
],
|
|
30
32
|
classifiers=[
|
|
31
33
|
'Programming Language :: Python :: 3.8',
|
|
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
|