oracleagentmemory 0.0.1.dev0__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.
@@ -0,0 +1,82 @@
1
+ Metadata-Version: 2.4
2
+ Name: oracleagentmemory
3
+ Version: 0.0.1.dev0
4
+ Summary: Python library for Oracle Agentic Memory
5
+ Author: Oracle
6
+ License: Proprietary
7
+ Classifier: Development Status :: 3 - Alpha
8
+ Classifier: Intended Audience :: Developers
9
+ Classifier: Operating System :: OS Independent
10
+ Classifier: Programming Language :: Python
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Programming Language :: Python :: 3 :: Only
13
+ Classifier: Programming Language :: Python :: 3.10
14
+ Classifier: Programming Language :: Python :: 3.11
15
+ Classifier: Programming Language :: Python :: 3.12
16
+ Classifier: Programming Language :: Python :: 3.13
17
+ Classifier: Topic :: Software Development :: Libraries
18
+ Requires-Python: >=3.10
19
+ Provides-Extra: benchmark-longmemeval
20
+ Requires-Dist: anyio>=4.11.0; extra == 'benchmark-longmemeval'
21
+ Requires-Dist: backoff>=2.2.1; extra == 'benchmark-longmemeval'
22
+ Requires-Dist: openai>=2.21.0; extra == 'benchmark-longmemeval'
23
+ Requires-Dist: wayflowcore>=26.1.0; extra == 'benchmark-longmemeval'
24
+ Requires-Dist: wayflowexperimental[tracing]; extra == 'benchmark-longmemeval'
25
+ Provides-Extra: dbstore
26
+ Requires-Dist: numpy>=1.23; extra == 'dbstore'
27
+ Requires-Dist: oracledb>=3.4.2; extra == 'dbstore'
28
+ Requires-Dist: sentence-transformers>=2.2.2; extra == 'dbstore'
29
+ Provides-Extra: litellm
30
+ Requires-Dist: litellm>=1.81.5; extra == 'litellm'
31
+ Provides-Extra: mem0
32
+ Requires-Dist: mem0ai; extra == 'mem0'
33
+ Provides-Extra: simplemem
34
+ Requires-Dist: simplemem; extra == 'simplemem'
35
+ Provides-Extra: vectorstore
36
+ Requires-Dist: hnswlib>=0.8.0; extra == 'vectorstore'
37
+ Requires-Dist: numpy>=1.23; extra == 'vectorstore'
38
+ Requires-Dist: sentence-transformers>=2.2.2; extra == 'vectorstore'
39
+ Provides-Extra: wayflow
40
+ Requires-Dist: wayflowcore>=26.1.0; extra == 'wayflow'
41
+ Description-Content-Type: text/markdown
42
+
43
+ # Oracle Memory
44
+
45
+ Client library for the Oracle DB Agent Memory.
46
+
47
+ ## Development
48
+
49
+ This project uses `uv` + `pyproject.toml`.
50
+
51
+ ### Setup
52
+
53
+ - Create venv + install (dev): `uv sync --dev`
54
+
55
+ ### Quality (one command)
56
+
57
+ - Run all checks (lint + type + tests): `uv run tox`
58
+
59
+ ### Quality (individual commands)
60
+
61
+ Formatter:
62
+
63
+ - Check formatting (no changes): `uv run ruff format --check .`
64
+ - Format: `uv run ruff format .`
65
+
66
+ Linter:
67
+
68
+ - Lint (no changes): `uv run ruff check .`
69
+ - Lint + auto-fix: `uv run ruff check . --fix`
70
+
71
+ Type checker:
72
+
73
+ - Type check: `uv run ty check src`
74
+
75
+ Tests:
76
+
77
+ - Tests: `uv run pytest`
78
+
79
+ ### Git hooks
80
+
81
+ - Install pre-commit hook: `uv run pre-commit install`
82
+ - Run hooks on all files: `uv run pre-commit run --all-files`
@@ -0,0 +1,4 @@
1
+ oracleagentmemory-0.0.1.dev0.dist-info/METADATA,sha256=ZKr8vFGLrssXnIueNCh_rQevtdyjf50xtaM-klvMIQ8,2536
2
+ oracleagentmemory-0.0.1.dev0.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
3
+ oracleagentmemory-0.0.1.dev0.dist-info/entry_points.txt,sha256=V8w2uVR6_Tsj4AxTuZhlfdFeu9VkpYpQWi32RckwJOA,54
4
+ oracleagentmemory-0.0.1.dev0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.29.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ oraclememory = oraclememory.cli:app