proxima-sdk 1.0.0__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,57 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: proxima-sdk
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Proxima AIP SDK — build AI agents on the Proxima Intelligence platform
|
|
5
|
+
Project-URL: Homepage, https://proximaintel.com/aip
|
|
6
|
+
Project-URL: Documentation, https://docs.proximaintel.com/sdk
|
|
7
|
+
Project-URL: Repository, https://github.com/proximaintel/proxima-sdk
|
|
8
|
+
Author-email: Proxima Intelligence <hello@proximaintel.com>
|
|
9
|
+
License-Expression: MIT
|
|
10
|
+
Keywords: agents,ai,enterprise,platform,proxima
|
|
11
|
+
Classifier: Development Status :: 4 - Beta
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
16
|
+
Requires-Python: >=3.11
|
|
17
|
+
Requires-Dist: httpx>=0.27
|
|
18
|
+
Requires-Dist: pydantic>=2.0
|
|
19
|
+
Description-Content-Type: text/markdown
|
|
20
|
+
|
|
21
|
+
# Proxima SDK
|
|
22
|
+
|
|
23
|
+
The official Python SDK for building AI agents on the **Proxima AIP** platform.
|
|
24
|
+
|
|
25
|
+
## Install
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
pip install proxima-sdk
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Quick Start
|
|
32
|
+
|
|
33
|
+
```python
|
|
34
|
+
from proxima_sdk import PlatformContext
|
|
35
|
+
|
|
36
|
+
def my_tool(params: dict, ctx: PlatformContext) -> dict:
|
|
37
|
+
# Access knowledge bases
|
|
38
|
+
data = ctx.knowledge.query("What invoices are overdue?")
|
|
39
|
+
|
|
40
|
+
# Log actions for governance
|
|
41
|
+
ctx.governance.log_action("queried_invoices")
|
|
42
|
+
|
|
43
|
+
return {"answer": data.answer, "citations": data.citations}
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
## Testing
|
|
47
|
+
|
|
48
|
+
```python
|
|
49
|
+
from proxima_sdk.testing import mock_context
|
|
50
|
+
|
|
51
|
+
ctx = mock_context(sources={"invoices": [{"id": "INV-001", "amount": 5000}]})
|
|
52
|
+
result = my_tool({"query": "overdue"}, ctx)
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
## Documentation
|
|
56
|
+
|
|
57
|
+
Full docs at [docs.proximaintel.com/sdk](https://docs.proximaintel.com/sdk)
|