sentienceapi 0.90.16__py3-none-any.whl → 0.92.2__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.
Potentially problematic release.
This version of sentienceapi might be problematic. Click here for more details.
- sentience/__init__.py +14 -5
- sentience/action_executor.py +215 -0
- sentience/actions.py +408 -25
- sentience/agent.py +802 -293
- sentience/agent_config.py +3 -0
- sentience/async_api.py +83 -1142
- sentience/base_agent.py +95 -0
- sentience/browser.py +484 -1
- sentience/browser_evaluator.py +299 -0
- sentience/cloud_tracing.py +457 -33
- sentience/conversational_agent.py +77 -43
- sentience/element_filter.py +136 -0
- sentience/expect.py +98 -2
- sentience/extension/background.js +56 -185
- sentience/extension/content.js +117 -289
- sentience/extension/injected_api.js +799 -1374
- sentience/extension/manifest.json +1 -1
- sentience/extension/pkg/sentience_core.js +190 -396
- sentience/extension/pkg/sentience_core_bg.wasm +0 -0
- sentience/extension/release.json +47 -47
- sentience/formatting.py +9 -53
- sentience/inspector.py +183 -1
- sentience/llm_interaction_handler.py +191 -0
- sentience/llm_provider.py +74 -52
- sentience/llm_provider_utils.py +120 -0
- sentience/llm_response_builder.py +153 -0
- sentience/models.py +60 -1
- sentience/overlay.py +109 -2
- sentience/protocols.py +228 -0
- sentience/query.py +1 -1
- sentience/read.py +95 -3
- sentience/recorder.py +223 -3
- sentience/schemas/trace_v1.json +102 -9
- sentience/screenshot.py +48 -2
- sentience/sentience_methods.py +86 -0
- sentience/snapshot.py +291 -38
- sentience/snapshot_diff.py +141 -0
- sentience/text_search.py +119 -5
- sentience/trace_event_builder.py +129 -0
- sentience/trace_file_manager.py +197 -0
- sentience/trace_indexing/index_schema.py +95 -7
- sentience/trace_indexing/indexer.py +117 -14
- sentience/tracer_factory.py +119 -6
- sentience/tracing.py +172 -8
- sentience/utils/__init__.py +40 -0
- sentience/utils/browser.py +46 -0
- sentience/utils/element.py +257 -0
- sentience/utils/formatting.py +59 -0
- sentience/utils.py +1 -1
- sentience/visual_agent.py +2056 -0
- sentience/wait.py +68 -2
- {sentienceapi-0.90.16.dist-info → sentienceapi-0.92.2.dist-info}/METADATA +2 -1
- sentienceapi-0.92.2.dist-info/RECORD +65 -0
- sentience/extension/test-content.js +0 -4
- sentienceapi-0.90.16.dist-info/RECORD +0 -50
- {sentienceapi-0.90.16.dist-info → sentienceapi-0.92.2.dist-info}/WHEEL +0 -0
- {sentienceapi-0.90.16.dist-info → sentienceapi-0.92.2.dist-info}/entry_points.txt +0 -0
- {sentienceapi-0.90.16.dist-info → sentienceapi-0.92.2.dist-info}/licenses/LICENSE +0 -0
- {sentienceapi-0.90.16.dist-info → sentienceapi-0.92.2.dist-info}/licenses/LICENSE-APACHE +0 -0
- {sentienceapi-0.90.16.dist-info → sentienceapi-0.92.2.dist-info}/licenses/LICENSE-MIT +0 -0
- {sentienceapi-0.90.16.dist-info → sentienceapi-0.92.2.dist-info}/top_level.txt +0 -0
sentience/wait.py
CHANGED
|
@@ -1,13 +1,16 @@
|
|
|
1
|
+
from typing import Optional
|
|
2
|
+
|
|
1
3
|
"""
|
|
2
4
|
Wait functionality - wait_for element matching selector
|
|
3
5
|
"""
|
|
4
6
|
|
|
7
|
+
import asyncio
|
|
5
8
|
import time
|
|
6
9
|
|
|
7
|
-
from .browser import SentienceBrowser
|
|
10
|
+
from .browser import AsyncSentienceBrowser, SentienceBrowser
|
|
8
11
|
from .models import SnapshotOptions, WaitResult
|
|
9
12
|
from .query import find
|
|
10
|
-
from .snapshot import snapshot
|
|
13
|
+
from .snapshot import snapshot, snapshot_async
|
|
11
14
|
|
|
12
15
|
|
|
13
16
|
def wait_for(
|
|
@@ -71,3 +74,66 @@ def wait_for(
|
|
|
71
74
|
duration_ms=duration_ms,
|
|
72
75
|
timeout=True,
|
|
73
76
|
)
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
async def wait_for_async(
|
|
80
|
+
browser: AsyncSentienceBrowser,
|
|
81
|
+
selector: str | dict,
|
|
82
|
+
timeout: float = 10.0,
|
|
83
|
+
interval: float | None = None,
|
|
84
|
+
use_api: bool | None = None,
|
|
85
|
+
) -> WaitResult:
|
|
86
|
+
"""
|
|
87
|
+
Wait for element matching selector to appear (async)
|
|
88
|
+
|
|
89
|
+
Args:
|
|
90
|
+
browser: AsyncSentienceBrowser instance
|
|
91
|
+
selector: String DSL or dict query
|
|
92
|
+
timeout: Maximum time to wait (seconds)
|
|
93
|
+
interval: Polling interval (seconds). If None, auto-detects:
|
|
94
|
+
- 0.25s for local extension (use_api=False, fast)
|
|
95
|
+
- 1.5s for remote API (use_api=True or default, network latency)
|
|
96
|
+
use_api: Force use of server-side API if True, local extension if False.
|
|
97
|
+
If None, uses API if api_key is set, otherwise uses local extension.
|
|
98
|
+
|
|
99
|
+
Returns:
|
|
100
|
+
WaitResult
|
|
101
|
+
"""
|
|
102
|
+
# Auto-detect optimal interval based on API usage
|
|
103
|
+
if interval is None:
|
|
104
|
+
# Determine if using API
|
|
105
|
+
will_use_api = use_api if use_api is not None else (browser.api_key is not None)
|
|
106
|
+
if will_use_api:
|
|
107
|
+
interval = 1.5 # Longer interval for API calls (network latency)
|
|
108
|
+
else:
|
|
109
|
+
interval = 0.25 # Shorter interval for local extension (fast)
|
|
110
|
+
|
|
111
|
+
start_time = time.time()
|
|
112
|
+
|
|
113
|
+
while time.time() - start_time < timeout:
|
|
114
|
+
# Take snapshot (may be local extension or remote API)
|
|
115
|
+
snap = await snapshot_async(browser, SnapshotOptions(use_api=use_api))
|
|
116
|
+
|
|
117
|
+
# Try to find element
|
|
118
|
+
element = find(snap, selector)
|
|
119
|
+
|
|
120
|
+
if element:
|
|
121
|
+
duration_ms = int((time.time() - start_time) * 1000)
|
|
122
|
+
return WaitResult(
|
|
123
|
+
found=True,
|
|
124
|
+
element=element,
|
|
125
|
+
duration_ms=duration_ms,
|
|
126
|
+
timeout=False,
|
|
127
|
+
)
|
|
128
|
+
|
|
129
|
+
# Wait before next poll
|
|
130
|
+
await asyncio.sleep(interval)
|
|
131
|
+
|
|
132
|
+
# Timeout
|
|
133
|
+
duration_ms = int((time.time() - start_time) * 1000)
|
|
134
|
+
return WaitResult(
|
|
135
|
+
found=False,
|
|
136
|
+
element=None,
|
|
137
|
+
duration_ms=duration_ms,
|
|
138
|
+
timeout=True,
|
|
139
|
+
)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: sentienceapi
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.92.2
|
|
4
4
|
Summary: Python SDK for Sentience AI Agent Browser Automation
|
|
5
5
|
Author: Sentience Team
|
|
6
6
|
License: MIT OR Apache-2.0
|
|
@@ -23,6 +23,7 @@ Requires-Dist: playwright>=1.40.0
|
|
|
23
23
|
Requires-Dist: pydantic>=2.0.0
|
|
24
24
|
Requires-Dist: jsonschema>=4.0.0
|
|
25
25
|
Requires-Dist: requests>=2.31.0
|
|
26
|
+
Requires-Dist: httpx>=0.25.0
|
|
26
27
|
Requires-Dist: playwright-stealth>=1.0.6
|
|
27
28
|
Requires-Dist: markdownify>=0.11.6
|
|
28
29
|
Provides-Extra: dev
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
sentience/__init__.py,sha256=eK71E6tu9I-968WeBciAJgPCnhDx_WAOly6WKW_8vnU,3796
|
|
2
|
+
sentience/_extension_loader.py,sha256=bnZgVE5eZnUk18i2Wm8gplsVekq-fB31DNWOZt5iWpw,1356
|
|
3
|
+
sentience/action_executor.py,sha256=CQmLYgxc_jUQhFrT4-MfyMFOUsAZhAACEux-ApToUbY,8108
|
|
4
|
+
sentience/actions.py,sha256=03x9MwLxTrdpCSMctuTirPffdzrOr1cvYt9nZnymHhg,24175
|
|
5
|
+
sentience/agent.py,sha256=b7yXfP33NmJOjtY2Dk5g4jdsO4pFKZ9QFPhKsYQNQLU,48941
|
|
6
|
+
sentience/agent_config.py,sha256=n6HohW5j4VK3kT23xW7x2Vfz7HvEheb9g4AZ3VWfPpg,1588
|
|
7
|
+
sentience/async_api.py,sha256=3KEt34mqpuRDEaxGphpdkopUje1X8pDB4ESgHP1SAZM,3981
|
|
8
|
+
sentience/base_agent.py,sha256=5yVXe0S72I7GV4NPYySTvHfUAFvHBD4VjsNKSTo8MFo,5786
|
|
9
|
+
sentience/browser.py,sha256=ZdYt9VjeyQ7pkUtk0piDnIekxxYGPMVYcY-RFbqhRrc,43747
|
|
10
|
+
sentience/browser_evaluator.py,sha256=CRiMsutM68dZWHnMIrFzpVzrkUwxVsXpjBplSIWCkso,9772
|
|
11
|
+
sentience/cli.py,sha256=R95DgCSJmezuymAdfL6fzUdB1HpCF3iMWcLO73KJ8eY,3851
|
|
12
|
+
sentience/cloud_tracing.py,sha256=2dpxGXOCEJGLga_LcjMeyrSIKO_1moaEmJIhEaPTXO0,31038
|
|
13
|
+
sentience/conversational_agent.py,sha256=v3FXczfNZdizQA7ejfgEbhGq_zaOboGb3__UaW7Alpo,18551
|
|
14
|
+
sentience/element_filter.py,sha256=aVFrbTDkH-gtMZt07QfBZH3Oq8_KzwQMz17PD1uQ1h0,4021
|
|
15
|
+
sentience/expect.py,sha256=JIhHJ_UGiPvKWbX5SOmX1irOZlko5N5hhhX6d2Ymem0,6177
|
|
16
|
+
sentience/formatting.py,sha256=rptVpktftZZa5YJu4H2-K5dL8pzdIaPO9ONlEGSWnQw,483
|
|
17
|
+
sentience/generator.py,sha256=Wj--yn6bVo02nABBzrAIKPMmU8TRQm3JHAOER9XXT4Y,8035
|
|
18
|
+
sentience/inspector.py,sha256=D4q_GqXUCV3nUJv8uDv2novDbgnkboHOc9ahGeSYw9Q,14562
|
|
19
|
+
sentience/llm_interaction_handler.py,sha256=elvNtmGwIvoRcdra_fvijSONWzhztgdDmuPFJF2Whkw,7218
|
|
20
|
+
sentience/llm_provider.py,sha256=_AFohCMNgvwrfpFJfdoDx98jQ8wwupxTdkGQaxd_wYA,21261
|
|
21
|
+
sentience/llm_provider_utils.py,sha256=Hkr30MzZ5AvROJxEZHW97FINklzU9xoV8lITUQRoFls,3854
|
|
22
|
+
sentience/llm_response_builder.py,sha256=9lKJcfvD2EY7XcJtTYWTLYkxMVv_6nvlKTcGCO1nB2Q,4935
|
|
23
|
+
sentience/models.py,sha256=HSvznc4o7aYn3j23vOMJD5I20rPW100tCAuCvsSkbeI,14737
|
|
24
|
+
sentience/overlay.py,sha256=awphkU0ZvkQrxSwQz7S8rvc3gQIqrDhztcQzzjEnR2c,7738
|
|
25
|
+
sentience/protocols.py,sha256=jXAa-RTxdIlMgISxTlIC8P79JqoD4i5T-cjbtgLjuUk,5667
|
|
26
|
+
sentience/query.py,sha256=TkghEgTkEePxVVtdF9s-Ymzwt-qjzoN0SM5Qk8n-uP8,10484
|
|
27
|
+
sentience/read.py,sha256=W0VSh9aBaIOMfUBcmjFubN1Ax1TmpCF1E74SLensy-g,7109
|
|
28
|
+
sentience/recorder.py,sha256=6cJVmjTT7HpRaet6KvdpTFAPVwFmD30eXHtbAKdwoUw,20636
|
|
29
|
+
sentience/screenshot.py,sha256=BJTPsIeE8irP1bhj4Vti2ohsZn5RkkGFTaZJOB855Pk,3147
|
|
30
|
+
sentience/sentience_methods.py,sha256=NmWmf_xfDt8t6RJs5Gf317EDBDrLcOUmHjDhrGpr4ws,2552
|
|
31
|
+
sentience/snapshot.py,sha256=4oDutMRKQn4ZZl-8eefJrb8tcE0vr9aKzD4nu2Z-9cY,18709
|
|
32
|
+
sentience/snapshot_diff.py,sha256=2ob9MY7aNT4JAVWH89JD5DH16wGvb836V_ukkAl7smM,4757
|
|
33
|
+
sentience/text_search.py,sha256=pnkj93L0bc8pp_QK3zPXec-obEPTUXRwDGGwIHVpIlg,10550
|
|
34
|
+
sentience/trace_event_builder.py,sha256=RkvGnLZ9t15IQIlviZwtheteELjc-HIgA7u618anSFA,4152
|
|
35
|
+
sentience/trace_file_manager.py,sha256=JxvCx-Hzfyy0wP0DHo9JPnrmFNGtLvdCrPfk0mGiqmE,6311
|
|
36
|
+
sentience/tracer_factory.py,sha256=vTyZeixoyxwXdpZNPbKs02wxL5EdBAtq_a02jLB66wc,12911
|
|
37
|
+
sentience/tracing.py,sha256=48J-vmtfhXjrJ4UB3i_oHbBmcKs5UsJ8ixfK3MrMt_Q,13885
|
|
38
|
+
sentience/utils.py,sha256=bM2JwwsxwXb5qzNZicfhlKqnofy-kJT1HFllAuDcglk,8126
|
|
39
|
+
sentience/visual_agent.py,sha256=uoVgn6jAHZepbcJ0x9L8_zNd652l1TDvaoGRtOCClJo,83016
|
|
40
|
+
sentience/wait.py,sha256=sx-87AN1TO_f8UbNP9np8zA0t27zQzQg2c2TltOn2h0,4373
|
|
41
|
+
sentience/extension/background.js,sha256=Om-Wsu-DP0gjKILWjysW7le_BOCKm5YugUuuTMuic14,3754
|
|
42
|
+
sentience/extension/content.js,sha256=gyR-71h84RslnSyV08ioOvVow-lmDPaDlfg3GSGAU_M,7765
|
|
43
|
+
sentience/extension/injected_api.js,sha256=5wCvkNJEnVuFPPSI_ktAh3sQXm24dA6C-SU4KowHknI,51603
|
|
44
|
+
sentience/extension/manifest.json,sha256=3p6EsH4etOF6QI4x3p8c6kSSavM8oNjbKMrP5XVIa3o,897
|
|
45
|
+
sentience/extension/release.json,sha256=e3FqrUFqbgr8dWnMRJPim43KlQKOxB4xAAZIp7pxYok,6141
|
|
46
|
+
sentience/extension/pkg/sentience_core.d.ts,sha256=qrTEIR2WPkk1MmaSQzEpRyagbE9VirHowzZpbj41qeQ,1981
|
|
47
|
+
sentience/extension/pkg/sentience_core.js,sha256=Jzr2TF9xORVQ4ihHEoZXgPqvUje_7j2r-HF88LcPeAY,14210
|
|
48
|
+
sentience/extension/pkg/sentience_core_bg.wasm,sha256=UDkkNT-GJwMSe1iRM-bZNNBNpVXAQJL_d_DGvQM_Chw,103409
|
|
49
|
+
sentience/extension/pkg/sentience_core_bg.wasm.d.ts,sha256=O3c3HaUqmB6Aob6Pt0n3GEtTxM4VGeaClaA_-z2m2J4,517
|
|
50
|
+
sentience/schemas/trace_v1.json,sha256=nN0B9T62glUpRoUMXDTHAh2uskKrIdKcrDmDNtjatKg,11730
|
|
51
|
+
sentience/trace_indexing/__init__.py,sha256=urjLuqqXCQE8pnwpYBqoMKnzZSqFJkM1SHmFve9RVE8,499
|
|
52
|
+
sentience/trace_indexing/index_schema.py,sha256=4ovMC_4t55DUkclq8NnBEEnKUZGfIieSkwMU_aBExKA,6262
|
|
53
|
+
sentience/trace_indexing/indexer.py,sha256=ulJKM7YxvJInMkWRPxyZGGSs4K298b6ZrxikCmDz--0,15629
|
|
54
|
+
sentience/utils/__init__.py,sha256=h8vjeonoe9LF6TeeoJuJ9g6BdsCUP24lhmME7T9jhok,1125
|
|
55
|
+
sentience/utils/browser.py,sha256=pcDlAMgvmkjG13lNXe_LXiHmQs2QRQQBliTZiP7f1wA,1313
|
|
56
|
+
sentience/utils/element.py,sha256=S8AL9T-wqrbSJvJE-qr_Qv2FVk_gRiy6nx30hdRXy4E,6962
|
|
57
|
+
sentience/utils/formatting.py,sha256=IQ-3kLZu1k5ae4rlQ_AxnIkVPeLR9aa8J2NE-dj_eos,1829
|
|
58
|
+
sentienceapi-0.92.2.dist-info/licenses/LICENSE,sha256=jePeclQKwKdmz3jc0Oec6-jQuzwxIcGWPhMfxVII34Q,924
|
|
59
|
+
sentienceapi-0.92.2.dist-info/licenses/LICENSE-APACHE,sha256=YIflUygmGOc0hS_1f6EacrQUrH73G3j8VBQbDoqmY6A,11352
|
|
60
|
+
sentienceapi-0.92.2.dist-info/licenses/LICENSE-MIT,sha256=KiWwku3f8ikn6c8a6t0IdelVEu5GBLLr4tUKdGNNgJ8,1082
|
|
61
|
+
sentienceapi-0.92.2.dist-info/METADATA,sha256=OfEnaVxcxA0txNs2-rFKPXK86-QDnAMfbvO8aNxHYD0,27314
|
|
62
|
+
sentienceapi-0.92.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
63
|
+
sentienceapi-0.92.2.dist-info/entry_points.txt,sha256=HdW1BvgRJm3ZAbbqrwTvDWE2KbmVz-Ue0wllW-mLmvA,49
|
|
64
|
+
sentienceapi-0.92.2.dist-info/top_level.txt,sha256=A9IKao--8PsFFz5vDfBIXWHgN6oh3HkMQSiQWgUTUBQ,10
|
|
65
|
+
sentienceapi-0.92.2.dist-info/RECORD,,
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
sentience/__init__.py,sha256=SFq6-EcrT4HxKerSK3eaZynY703myzFq-fOi5K3YJ3A,3410
|
|
2
|
-
sentience/_extension_loader.py,sha256=bnZgVE5eZnUk18i2Wm8gplsVekq-fB31DNWOZt5iWpw,1356
|
|
3
|
-
sentience/actions.py,sha256=RT8AoR_CNyp6bMCYhkToWH1WB8cyB8dcFJZMhfskTeo,13239
|
|
4
|
-
sentience/agent.py,sha256=IKSxDDCyMyGx8mMvIT4kq3HXtKNaK7BiHNGXnxHCkZc,23844
|
|
5
|
-
sentience/agent_config.py,sha256=blyCUh2pjMOI6YQGLWP8mSi6GTnpzWLWem4nwYg3ngA,1489
|
|
6
|
-
sentience/async_api.py,sha256=NSAM8XO9_ZjqVdOjMEwkeih2BKCXVgUHe7S2T5n8slg,38721
|
|
7
|
-
sentience/base_agent.py,sha256=861XkIJeig9nqdt7f2wfFKyxanGZtDhnrgsMDdXtkFM,2979
|
|
8
|
-
sentience/browser.py,sha256=Mnok-PZPbZVZUAEX9FVIANyaRrjIxaXA7fk6BBegFDo,24388
|
|
9
|
-
sentience/cli.py,sha256=R95DgCSJmezuymAdfL6fzUdB1HpCF3iMWcLO73KJ8eY,3851
|
|
10
|
-
sentience/cloud_tracing.py,sha256=zQv42I7GOoBXMhH5f_RUx8DT_r5IXv2kQOCeAXcMCYQ,13495
|
|
11
|
-
sentience/conversational_agent.py,sha256=8o2bvdaxoqgK-hHM1AVOywwKWyZturp1oLFcl6JtqCw,17258
|
|
12
|
-
sentience/expect.py,sha256=BFSRocNJr6ZAusb6fy4OgfDNCukGfu5jto760bFN12E,2851
|
|
13
|
-
sentience/formatting.py,sha256=0_UklIUd94a4W32gTorjxoXNE03qdffR-omfTA5eHF0,1828
|
|
14
|
-
sentience/generator.py,sha256=Wj--yn6bVo02nABBzrAIKPMmU8TRQm3JHAOER9XXT4Y,8035
|
|
15
|
-
sentience/inspector.py,sha256=TvLi0DIjeFcWdBVqroCMMtN98SX11fLmjg5Tg5dlSdU,7244
|
|
16
|
-
sentience/llm_provider.py,sha256=ylDMUYYbk83Nh9kW6jNvmtg_vS44AersDrii39_Y6m4,20566
|
|
17
|
-
sentience/models.py,sha256=Y-EF7DN5f1PyYp6z9vlYqjEKusjiKzxCqitzPrIJ--w,13242
|
|
18
|
-
sentience/overlay.py,sha256=lPCqLhLGPnBk5X-W4oAaLGI54Pl_VLCS8P1b7PFUdlo,3857
|
|
19
|
-
sentience/query.py,sha256=P9Hs3otwESNncaArUwaw73mNNRFeOgpjy-fOTDQiCOI,10474
|
|
20
|
-
sentience/read.py,sha256=qoSbahcNumvb0mUe-WcWrKrkKCEqya6Ac7wqXFe3SRI,3490
|
|
21
|
-
sentience/recorder.py,sha256=RWzkJP6LWiFAJUfbXQS3aAnRgl7aDrWuKw3slp-gR1Y,12496
|
|
22
|
-
sentience/screenshot.py,sha256=1UJjRvPxPpiL3w1_MBvO_UPMAsmt-uyRujTYA50jim0,1607
|
|
23
|
-
sentience/snapshot.py,sha256=_tR6LTH5Hvam80zEVW3zzvHV4xu5BwALNle4hq12IZU,9266
|
|
24
|
-
sentience/text_search.py,sha256=UF7-Dlo69Stx_vkfcu5ss3dKCVgyWODrafJoJXU9NCw,5753
|
|
25
|
-
sentience/tracer_factory.py,sha256=Fc_kb8ffJVGdy91cnxpxU2xjFZUyS2OiaI2pqtvl2lk,7643
|
|
26
|
-
sentience/tracing.py,sha256=ciYSW3QXcO0BYDtjeKQLfpAysObBIKQKCAlviwU74AQ,7240
|
|
27
|
-
sentience/utils.py,sha256=ryxiDVE_sUPHYmYnWYXADuyciD_ZawmsITDZNUeDVJg,8116
|
|
28
|
-
sentience/wait.py,sha256=BYPK96YU0iza6tjPD-hS01ud48j3ECHgM9TmnemRA5k,2229
|
|
29
|
-
sentience/extension/background.js,sha256=hnK32hVtHJrLtzBeXt2beRmMzr1l0U82r8zZEXyOibk,8954
|
|
30
|
-
sentience/extension/content.js,sha256=UIuFCDTVTkXdaiXB8LMf0OP8SB_WMrMoaav5ZBXmeIo,10442
|
|
31
|
-
sentience/extension/injected_api.js,sha256=Pr5j9MGJTInPOKfKKNuaMDjOJSK3ygM-HlmWAUUS-Yg,63790
|
|
32
|
-
sentience/extension/manifest.json,sha256=MfkfsS5zVxb-scqJllN8aubrRN9vsznQ3-Aw69pZ47c,897
|
|
33
|
-
sentience/extension/release.json,sha256=SnuTzbdXcwAsP4dhp9fMfzlf0wDsaj8Wyn_PpCsOThM,6437
|
|
34
|
-
sentience/extension/test-content.js,sha256=RX6A42W-5pjP-avqGwrRq_GVp5yX2NqBDlDLc-SWL5g,156
|
|
35
|
-
sentience/extension/pkg/sentience_core.d.ts,sha256=qrTEIR2WPkk1MmaSQzEpRyagbE9VirHowzZpbj41qeQ,1981
|
|
36
|
-
sentience/extension/pkg/sentience_core.js,sha256=zldlOubec0pbNYhquwDzoQKuBF4SUVcIeXW_qLx0dVA,17904
|
|
37
|
-
sentience/extension/pkg/sentience_core_bg.wasm,sha256=HtzBY8z4XgRgHHUqHQGm84EEQJirpf25wSVTXg-iJ1g,102522
|
|
38
|
-
sentience/extension/pkg/sentience_core_bg.wasm.d.ts,sha256=O3c3HaUqmB6Aob6Pt0n3GEtTxM4VGeaClaA_-z2m2J4,517
|
|
39
|
-
sentience/schemas/trace_v1.json,sha256=XpByPqRH1xzHmD7YeuaDE5ZaEb3L5fz762djcwXqPV8,7593
|
|
40
|
-
sentience/trace_indexing/__init__.py,sha256=urjLuqqXCQE8pnwpYBqoMKnzZSqFJkM1SHmFve9RVE8,499
|
|
41
|
-
sentience/trace_indexing/index_schema.py,sha256=Hz9igHFrHATTZOqKNiLhESjnGbDPTyRTejMGT1AKC8g,2180
|
|
42
|
-
sentience/trace_indexing/indexer.py,sha256=m-p57Va0cFlCpuMWkXNSHqODpGzpESZzoOkt3OiejlM,10811
|
|
43
|
-
sentienceapi-0.90.16.dist-info/licenses/LICENSE,sha256=jePeclQKwKdmz3jc0Oec6-jQuzwxIcGWPhMfxVII34Q,924
|
|
44
|
-
sentienceapi-0.90.16.dist-info/licenses/LICENSE-APACHE,sha256=YIflUygmGOc0hS_1f6EacrQUrH73G3j8VBQbDoqmY6A,11352
|
|
45
|
-
sentienceapi-0.90.16.dist-info/licenses/LICENSE-MIT,sha256=KiWwku3f8ikn6c8a6t0IdelVEu5GBLLr4tUKdGNNgJ8,1082
|
|
46
|
-
sentienceapi-0.90.16.dist-info/METADATA,sha256=Nlotvwvkv5WMtT5avm1aqoyCRbT1qgqL0kKZL2d8pfQ,27286
|
|
47
|
-
sentienceapi-0.90.16.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
48
|
-
sentienceapi-0.90.16.dist-info/entry_points.txt,sha256=HdW1BvgRJm3ZAbbqrwTvDWE2KbmVz-Ue0wllW-mLmvA,49
|
|
49
|
-
sentienceapi-0.90.16.dist-info/top_level.txt,sha256=A9IKao--8PsFFz5vDfBIXWHgN6oh3HkMQSiQWgUTUBQ,10
|
|
50
|
-
sentienceapi-0.90.16.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|