a1identity 2.8.0__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.
- a1identity-2.8.0/.gitignore +66 -0
- a1identity-2.8.0/PKG-INFO +764 -0
- a1identity-2.8.0/a1/__init__.py +12 -0
- a1identity-2.8.0/a1/autogen_tool.py +61 -0
- a1identity-2.8.0/a1/client.py +819 -0
- a1identity-2.8.0/a1/crewai_tool.py +43 -0
- a1identity-2.8.0/a1/langchain_tool.py +100 -0
- a1identity-2.8.0/a1/langgraph_tool.py +241 -0
- a1identity-2.8.0/a1/llamaindex_tool.py +188 -0
- a1identity-2.8.0/a1/middleware.py +211 -0
- a1identity-2.8.0/a1/openai_tool.py +66 -0
- a1identity-2.8.0/a1/otel.py +316 -0
- a1identity-2.8.0/a1/passport.py +283 -0
- a1identity-2.8.0/a1/py.typed +0 -0
- a1identity-2.8.0/a1/semantic_kernel_tool.py +133 -0
- a1identity-2.8.0/a1/siem.py +545 -0
- a1identity-2.8.0/a1/swarm.py +142 -0
- a1identity-2.8.0/a1/vault.py +663 -0
- a1identity-2.8.0/pyproject.toml +64 -0
- a1identity-2.8.0/sdk-python-README.md +692 -0
- a1identity-2.8.0/tests/__init__.py +0 -0
- a1identity-2.8.0/tests/passport_langchain_example.py +148 -0
- a1identity-2.8.0/tests/passport_openai_example.py +160 -0
- a1identity-2.8.0/tests/test_client.py +258 -0
- a1identity-2.8.0/tests/test_logic.py +148 -0
- a1identity-2.8.0/tests/test_passport.py +161 -0
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
# Rust
|
|
2
|
+
/target
|
|
3
|
+
**/target
|
|
4
|
+
|
|
5
|
+
# macOS metadata — never commit these
|
|
6
|
+
.DS_Store
|
|
7
|
+
**/.DS_Store
|
|
8
|
+
._*
|
|
9
|
+
__MACOSX/
|
|
10
|
+
Thumbs.db
|
|
11
|
+
|
|
12
|
+
# Python
|
|
13
|
+
__pycache__/
|
|
14
|
+
*.py[cod]
|
|
15
|
+
*$py.class
|
|
16
|
+
*.so
|
|
17
|
+
.Python
|
|
18
|
+
build/
|
|
19
|
+
develop-eggs/
|
|
20
|
+
dist/
|
|
21
|
+
downloads/
|
|
22
|
+
eggs/
|
|
23
|
+
.eggs/
|
|
24
|
+
lib/
|
|
25
|
+
lib64/
|
|
26
|
+
parts/
|
|
27
|
+
sdist/
|
|
28
|
+
var/
|
|
29
|
+
wheels/
|
|
30
|
+
*.egg-info/
|
|
31
|
+
.installed.cfg
|
|
32
|
+
*.egg
|
|
33
|
+
.pytest_cache/
|
|
34
|
+
.mypy_cache/
|
|
35
|
+
|
|
36
|
+
# Node.js
|
|
37
|
+
node_modules/
|
|
38
|
+
npm-debug.log*
|
|
39
|
+
yarn-debug.log*
|
|
40
|
+
yarn-error.log*
|
|
41
|
+
.pnp.*
|
|
42
|
+
.yarn/
|
|
43
|
+
|
|
44
|
+
# IDE / editor
|
|
45
|
+
.vscode/
|
|
46
|
+
.idea/
|
|
47
|
+
*.swp
|
|
48
|
+
*.swo
|
|
49
|
+
*~
|
|
50
|
+
|
|
51
|
+
# Temporary / logs
|
|
52
|
+
*.log
|
|
53
|
+
tmp/
|
|
54
|
+
temp/
|
|
55
|
+
|
|
56
|
+
# A1 passport keys — never commit signing material
|
|
57
|
+
passport.json
|
|
58
|
+
*.passport.json
|
|
59
|
+
*-key.hex
|
|
60
|
+
.a1/
|
|
61
|
+
|
|
62
|
+
# A1 Studio — generated build output (edit studio/src/ instead)
|
|
63
|
+
studio/index.html
|
|
64
|
+
|
|
65
|
+
# Release patch notes — not permanent documentation
|
|
66
|
+
PLACEMENT.md
|