econagents 0.0.3__tar.gz → 0.0.5__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.
- {econagents-0.0.3 → econagents-0.0.5}/PKG-INFO +6 -3
- {econagents-0.0.3 → econagents-0.0.5}/econagents/__init__.py +1 -1
- {econagents-0.0.3 → econagents-0.0.5}/pyproject.toml +6 -26
- {econagents-0.0.3 → econagents-0.0.5}/LICENSE +0 -0
- {econagents-0.0.3 → econagents-0.0.5}/README.md +0 -0
- {econagents-0.0.3 → econagents-0.0.5}/econagents/_c_extension.pyi +0 -0
- {econagents-0.0.3 → econagents-0.0.5}/econagents/core/__init__.py +0 -0
- {econagents-0.0.3 → econagents-0.0.5}/econagents/core/agent_role.py +0 -0
- {econagents-0.0.3 → econagents-0.0.5}/econagents/core/events.py +0 -0
- {econagents-0.0.3 → econagents-0.0.5}/econagents/core/game_runner.py +0 -0
- {econagents-0.0.3 → econagents-0.0.5}/econagents/core/logging_mixin.py +0 -0
- {econagents-0.0.3 → econagents-0.0.5}/econagents/core/manager/__init__.py +0 -0
- {econagents-0.0.3 → econagents-0.0.5}/econagents/core/manager/base.py +0 -0
- {econagents-0.0.3 → econagents-0.0.5}/econagents/core/manager/phase.py +0 -0
- {econagents-0.0.3 → econagents-0.0.5}/econagents/core/state/__init__.py +0 -0
- {econagents-0.0.3 → econagents-0.0.5}/econagents/core/state/fields.py +0 -0
- {econagents-0.0.3 → econagents-0.0.5}/econagents/core/state/game.py +0 -0
- {econagents-0.0.3 → econagents-0.0.5}/econagents/core/state/market.py +0 -0
- {econagents-0.0.3 → econagents-0.0.5}/econagents/core/transport.py +0 -0
- {econagents-0.0.3 → econagents-0.0.5}/econagents/llm/__init__.py +0 -0
- {econagents-0.0.3 → econagents-0.0.5}/econagents/llm/base.py +0 -0
- {econagents-0.0.3 → econagents-0.0.5}/econagents/llm/observability.py +0 -0
- {econagents-0.0.3 → econagents-0.0.5}/econagents/llm/ollama.py +0 -0
- {econagents-0.0.3 → econagents-0.0.5}/econagents/llm/openai.py +0 -0
- {econagents-0.0.3 → econagents-0.0.5}/econagents/py.typed +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: econagents
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.5
|
4
4
|
Summary:
|
5
5
|
License: MIT
|
6
6
|
Author: Dylan Castillo
|
@@ -13,12 +13,15 @@ Classifier: Programming Language :: Python :: 3.11
|
|
13
13
|
Classifier: Programming Language :: Python :: 3.12
|
14
14
|
Classifier: Programming Language :: Python :: 3.13
|
15
15
|
Provides-Extra: all
|
16
|
-
Provides-Extra: default
|
17
16
|
Provides-Extra: langfuse
|
18
17
|
Provides-Extra: langsmith
|
19
18
|
Provides-Extra: ollama
|
20
19
|
Provides-Extra: openai
|
21
|
-
|
20
|
+
Provides-Extra: standard
|
21
|
+
Requires-Dist: langfuse (>=2.60.3,<3.0.0) ; extra == "langfuse" or extra == "all"
|
22
|
+
Requires-Dist: langsmith (>=0.3.33,<0.4.0) ; extra == "langsmith" or extra == "standard" or extra == "all"
|
23
|
+
Requires-Dist: ollama (>=0.4.8,<0.5.0) ; extra == "ollama" or extra == "all"
|
24
|
+
Requires-Dist: openai (>=1.68.2,<2.0.0) ; extra == "openai" or extra == "standard" or extra == "all"
|
22
25
|
Requires-Dist: pydantic (>=2.11.3,<3.0.0)
|
23
26
|
Requires-Dist: requests (>=2.32.3,<3.0.0)
|
24
27
|
Requires-Dist: websockets (>=15.0,<16.0)
|
@@ -12,7 +12,7 @@ from econagents.core.state.game import GameState, MetaInformation, PrivateInform
|
|
12
12
|
from econagents.llm.openai import ChatOpenAI
|
13
13
|
|
14
14
|
# Don't manually change, let poetry-dynamic-versioning handle it.
|
15
|
-
__version__ = "0.0.
|
15
|
+
__version__ = "0.0.5"
|
16
16
|
|
17
17
|
__all__: list[str] = [
|
18
18
|
"AgentRole",
|
@@ -17,7 +17,7 @@ dynamic = ["version"]
|
|
17
17
|
|
18
18
|
[tool.poetry]
|
19
19
|
name = "econagents"
|
20
|
-
version = "0.0.
|
20
|
+
version = "0.0.5" # Do not change, let poetry-dynamic-versioning handle it.
|
21
21
|
packages = [{include = "econagents"}]
|
22
22
|
include = ["econagents/*.so", "econagents/*.pyd"] # Compiled extensions
|
23
23
|
license = "MIT"
|
@@ -33,31 +33,11 @@ python = ">=3.10,<4"
|
|
33
33
|
pydantic = "^2.11.3"
|
34
34
|
requests = "^2.32.3"
|
35
35
|
websockets = "^15.0"
|
36
|
-
|
36
|
+
openai = {version = "^1.68.2", optional = true}
|
37
|
+
ollama = {version = "^0.4.8", optional = true}
|
38
|
+
langsmith = {version = "^0.3.33", optional = true}
|
39
|
+
langfuse = {version = "^2.60.3", optional = true}
|
37
40
|
|
38
|
-
[tool.poetry.group.openai]
|
39
|
-
optional = true
|
40
|
-
|
41
|
-
[tool.poetry.group.openai.dependencies]
|
42
|
-
openai = "^1.68.2"
|
43
|
-
|
44
|
-
[tool.poetry.group.ollama]
|
45
|
-
optional = true
|
46
|
-
|
47
|
-
[tool.poetry.group.ollama.dependencies]
|
48
|
-
ollama = "^0.4.8"
|
49
|
-
|
50
|
-
[tool.poetry.group.langsmith]
|
51
|
-
optional = true
|
52
|
-
|
53
|
-
[tool.poetry.group.langsmith.dependencies]
|
54
|
-
langsmith = "^0.3.33"
|
55
|
-
|
56
|
-
[tool.poetry.group.langfuse]
|
57
|
-
optional = true
|
58
|
-
|
59
|
-
[tool.poetry.group.langfuse.dependencies]
|
60
|
-
langfuse = "^2.60.3"
|
61
41
|
|
62
42
|
[tool.poetry.group.docs.dependencies]
|
63
43
|
myst-parser = {extras = ["linkify"], version = "^4.0.1"}
|
@@ -181,5 +161,5 @@ openai = ["openai"]
|
|
181
161
|
ollama = ["ollama"]
|
182
162
|
langsmith = ["langsmith"]
|
183
163
|
langfuse = ["langfuse"]
|
184
|
-
|
164
|
+
standard = ["openai", "langsmith"]
|
185
165
|
all = ["openai", "ollama", "langsmith", "langfuse"]
|
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
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|