codeastra 1.5.1__tar.gz → 1.5.2__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.
- {codeastra-1.5.1 → codeastra-1.5.2}/PKG-INFO +1 -1
- {codeastra-1.5.1 → codeastra-1.5.2}/codeastra/__init__.py +1 -1
- {codeastra-1.5.1 → codeastra-1.5.2}/codeastra/middleware.py +5 -0
- {codeastra-1.5.1 → codeastra-1.5.2}/codeastra.egg-info/PKG-INFO +1 -1
- {codeastra-1.5.1 → codeastra-1.5.2}/pyproject.toml +1 -1
- {codeastra-1.5.1 → codeastra-1.5.2}/codeastra/client.py +0 -0
- {codeastra-1.5.1 → codeastra-1.5.2}/codeastra/wrappers.py +0 -0
- {codeastra-1.5.1 → codeastra-1.5.2}/codeastra.egg-info/SOURCES.txt +0 -0
- {codeastra-1.5.1 → codeastra-1.5.2}/codeastra.egg-info/dependency_links.txt +0 -0
- {codeastra-1.5.1 → codeastra-1.5.2}/codeastra.egg-info/requires.txt +0 -0
- {codeastra-1.5.1 → codeastra-1.5.2}/codeastra.egg-info/top_level.txt +0 -0
- {codeastra-1.5.1 → codeastra-1.5.2}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: codeastra
|
|
3
|
-
Version: 1.5.
|
|
3
|
+
Version: 1.5.2
|
|
4
4
|
Summary: Blind Agent SDK — drop-in middleware for LangChain, CrewAI, AutoGPT. Two lines makes any agent blind to real data.
|
|
5
5
|
License-Expression: MIT
|
|
6
6
|
Project-URL: Homepage, https://codeastra.dev
|
|
@@ -500,6 +500,11 @@ _PATTERNS = {
|
|
|
500
500
|
"account_ref": _re.compile(
|
|
501
501
|
r'\bACC-[0-9]{6,12}\b', _re.IGNORECASE
|
|
502
502
|
),
|
|
503
|
+
# Salary/financial amounts: $145,000 $28,000 $1,500,000
|
|
504
|
+
"financial_amount": _re.compile(
|
|
505
|
+
r'\$\d{1,3}(?:,\d{3})+(?:\.\d{2})?\b'
|
|
506
|
+
r'|\$\d{4,}(?:\.\d{2})?\b'
|
|
507
|
+
),
|
|
503
508
|
}
|
|
504
509
|
|
|
505
510
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: codeastra
|
|
3
|
-
Version: 1.5.
|
|
3
|
+
Version: 1.5.2
|
|
4
4
|
Summary: Blind Agent SDK — drop-in middleware for LangChain, CrewAI, AutoGPT. Two lines makes any agent blind to real data.
|
|
5
5
|
License-Expression: MIT
|
|
6
6
|
Project-URL: Homepage, https://codeastra.dev
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "codeastra"
|
|
7
|
-
version = "1.5.
|
|
7
|
+
version = "1.5.2"
|
|
8
8
|
description = "Blind Agent SDK — drop-in middleware for LangChain, CrewAI, AutoGPT. Two lines makes any agent blind to real data."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "MIT"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|