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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: codeastra
3
- Version: 1.5.1
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
@@ -2,7 +2,7 @@ from .middleware import BlindAgentMiddleware
2
2
  from .client import CodeAstraClient
3
3
  from .wrappers import blind_tool, BlindCrewAIAgent, BlindAutoGPTAgent
4
4
 
5
- __version__ = "1.5.0"
5
+ __version__ = "1.5.2"
6
6
  __all__ = [
7
7
  "BlindAgentMiddleware",
8
8
  "CodeAstraClient",
@@ -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.1
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.1"
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