spectron-google-adk 0.1.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.
@@ -0,0 +1,8 @@
1
+ # Spectron connection. The SDK never reads these itself; the examples in this
2
+ # repo load them and pass the values to the client explicitly.
3
+ SPECTRON_ENDPOINT=https://api.spectron.example
4
+ SPECTRON_API_KEY=sk-spec-your-key-here
5
+ SPECTRON_CONTEXT=acme-prod
6
+
7
+ # Google ADK model provider. Required for the example agents to talk to Gemini.
8
+ GOOGLE_API_KEY=your-google-api-key-here
@@ -0,0 +1,57 @@
1
+ name: CI
2
+
3
+ on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
+ branches: [main]
8
+
9
+ concurrency:
10
+ group: ci-${{ github.ref }}
11
+ cancel-in-progress: true
12
+
13
+ jobs:
14
+ test:
15
+ name: test (py${{ matrix.python-version }})
16
+ runs-on: ubuntu-latest
17
+ strategy:
18
+ fail-fast: false
19
+ matrix:
20
+ python-version: ["3.10", "3.11", "3.12", "3.13"]
21
+ steps:
22
+ - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
23
+
24
+ - name: Set up Python
25
+ uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
26
+ with:
27
+ python-version: ${{ matrix.python-version }}
28
+ cache: pip
29
+
30
+ - name: Install dependencies
31
+ run: |
32
+ python -m pip install --upgrade pip
33
+ pip install -e ".[dev]"
34
+
35
+ - name: Lint
36
+ run: ruff check .
37
+
38
+ - name: Test
39
+ run: pytest -q
40
+
41
+ build:
42
+ name: build distribution
43
+ runs-on: ubuntu-latest
44
+ steps:
45
+ - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
46
+
47
+ - name: Set up Python
48
+ uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
49
+ with:
50
+ python-version: "3.12"
51
+ cache: pip
52
+
53
+ - name: Build and check
54
+ run: |
55
+ python -m pip install --upgrade pip build twine
56
+ python -m build
57
+ twine check dist/*
@@ -0,0 +1,61 @@
1
+ name: Release
2
+
3
+ # Publish to PyPI via Trusted Publishing (OIDC — no API tokens).
4
+ # Fires only on v-prefixed tags, e.g. `v0.1.0`.
5
+ on:
6
+ push:
7
+ tags: ["v*"]
8
+
9
+ permissions: {}
10
+
11
+ jobs:
12
+ build:
13
+ name: build distribution
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
17
+
18
+ - name: Set up Python
19
+ uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
20
+ with:
21
+ python-version: "3.12"
22
+ cache: pip
23
+
24
+ - name: Check tag matches package version
25
+ run: |
26
+ tag="${GITHUB_REF_NAME#v}"
27
+ version="$(python -c 'import tomllib; print(tomllib.load(open("pyproject.toml","rb"))["project"]["version"])')"
28
+ if [ "$tag" != "$version" ]; then
29
+ echo "::error::Tag '$GITHUB_REF_NAME' (=$tag) does not match pyproject version '$version'"
30
+ exit 1
31
+ fi
32
+ echo "Releasing version $version"
33
+
34
+ - name: Build and check
35
+ run: |
36
+ python -m pip install --upgrade pip build twine
37
+ python -m build
38
+ twine check dist/*
39
+
40
+ - name: Upload distribution artifacts
41
+ uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
42
+ with:
43
+ name: dist
44
+ path: dist/
45
+
46
+ publish:
47
+ name: publish to PyPI
48
+ needs: build
49
+ runs-on: ubuntu-latest
50
+ environment: pypi
51
+ permissions:
52
+ id-token: write # required for PyPI Trusted Publishing
53
+ steps:
54
+ - name: Download distribution artifacts
55
+ uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
56
+ with:
57
+ name: dist
58
+ path: dist/
59
+
60
+ - name: Publish to PyPI
61
+ uses: pypa/gh-action-pypi-publish@cef221092ed1bacb1cc03d23a2d87d1d172e277b # v1.14.0
@@ -0,0 +1,20 @@
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *.egg-info/
5
+ build/
6
+ dist/
7
+ .eggs/
8
+
9
+ # Virtual environments
10
+ .venv/
11
+ venv/
12
+ env/
13
+
14
+ # Environment files
15
+ .env
16
+
17
+ # Tooling caches
18
+ .pytest_cache/
19
+ .mypy_cache/
20
+ .ruff_cache/
@@ -0,0 +1,202 @@
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ APPENDIX: How to apply the Apache License to your work.
180
+
181
+ To apply the Apache License to your work, attach the following
182
+ boilerplate notice, with the fields enclosed by brackets "[]"
183
+ replaced with your own identifying information. (Don't include
184
+ the brackets!) The text should be enclosed in the appropriate
185
+ comment syntax for the file format. We also recommend that a
186
+ file or class name and description of purpose be included on the
187
+ same "printed page" as the copyright notice for easier
188
+ identification within third-party archives.
189
+
190
+ Copyright 2026 SurrealDB Ltd.
191
+
192
+ Licensed under the Apache License, Version 2.0 (the "License");
193
+ you may not use this file except in compliance with the License.
194
+ You may obtain a copy of the License at
195
+
196
+ http://www.apache.org/licenses/LICENSE-2.0
197
+
198
+ Unless required by applicable law or agreed to in writing, software
199
+ distributed under the License is distributed on an "AS IS" BASIS,
200
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
+ See the License for the specific language governing permissions and
202
+ limitations under the License.
@@ -0,0 +1,205 @@
1
+ Metadata-Version: 2.4
2
+ Name: spectron-google-adk
3
+ Version: 0.1.0
4
+ Summary: SurrealDB Spectron memory as tools for Google Agent Development Kit (ADK) agents.
5
+ Project-URL: Homepage, https://surrealdb.com/platform/spectron
6
+ Project-URL: Documentation, https://surrealdb.com/docs/learn/spectron
7
+ Project-URL: Repository, https://github.com/surrealdb-dev/spectron-google-adk
8
+ Author: SurrealDB
9
+ License-Expression: Apache-2.0
10
+ License-File: LICENSE
11
+ Keywords: adk,agent,google-adk,llm,memory,spectron,surrealdb
12
+ Classifier: Development Status :: 4 - Beta
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: License :: OSI Approved :: Apache Software License
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Programming Language :: Python :: 3.13
20
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
21
+ Classifier: Topic :: Software Development :: Libraries
22
+ Requires-Python: >=3.10
23
+ Requires-Dist: google-adk>=1.0.0
24
+ Requires-Dist: surrealdb>=3.0.0a1
25
+ Provides-Extra: dev
26
+ Requires-Dist: pytest-asyncio>=0.23; extra == 'dev'
27
+ Requires-Dist: pytest>=8.0; extra == 'dev'
28
+ Requires-Dist: ruff>=0.6; extra == 'dev'
29
+ Description-Content-Type: text/markdown
30
+
31
+ # spectron-google-adk
32
+
33
+ Give [Google ADK](https://github.com/google/adk-python) agents persistent
34
+ memory backed by [Spectron](https://surrealdb.com/platform/spectron),
35
+ SurrealDB's agent-memory layer.
36
+
37
+ This package wraps Spectron's memory verbs as ADK tools. An agent can store
38
+ facts, search them back, forget them, and reason over them, with memory that
39
+ survives restarts and separate conversations. Spectron handles entity
40
+ extraction, knowledge-graph storage, temporal facts, and hybrid retrieval; this
41
+ package is the thin layer that hands those verbs to an ADK agent.
42
+
43
+ ## Install
44
+
45
+ ```bash
46
+ pip install spectron-google-adk
47
+ ```
48
+
49
+ This pulls in `google-adk` and `surrealdb`. The Spectron client ships in the
50
+ `surrealdb` package (3.0.0a1 and later), which is installed for you from PyPI.
51
+
52
+ ## Configuration
53
+
54
+ Spectron needs a context id, an endpoint, and an API key. The Spectron SDK does
55
+ not read environment variables itself, so you pass these in explicitly. For
56
+ scripts, `SpectronConfig.from_env()` reads them from the environment for you:
57
+
58
+ ```bash
59
+ export SPECTRON_CONTEXT="acme-prod"
60
+ export SPECTRON_ENDPOINT="https://api.spectron.example"
61
+ export SPECTRON_API_KEY="sk-spec-..."
62
+ export GOOGLE_API_KEY="your-google-api-key" # used by the ADK model
63
+ ```
64
+
65
+ See `.env.example` for the full list.
66
+
67
+ ## Quickstart
68
+
69
+ ```python
70
+ import asyncio
71
+ from google.adk.agents import Agent
72
+ from google.adk.runners import InMemoryRunner
73
+ from spectron_google_adk import SpectronToolset
74
+
75
+ async def main():
76
+ toolset = SpectronToolset(
77
+ context="acme-prod",
78
+ endpoint="https://api.spectron.example",
79
+ api_key="sk-spec-...",
80
+ )
81
+
82
+ agent = Agent(
83
+ model="gemini-2.5-flash",
84
+ name="assistant",
85
+ description="An assistant with persistent memory.",
86
+ instruction="Store durable facts with remember and look things up with recall.",
87
+ tools=[toolset],
88
+ )
89
+
90
+ runner = InMemoryRunner(agent=agent)
91
+ try:
92
+ await runner.run_debug("Remember: Acme Corp, healthcare, 1.2M dollar contract.")
93
+ events = await runner.run_debug("What healthcare contracts do we have?")
94
+ for event in events:
95
+ if event.is_final_response() and event.content:
96
+ for part in event.content.parts:
97
+ if part.text:
98
+ print(part.text)
99
+ finally:
100
+ await runner.close()
101
+ await toolset.close()
102
+
103
+ asyncio.run(main())
104
+ ```
105
+
106
+ `SpectronToolset` extends ADK's `BaseToolset`, so an ADK `Runner` closes it on
107
+ shutdown. When the toolset creates the client, `close()` closes that client too.
108
+
109
+ ## Two ways to build tools
110
+
111
+ ### SpectronToolset (recommended)
112
+
113
+ Owns the client and manages its lifecycle. Add it to an agent as a single item
114
+ in the `tools` list:
115
+
116
+ ```python
117
+ toolset = SpectronToolset(config=SpectronConfig.from_env())
118
+ agent = Agent(model="gemini-2.5-flash", name="assistant", tools=[toolset])
119
+ ```
120
+
121
+ ### get_spectron_tools (for quick scripts)
122
+
123
+ Returns a plain list of tools. Pass your own `client` when you want to control
124
+ its lifecycle; otherwise the client it creates lives for the process:
125
+
126
+ ```python
127
+ from surrealdb.spectron import AsyncSpectron
128
+ from spectron_google_adk import get_spectron_tools
129
+
130
+ client = AsyncSpectron(context="acme-prod", endpoint="...", api_key="sk-...")
131
+ tools = get_spectron_tools(client=client)
132
+ agent = Agent(model="gemini-2.5-flash", name="assistant", tools=tools)
133
+ ```
134
+
135
+ ## Session and tenant isolation
136
+
137
+ Bind a `session_id` (and optionally a `scope`) when you build the tools. The
138
+ values are fixed at build time and are not exposed to the model, so an agent
139
+ cannot read or write outside its slice of memory:
140
+
141
+ ```python
142
+ toolset = SpectronToolset(config=config, session_id="user-123")
143
+ ```
144
+
145
+ Two agents built with the same `session_id` share memory; agents on different
146
+ session ids stay isolated. See `examples/sessionized_memory.py`.
147
+
148
+ ## Choosing which verbs to expose
149
+
150
+ By default all of the verbs below are available. Pass `include=[...]` to expose
151
+ a subset, for example a collector agent that can only write and a researcher
152
+ agent that can only read (see `examples/multi_agent.py`):
153
+
154
+ ```python
155
+ collector = SpectronToolset(config=config, include=["remember"])
156
+ researcher = SpectronToolset(config=config, include=["recall", "reflect"])
157
+ ```
158
+
159
+ ## Tools
160
+
161
+ | Tool | Argument | What the agent uses it for |
162
+ | --- | --- | --- |
163
+ | `remember` | `text` | Store a fact, preference, or piece of information. |
164
+ | `recall` | `query` | Search memory and get back ranked matching passages. |
165
+ | `forget` | `query` | Remove information that matches a description. |
166
+ | `reflect` | `query` | Get a written summary synthesized from memory, with evidence. |
167
+ | `chat` | `message` | Ask memory a question and get a grounded natural-language answer. |
168
+ | `consolidate` | (none) | Pool recent facts into durable observations. |
169
+ | `elaborate` | `entity_ref` | Expand an entity's relationships from stored facts. |
170
+ | `query_context` | `query` | Build a composed context string for grounding a response. |
171
+ | `inspect` | `ref` | Inspect a single memory object by reference. |
172
+ | `state` | (none) | Get a snapshot of current working memory. |
173
+
174
+ Every tool returns a JSON-safe dict with a `status` key that is `"success"` or
175
+ `"error"`. A failed Spectron request becomes
176
+ `{"status": "error", "message": ..., "status_code": ..., "trace_id": ...}` so
177
+ the model sees it as data rather than the agent turn failing.
178
+
179
+ ## Examples
180
+
181
+ - `examples/quickstart.py` - one agent that stores a fact and recalls it.
182
+ - `examples/sessionized_memory.py` - memory isolation across sessions.
183
+ - `examples/multi_agent.py` - a writer agent and a reader agent sharing a context.
184
+
185
+ Fill in `.env` from `.env.example`, then run any example, for example
186
+ `python examples/quickstart.py`.
187
+
188
+ ## Development
189
+
190
+ ```bash
191
+ pip install -e ".[dev]"
192
+ pytest
193
+ ```
194
+
195
+ The tests use a fake client, so they need no network access or credentials.
196
+
197
+ ## Links
198
+
199
+ - Spectron: https://surrealdb.com/platform/spectron
200
+ - Spectron docs: https://surrealdb.com/docs/learn/spectron
201
+ - Google ADK: https://github.com/google/adk-python
202
+
203
+ ## License
204
+
205
+ Apache 2.0. See [LICENSE](LICENSE).