dasein-core 0.2.3__tar.gz → 0.2.4__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.
Files changed (29) hide show
  1. {dasein_core-0.2.3/src/dasein_core.egg-info → dasein_core-0.2.4}/PKG-INFO +1 -1
  2. {dasein_core-0.2.3 → dasein_core-0.2.4}/pyproject.toml +61 -61
  3. {dasein_core-0.2.3 → dasein_core-0.2.4}/src/dasein/api.py +3487 -3487
  4. {dasein_core-0.2.3 → dasein_core-0.2.4}/src/dasein/capture.py +66 -4
  5. {dasein_core-0.2.3 → dasein_core-0.2.4/src/dasein_core.egg-info}/PKG-INFO +1 -1
  6. {dasein_core-0.2.3 → dasein_core-0.2.4}/LICENSE +0 -0
  7. {dasein_core-0.2.3 → dasein_core-0.2.4}/MANIFEST.in +0 -0
  8. {dasein_core-0.2.3 → dasein_core-0.2.4}/README.md +0 -0
  9. {dasein_core-0.2.3 → dasein_core-0.2.4}/examples/dasein_examples.ipynb +0 -0
  10. {dasein_core-0.2.3 → dasein_core-0.2.4}/setup.cfg +0 -0
  11. {dasein_core-0.2.3 → dasein_core-0.2.4}/setup.py +0 -0
  12. {dasein_core-0.2.3 → dasein_core-0.2.4}/src/dasein/__init__.py +0 -0
  13. {dasein_core-0.2.3 → dasein_core-0.2.4}/src/dasein/advice_format.py +0 -0
  14. {dasein_core-0.2.3 → dasein_core-0.2.4}/src/dasein/config.py +0 -0
  15. {dasein_core-0.2.3 → dasein_core-0.2.4}/src/dasein/events.py +0 -0
  16. {dasein_core-0.2.3 → dasein_core-0.2.4}/src/dasein/extractors.py +0 -0
  17. {dasein_core-0.2.3 → dasein_core-0.2.4}/src/dasein/injection_strategies.py +0 -0
  18. {dasein_core-0.2.3 → dasein_core-0.2.4}/src/dasein/injector.py +0 -0
  19. {dasein_core-0.2.3 → dasein_core-0.2.4}/src/dasein/services/__init__.py +0 -0
  20. {dasein_core-0.2.3 → dasein_core-0.2.4}/src/dasein/services/post_run_client.py +0 -0
  21. {dasein_core-0.2.3 → dasein_core-0.2.4}/src/dasein/services/pre_run_client.py +0 -0
  22. {dasein_core-0.2.3 → dasein_core-0.2.4}/src/dasein/services/service_adapter.py +0 -0
  23. {dasein_core-0.2.3 → dasein_core-0.2.4}/src/dasein/services/service_config.py +0 -0
  24. {dasein_core-0.2.3 → dasein_core-0.2.4}/src/dasein/trace_buffer.py +0 -0
  25. {dasein_core-0.2.3 → dasein_core-0.2.4}/src/dasein/types.py +0 -0
  26. {dasein_core-0.2.3 → dasein_core-0.2.4}/src/dasein_core.egg-info/SOURCES.txt +0 -0
  27. {dasein_core-0.2.3 → dasein_core-0.2.4}/src/dasein_core.egg-info/dependency_links.txt +0 -0
  28. {dasein_core-0.2.3 → dasein_core-0.2.4}/src/dasein_core.egg-info/requires.txt +0 -0
  29. {dasein_core-0.2.3 → dasein_core-0.2.4}/src/dasein_core.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dasein-core
3
- Version: 0.2.3
3
+ Version: 0.2.4
4
4
  Summary: Universal memory for agentic AI. Attach a brain to any LangChain/LangGraph agent in a single line.
5
5
  Author-email: Dasein Team <support@dasein.ai>
6
6
  License: MIT
@@ -1,61 +1,61 @@
1
- [build-system]
2
- requires = ["setuptools>=61.0", "wheel"]
3
- build-backend = "setuptools.build_meta"
4
-
5
- [project]
6
- name = "dasein-core"
7
- version = "0.2.3"
8
- description = "Universal memory for agentic AI. Attach a brain to any LangChain/LangGraph agent in a single line."
9
- readme = "README.md"
10
- requires-python = ">=3.8"
11
- authors = [
12
- {name = "Dasein Team", email = "support@dasein.ai"}
13
- ]
14
- license = {text = "MIT"}
15
- keywords = ["ai", "agents", "langchain", "langgraph", "memory", "learning", "agentic"]
16
- classifiers = [
17
- "Development Status :: 4 - Beta",
18
- "Intended Audience :: Developers",
19
- "License :: OSI Approved :: MIT License",
20
- "Programming Language :: Python :: 3",
21
- "Programming Language :: Python :: 3.8",
22
- "Programming Language :: Python :: 3.9",
23
- "Programming Language :: Python :: 3.10",
24
- "Programming Language :: Python :: 3.11",
25
- "Programming Language :: Python :: 3.12",
26
- "Topic :: Scientific/Engineering :: Artificial Intelligence",
27
- "Topic :: Software Development :: Libraries :: Python Modules",
28
- ]
29
- dependencies = [
30
- "langchain>=0.1.0",
31
- "langchain-community>=0.1.0",
32
- "langchain-google-genai>=0.0.6",
33
- "sqlalchemy>=2.0",
34
- "tabulate>=0.9.0",
35
- "python-dotenv>=1.0",
36
- "requests>=2.31.0,<2.35.0", # Relaxed for Colab compatibility
37
- ]
38
-
39
- [project.urls]
40
- Homepage = "https://github.com/nickswami/dasein-core"
41
- Repository = "https://github.com/nickswami/dasein-core"
42
- Documentation = "https://github.com/nickswami/dasein-core#readme"
43
- "Bug Tracker" = "https://github.com/nickswami/dasein-core/issues"
44
-
45
- [project.optional-dependencies]
46
- dev = [
47
- "pytest>=7.0",
48
- "pytest-asyncio>=0.21.0",
49
- "black>=23.0",
50
- "ruff>=0.1.0",
51
- ]
52
-
53
- [tool.setuptools.packages.find]
54
- where = ["src"]
55
-
56
- [tool.setuptools.package-dir]
57
- "" = "src"
58
-
59
- [tool.setuptools.package-data]
60
- dasein = ["py.typed"]
61
-
1
+ [build-system]
2
+ requires = ["setuptools>=61.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "dasein-core"
7
+ version = "0.2.4"
8
+ description = "Universal memory for agentic AI. Attach a brain to any LangChain/LangGraph agent in a single line."
9
+ readme = "README.md"
10
+ requires-python = ">=3.8"
11
+ authors = [
12
+ {name = "Dasein Team", email = "support@dasein.ai"}
13
+ ]
14
+ license = {text = "MIT"}
15
+ keywords = ["ai", "agents", "langchain", "langgraph", "memory", "learning", "agentic"]
16
+ classifiers = [
17
+ "Development Status :: 4 - Beta",
18
+ "Intended Audience :: Developers",
19
+ "License :: OSI Approved :: MIT License",
20
+ "Programming Language :: Python :: 3",
21
+ "Programming Language :: Python :: 3.8",
22
+ "Programming Language :: Python :: 3.9",
23
+ "Programming Language :: Python :: 3.10",
24
+ "Programming Language :: Python :: 3.11",
25
+ "Programming Language :: Python :: 3.12",
26
+ "Topic :: Scientific/Engineering :: Artificial Intelligence",
27
+ "Topic :: Software Development :: Libraries :: Python Modules",
28
+ ]
29
+ dependencies = [
30
+ "langchain>=0.1.0",
31
+ "langchain-community>=0.1.0",
32
+ "langchain-google-genai>=0.0.6",
33
+ "sqlalchemy>=2.0",
34
+ "tabulate>=0.9.0",
35
+ "python-dotenv>=1.0",
36
+ "requests>=2.31.0,<2.35.0", # Relaxed for Colab compatibility
37
+ ]
38
+
39
+ [project.urls]
40
+ Homepage = "https://github.com/nickswami/dasein-core"
41
+ Repository = "https://github.com/nickswami/dasein-core"
42
+ Documentation = "https://github.com/nickswami/dasein-core#readme"
43
+ "Bug Tracker" = "https://github.com/nickswami/dasein-core/issues"
44
+
45
+ [project.optional-dependencies]
46
+ dev = [
47
+ "pytest>=7.0",
48
+ "pytest-asyncio>=0.21.0",
49
+ "black>=23.0",
50
+ "ruff>=0.1.0",
51
+ ]
52
+
53
+ [tool.setuptools.packages.find]
54
+ where = ["src"]
55
+
56
+ [tool.setuptools.package-dir]
57
+ "" = "src"
58
+
59
+ [tool.setuptools.package-data]
60
+ dasein = ["py.typed"]
61
+