econagents 0.0.7__tar.gz → 0.0.8__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.7 → econagents-0.0.8}/PKG-INFO +8 -1
- {econagents-0.0.7 → econagents-0.0.8}/econagents/__init__.py +1 -1
- {econagents-0.0.7 → econagents-0.0.8}/pyproject.toml +18 -28
- {econagents-0.0.7 → econagents-0.0.8}/LICENSE +0 -0
- {econagents-0.0.7 → econagents-0.0.8}/README.md +0 -0
- {econagents-0.0.7 → econagents-0.0.8}/econagents/_c_extension.pyi +0 -0
- {econagents-0.0.7 → econagents-0.0.8}/econagents/cli.py +0 -0
- {econagents-0.0.7 → econagents-0.0.8}/econagents/config_parser/__init__.py +0 -0
- {econagents-0.0.7 → econagents-0.0.8}/econagents/config_parser/base.py +0 -0
- {econagents-0.0.7 → econagents-0.0.8}/econagents/config_parser/basic.py +0 -0
- {econagents-0.0.7 → econagents-0.0.8}/econagents/config_parser/ibex_tudelft.py +0 -0
- {econagents-0.0.7 → econagents-0.0.8}/econagents/core/__init__.py +0 -0
- {econagents-0.0.7 → econagents-0.0.8}/econagents/core/agent_role.py +0 -0
- {econagents-0.0.7 → econagents-0.0.8}/econagents/core/events.py +0 -0
- {econagents-0.0.7 → econagents-0.0.8}/econagents/core/game_runner.py +0 -0
- {econagents-0.0.7 → econagents-0.0.8}/econagents/core/logging_mixin.py +0 -0
- {econagents-0.0.7 → econagents-0.0.8}/econagents/core/manager/__init__.py +0 -0
- {econagents-0.0.7 → econagents-0.0.8}/econagents/core/manager/base.py +0 -0
- {econagents-0.0.7 → econagents-0.0.8}/econagents/core/manager/phase.py +0 -0
- {econagents-0.0.7 → econagents-0.0.8}/econagents/core/state/__init__.py +0 -0
- {econagents-0.0.7 → econagents-0.0.8}/econagents/core/state/fields.py +0 -0
- {econagents-0.0.7 → econagents-0.0.8}/econagents/core/state/game.py +0 -0
- {econagents-0.0.7 → econagents-0.0.8}/econagents/core/state/market.py +0 -0
- {econagents-0.0.7 → econagents-0.0.8}/econagents/core/transport.py +0 -0
- {econagents-0.0.7 → econagents-0.0.8}/econagents/llm/__init__.py +0 -0
- {econagents-0.0.7 → econagents-0.0.8}/econagents/llm/base.py +0 -0
- {econagents-0.0.7 → econagents-0.0.8}/econagents/llm/observability.py +0 -0
- {econagents-0.0.7 → econagents-0.0.8}/econagents/llm/ollama.py +0 -0
- {econagents-0.0.7 → econagents-0.0.8}/econagents/llm/openai.py +0 -0
- {econagents-0.0.7 → econagents-0.0.8}/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.8
|
4
4
|
Summary:
|
5
5
|
License: MIT
|
6
6
|
Author: Dylan Castillo
|
@@ -18,16 +18,23 @@ Provides-Extra: langsmith
|
|
18
18
|
Provides-Extra: ollama
|
19
19
|
Provides-Extra: openai
|
20
20
|
Provides-Extra: standard
|
21
|
+
Requires-Dist: langfuse (>=3.0.3)
|
21
22
|
Requires-Dist: langfuse ; extra == "all"
|
22
23
|
Requires-Dist: langfuse ; extra == "langfuse"
|
24
|
+
Requires-Dist: langsmith (>=0.4.1)
|
23
25
|
Requires-Dist: langsmith ; extra == "all"
|
24
26
|
Requires-Dist: langsmith ; extra == "langsmith"
|
25
27
|
Requires-Dist: langsmith ; extra == "standard"
|
28
|
+
Requires-Dist: ollama (>=0.5.1)
|
26
29
|
Requires-Dist: ollama ; extra == "all"
|
27
30
|
Requires-Dist: ollama ; extra == "ollama"
|
31
|
+
Requires-Dist: openai (>=1.89.0)
|
28
32
|
Requires-Dist: openai ; extra == "all"
|
29
33
|
Requires-Dist: openai ; extra == "openai"
|
30
34
|
Requires-Dist: openai ; extra == "standard"
|
35
|
+
Requires-Dist: pydantic (>=2.11.5)
|
36
|
+
Requires-Dist: requests (>=2.32.4)
|
37
|
+
Requires-Dist: websockets (>=15.0)
|
31
38
|
Description-Content-Type: text/markdown
|
32
39
|
|
33
40
|
<div align="center">
|
@@ -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.8"
|
16
16
|
|
17
17
|
__all__: list[str] = [
|
18
18
|
"AgentRole",
|
@@ -14,18 +14,20 @@ readme = "README.md"
|
|
14
14
|
homepage = "https://github.com/IBEX-TUDelft/econagents"
|
15
15
|
repository = "https://github.com/IBEX-TUDelft/econagents"
|
16
16
|
dynamic = ["version"]
|
17
|
-
|
18
|
-
[
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
17
|
+
requires-python = ">=3.10,<4"
|
18
|
+
dependencies = [
|
19
|
+
"pydantic>=2.11.5",
|
20
|
+
"requests>=2.32.4",
|
21
|
+
"websockets>=15.0",
|
22
|
+
"openai>=1.89.0",
|
23
|
+
"ollama>=0.5.1",
|
24
|
+
"langsmith>=0.4.1",
|
25
|
+
"langfuse>=3.0.3",
|
26
|
+
]
|
25
27
|
|
26
28
|
[tool.poetry]
|
27
29
|
name = "econagents"
|
28
|
-
version = "0.0.
|
30
|
+
version = "0.0.8" # Do not change, let poetry-dynamic-versioning handle it.
|
29
31
|
packages = [{include = "econagents"}]
|
30
32
|
include = ["econagents/*.so", "econagents/*.pyd"] # Compiled extensions
|
31
33
|
license = "MIT"
|
@@ -38,17 +40,13 @@ generate-setup-file = false
|
|
38
40
|
[tool.poetry.scripts]
|
39
41
|
econagents = "econagents.cli:run_cli"
|
40
42
|
|
41
|
-
[
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
ollama = {version = "^0.5.1", optional = true}
|
49
|
-
langsmith = {version = "^0.4.1", optional = true}
|
50
|
-
langfuse = {version = "^3.0.3", optional = true}
|
51
|
-
|
43
|
+
[project.optional-dependencies]
|
44
|
+
openai = ["openai"]
|
45
|
+
ollama = ["ollama"]
|
46
|
+
langsmith = ["langsmith"]
|
47
|
+
langfuse = ["langfuse"]
|
48
|
+
standard = ["openai", "langsmith"]
|
49
|
+
all = ["openai", "ollama", "langsmith", "langfuse"]
|
52
50
|
|
53
51
|
[tool.poetry.group.docs.dependencies]
|
54
52
|
myst-parser = {extras = ["linkify"], version = "^4.0.1"}
|
@@ -170,11 +168,3 @@ ignore = [
|
|
170
168
|
|
171
169
|
[tool.codespell]
|
172
170
|
skip = 'poetry.lock,'
|
173
|
-
|
174
|
-
[tool.poetry.extras]
|
175
|
-
openai = ["openai"]
|
176
|
-
ollama = ["ollama"]
|
177
|
-
langsmith = ["langsmith"]
|
178
|
-
langfuse = ["langfuse"]
|
179
|
-
standard = ["openai", "langsmith"]
|
180
|
-
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
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|