rusticai-serpapi 0.0.2__tar.gz → 0.0.3__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.
- {rusticai_serpapi-0.0.2 → rusticai_serpapi-0.0.3}/PKG-INFO +2 -2
- {rusticai_serpapi-0.0.2 → rusticai_serpapi-0.0.3}/pyproject.toml +3 -3
- {rusticai_serpapi-0.0.2 → rusticai_serpapi-0.0.3}/src/rustic_ai/serpapi/agent.py +1 -1
- {rusticai_serpapi-0.0.2 → rusticai_serpapi-0.0.3}/README.md +0 -0
- {rusticai_serpapi-0.0.2 → rusticai_serpapi-0.0.3}/src/rustic_ai/serpapi/__init__.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: rusticai-serpapi
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.3
|
|
4
4
|
Summary: Rustic AI module supporting Search through SerpApi
|
|
5
5
|
Home-page: https://www.rustic.ai/
|
|
6
6
|
License: Apache-2.0
|
|
@@ -12,7 +12,7 @@ Classifier: Programming Language :: Python :: 3
|
|
|
12
12
|
Classifier: Programming Language :: Python :: 3.12
|
|
13
13
|
Classifier: Programming Language :: Python :: 3.13
|
|
14
14
|
Provides-Extra: test
|
|
15
|
-
Requires-Dist: rusticai-core (>=0.0.
|
|
15
|
+
Requires-Dist: rusticai-core (>=0.0.7,<0.1.0)
|
|
16
16
|
Requires-Dist: serpapi (>=0.1.5,<0.2.0)
|
|
17
17
|
Project-URL: Repository, https://github.com/rustic-ai/python-framework
|
|
18
18
|
Project-URL: Rustic AI Core, https://pypi.org/project/rusticai-core/
|
|
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
|
|
|
4
4
|
|
|
5
5
|
[tool.poetry]
|
|
6
6
|
name = "rusticai-serpapi"
|
|
7
|
-
version = "0.0.
|
|
7
|
+
version = "0.0.3"
|
|
8
8
|
description = "Rustic AI module supporting Search through SerpApi"
|
|
9
9
|
authors = ["Dragonscale Industries Inc. <dev@dragonscale.ai>"]
|
|
10
10
|
license = "Apache-2.0"
|
|
@@ -18,7 +18,7 @@ packages = [{ include = "rustic_ai", from = "src" }]
|
|
|
18
18
|
|
|
19
19
|
[tool.poetry.dependencies]
|
|
20
20
|
python = "^3.12"
|
|
21
|
-
rusticai-core = "
|
|
21
|
+
rusticai-core = { version = "0.0.7"}
|
|
22
22
|
serpapi = "^0.1.5"
|
|
23
23
|
|
|
24
24
|
[tool.poetry-monorepo.deps]
|
|
@@ -34,7 +34,7 @@ flake8 = "^7.1.2"
|
|
|
34
34
|
tox = "^4.24.1"
|
|
35
35
|
isort = "^6.0.0"
|
|
36
36
|
mypy = "^1.15.0"
|
|
37
|
-
rusticai-testing = {
|
|
37
|
+
rusticai-testing = { version = "0.0.3"}
|
|
38
38
|
|
|
39
39
|
[tool.poetry.extras]
|
|
40
40
|
test = ["pytest", "rusticai-testing"]
|
|
@@ -68,7 +68,7 @@ class SERPAgent(Agent):
|
|
|
68
68
|
|
|
69
69
|
self.serp_api_key = os.getenv("SERP_API_KEY", "")
|
|
70
70
|
assert self.serp_api_key, "SERP_API_KEY environment variable not set"
|
|
71
|
-
self.client = serpapi.Client(api_key=self.serp_api_key)
|
|
71
|
+
self.client = serpapi.Client(api_key=self.serp_api_key) # type: ignore
|
|
72
72
|
|
|
73
73
|
@agent.processor(SERPQuery)
|
|
74
74
|
def search(self, ctx: agent.ProcessContext[SERPQuery]) -> None:
|
|
File without changes
|
|
File without changes
|