vibesurf 0.1.40__py3-none-any.whl → 0.1.42__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 vibesurf might be problematic. Click here for more details.
- vibe_surf/_version.py +2 -2
- vibe_surf/agents/report_writer_agent.py +1 -1
- vibe_surf/agents/vibe_surf_agent.py +17 -3
- vibe_surf/browser/agen_browser_profile.py +5 -5
- vibe_surf/browser/agent_browser_session.py +5 -5
- vibe_surf/chrome_extension/scripts/ui-manager.js +1 -1
- vibe_surf/chrome_extension/sidepanel.html +1 -1
- vibe_surf/tools/file_system.py +2 -1
- vibe_surf/tools/vibesurf_tools.py +7 -7
- vibe_surf/utils.py +22 -1
- {vibesurf-0.1.40.dist-info → vibesurf-0.1.42.dist-info}/METADATA +1 -1
- {vibesurf-0.1.40.dist-info → vibesurf-0.1.42.dist-info}/RECORD +16 -16
- {vibesurf-0.1.40.dist-info → vibesurf-0.1.42.dist-info}/WHEEL +0 -0
- {vibesurf-0.1.40.dist-info → vibesurf-0.1.42.dist-info}/entry_points.txt +0 -0
- {vibesurf-0.1.40.dist-info → vibesurf-0.1.42.dist-info}/licenses/LICENSE +0 -0
- {vibesurf-0.1.40.dist-info → vibesurf-0.1.42.dist-info}/top_level.txt +0 -0
vibe_surf/_version.py
CHANGED
|
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
|
|
|
28
28
|
commit_id: COMMIT_ID
|
|
29
29
|
__commit_id__: COMMIT_ID
|
|
30
30
|
|
|
31
|
-
__version__ = version = '0.1.
|
|
32
|
-
__version_tuple__ = version_tuple = (0, 1,
|
|
31
|
+
__version__ = version = '0.1.42'
|
|
32
|
+
__version_tuple__ = version_tuple = (0, 1, 42)
|
|
33
33
|
|
|
34
34
|
__commit_id__ = commit_id = None
|
|
@@ -153,7 +153,7 @@ class ReportWriterAgent:
|
|
|
153
153
|
create_result = await self.file_system.create_file(report_filename)
|
|
154
154
|
logger.info(f"Created report file: {create_result}")
|
|
155
155
|
|
|
156
|
-
max_iterations =
|
|
156
|
+
max_iterations = 20 # Prevent infinite loops
|
|
157
157
|
|
|
158
158
|
# Add system message with unified prompt only if message history is empty
|
|
159
159
|
if not self.message_history:
|
|
@@ -29,6 +29,7 @@ from browser_use.tokens.service import TokenCost
|
|
|
29
29
|
from vibe_surf.agents.browser_use_agent import BrowserUseAgent
|
|
30
30
|
from vibe_surf.agents.report_writer_agent import ReportWriterAgent, ReportTaskResult
|
|
31
31
|
from vibe_surf.agents.views import CustomAgentOutput
|
|
32
|
+
from vibe_surf.utils import check_latest_vibesurf_version, get_vibesurf_version
|
|
32
33
|
|
|
33
34
|
from vibe_surf.agents.prompts.vibe_surf_prompt import (
|
|
34
35
|
VIBESURF_SYSTEM_PROMPT,
|
|
@@ -448,7 +449,8 @@ async def _vibesurf_agent_node_impl(state: VibeSurfState) -> VibeSurfState:
|
|
|
448
449
|
for browser_task in state.browser_tasks:
|
|
449
450
|
bu_task = browser_task.get('task', "")
|
|
450
451
|
if bu_task:
|
|
451
|
-
|
|
452
|
+
bu_task_tabid = browser_task.get('tab_id', "")
|
|
453
|
+
browser_tasks_md.append(f"- [ ] Tab id: {bu_task_tabid} working {bu_task}")
|
|
452
454
|
browser_tasks_md = '\n'.join(browser_tasks_md)
|
|
453
455
|
agent_msg = f"Routing to browser task execution with {len(state.browser_tasks)} browser tasks:\n\n{browser_tasks_md}"
|
|
454
456
|
await log_agent_activity(state, agent_name, "working", agent_msg)
|
|
@@ -624,7 +626,7 @@ async def execute_parallel_browser_tasks(state: VibeSurfState) -> List[BrowserTa
|
|
|
624
626
|
task_description = task_info.get('task', '')
|
|
625
627
|
if not task_description:
|
|
626
628
|
continue
|
|
627
|
-
target_id = task_info.get('
|
|
629
|
+
target_id = task_info.get('tab_id', None)
|
|
628
630
|
register_sessions.append(
|
|
629
631
|
state.vibesurf_agent.browser_manager.register_agent(agent_id, target_id=target_id)
|
|
630
632
|
)
|
|
@@ -756,7 +758,7 @@ async def execute_parallel_browser_tasks(state: VibeSurfState) -> List[BrowserTa
|
|
|
756
758
|
finally:
|
|
757
759
|
# Remove agents from control tracking and cleanup browser sessions
|
|
758
760
|
for i, agent_id in enumerate(bu_agent_ids):
|
|
759
|
-
if
|
|
761
|
+
if pending_tasks[i].get('tab_id', None) is None:
|
|
760
762
|
await state.vibesurf_agent.browser_manager.unregister_agent(agent_id, close_tabs=True)
|
|
761
763
|
if state.vibesurf_agent and hasattr(state.vibesurf_agent, '_running_agents'):
|
|
762
764
|
state.vibesurf_agent._running_agents.pop(agent_id, None)
|
|
@@ -1680,6 +1682,18 @@ Action list should NEVER be empty and Each step can only output one action. If m
|
|
|
1680
1682
|
}
|
|
1681
1683
|
self.activity_logs.append(activity_entry)
|
|
1682
1684
|
|
|
1685
|
+
latest_version = await check_latest_vibesurf_version()
|
|
1686
|
+
current_version = get_vibesurf_version()
|
|
1687
|
+
if latest_version and latest_version != current_version:
|
|
1688
|
+
update_msg = f'📦 Newer version of vibesurf available: {latest_version} (current: {current_version}). \nUpgrade with: \n`uv pip install vibesurf -U`\nor\nDownload [Windows Installer](https://github.com/vibesurf-ai/VibeSurf/releases/latest/download/vibesurf-windows-x64.exe).'
|
|
1689
|
+
logger.info(update_msg)
|
|
1690
|
+
activity_update_tip = {
|
|
1691
|
+
"agent_name": 'System',
|
|
1692
|
+
"agent_status": 'tip', # working, result, error
|
|
1693
|
+
"agent_msg": update_msg
|
|
1694
|
+
}
|
|
1695
|
+
self.activity_logs.append(activity_update_tip)
|
|
1696
|
+
|
|
1683
1697
|
# Initialize state first (needed for file processing)
|
|
1684
1698
|
initial_state = VibeSurfState(
|
|
1685
1699
|
original_task=task,
|
|
@@ -45,11 +45,11 @@ class AgentBrowserProfile(BrowserProfile):
|
|
|
45
45
|
'id': 'edibdbjcniadpccecjdfdjjppcpchdlm',
|
|
46
46
|
'url': 'https://clients2.google.com/service/update2/crx?response=redirect&prodversion=130&acceptformat=crx3&x=id%3Dedibdbjcniadpccecjdfdjjppcpchdlm%26uc',
|
|
47
47
|
},
|
|
48
|
-
{
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
},
|
|
48
|
+
# {
|
|
49
|
+
# 'name': 'Force Background Tab',
|
|
50
|
+
# 'id': 'gidlfommnbibbmegmgajdbikelkdcmcl',
|
|
51
|
+
# 'url': 'https://clients2.google.com/service/update2/crx?response=redirect&prodversion=133&acceptformat=crx3&x=id%3Dgidlfommnbibbmegmgajdbikelkdcmcl%26uc',
|
|
52
|
+
# },
|
|
53
53
|
# {
|
|
54
54
|
# 'name': 'ClearURLs',
|
|
55
55
|
# 'id': 'lckanjgmijmafbedllaakclkaicjfmnk',
|
|
@@ -292,8 +292,8 @@ class AgentBrowserSession(BrowserSession):
|
|
|
292
292
|
self.logger.info(f"Agent {self.id}: Assigned target {target_id}")
|
|
293
293
|
self.agent_focus = await CDPSession.for_target(self._cdp_client_root, target_id, new_socket=True,
|
|
294
294
|
cdp_url=self.cdp_url)
|
|
295
|
-
await self.agent_focus.cdp_client.send.Target.activateTarget(
|
|
296
|
-
|
|
295
|
+
# await self.agent_focus.cdp_client.send.Target.activateTarget(
|
|
296
|
+
# params={'targetId': target_id})
|
|
297
297
|
await self.agent_focus.cdp_client.send.Runtime.runIfWaitingForDebugger(
|
|
298
298
|
session_id=self.agent_focus.session_id)
|
|
299
299
|
self._cdp_session_pool[target_id] = self.agent_focus
|
|
@@ -487,7 +487,7 @@ class AgentBrowserSession(BrowserSession):
|
|
|
487
487
|
self.agent_focus = session
|
|
488
488
|
|
|
489
489
|
# Activate target without events
|
|
490
|
-
await session.cdp_client.send.Target.activateTarget(params={'targetId': target_id})
|
|
490
|
+
# await session.cdp_client.send.Target.activateTarget(params={'targetId': target_id})
|
|
491
491
|
await session.cdp_client.send.Runtime.runIfWaitingForDebugger(session_id=session.session_id)
|
|
492
492
|
else:
|
|
493
493
|
# Use current tab - no tab switching events
|
|
@@ -710,7 +710,7 @@ class AgentBrowserSession(BrowserSession):
|
|
|
710
710
|
)
|
|
711
711
|
self.agent_focus = session
|
|
712
712
|
if focus:
|
|
713
|
-
await session.cdp_client.send.Target.activateTarget(params={'targetId': session.target_id})
|
|
713
|
+
# await session.cdp_client.send.Target.activateTarget(params={'targetId': session.target_id})
|
|
714
714
|
await session.cdp_client.send.Runtime.runIfWaitingForDebugger(session_id=session.session_id)
|
|
715
715
|
# else:
|
|
716
716
|
# self.logger.debug(f'[get_or_create_cdp_session] Reusing existing session for {target_id} (focus={focus})')
|
|
@@ -743,7 +743,7 @@ class AgentBrowserSession(BrowserSession):
|
|
|
743
743
|
f'[get_or_create_cdp_session] Switching agent focus from {self.agent_focus.target_id} to {target_id}'
|
|
744
744
|
)
|
|
745
745
|
self.agent_focus = session
|
|
746
|
-
await session.cdp_client.send.Target.activateTarget(params={'targetId': session.target_id})
|
|
746
|
+
# await session.cdp_client.send.Target.activateTarget(params={'targetId': session.target_id})
|
|
747
747
|
await session.cdp_client.send.Runtime.runIfWaitingForDebugger(session_id=session.session_id)
|
|
748
748
|
else:
|
|
749
749
|
self.logger.debug(
|
|
@@ -1475,7 +1475,7 @@ class VibeSurfUIManager {
|
|
|
1475
1475
|
<div class="task-icon">🔍</div>
|
|
1476
1476
|
<div class="task-content">
|
|
1477
1477
|
<div class="task-title">Research Founders</div>
|
|
1478
|
-
<div class="task-description">Search information about browser
|
|
1478
|
+
<div class="task-description">Search information about AI browser assistant: VibeSurf, write a brief report</div>
|
|
1479
1479
|
</div>
|
|
1480
1480
|
</div>
|
|
1481
1481
|
<div class="task-suggestion" data-task="news">
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
<div class="task-icon">🔍</div>
|
|
89
89
|
<div class="task-content">
|
|
90
90
|
<div class="task-title">Research Founders</div>
|
|
91
|
-
<div class="task-description">Search information about browser
|
|
91
|
+
<div class="task-description">Search information about AI browser assistant: VibeSurf, write a brief report</div>
|
|
92
92
|
</div>
|
|
93
93
|
</div>
|
|
94
94
|
<div class="task-suggestion" data-task="news">
|
vibe_surf/tools/file_system.py
CHANGED
|
@@ -65,7 +65,8 @@ class CustomFileSystem(FileSystem):
|
|
|
65
65
|
|
|
66
66
|
async def display_file(self, full_filename: str) -> str | None:
|
|
67
67
|
"""Display file content using file-specific display method"""
|
|
68
|
-
|
|
68
|
+
if_file_exist = await self.file_exist(full_filename)
|
|
69
|
+
if not if_file_exist:
|
|
69
70
|
return f"{full_filename} does not exist."
|
|
70
71
|
|
|
71
72
|
file_content = await self.read_file(full_filename)
|
|
@@ -281,10 +281,10 @@ Format: [index1, index2, index3, ...]
|
|
|
281
281
|
if params.tab_id:
|
|
282
282
|
target_id = await browser_session.get_target_id_from_tab_id(params.tab_id)
|
|
283
283
|
current_target_id = None
|
|
284
|
-
if browser_session.
|
|
285
|
-
current_target_id = browser_session.
|
|
284
|
+
if browser_session._dom_watchdog and browser_session._dom_watchdog.enhanced_dom_tree:
|
|
285
|
+
current_target_id = browser_session._dom_watchdog.enhanced_dom_tree.target_id
|
|
286
286
|
if current_target_id != target_id:
|
|
287
|
-
browser_session._dom_watchdog.
|
|
287
|
+
browser_session._dom_watchdog.clear_cache()
|
|
288
288
|
await browser_session.get_or_create_cdp_session(target_id, focus=True)
|
|
289
289
|
|
|
290
290
|
# Extract structured content using the existing method
|
|
@@ -340,10 +340,10 @@ Format: [index1, index2, index3, ...]
|
|
|
340
340
|
if params.tab_id:
|
|
341
341
|
target_id = await browser_session.get_target_id_from_tab_id(params.tab_id)
|
|
342
342
|
current_target_id = None
|
|
343
|
-
if browser_session.
|
|
344
|
-
current_target_id = browser_session.
|
|
343
|
+
if browser_session._dom_watchdog and browser_session._dom_watchdog.enhanced_dom_tree:
|
|
344
|
+
current_target_id = browser_session._dom_watchdog.enhanced_dom_tree.target_id
|
|
345
345
|
if current_target_id != target_id:
|
|
346
|
-
browser_session._dom_watchdog.
|
|
346
|
+
browser_session._dom_watchdog.clear_cache()
|
|
347
347
|
await browser_session.get_or_create_cdp_session(target_id, focus=True)
|
|
348
348
|
|
|
349
349
|
# Extract and summarize content
|
|
@@ -1589,7 +1589,7 @@ You will be given a query and the markdown of a webpage that has been filtered t
|
|
|
1589
1589
|
|
|
1590
1590
|
def _register_browser_use_agent(self):
|
|
1591
1591
|
@self.registry.action(
|
|
1592
|
-
'Execute browser_use agent tasks.',
|
|
1592
|
+
'Execute browser_use agent tasks. Please specify a tab id to an agent, if you want to let agent work on this tab.',
|
|
1593
1593
|
param_model=BrowserUseAgentExecution,
|
|
1594
1594
|
)
|
|
1595
1595
|
async def execute_browser_use_agent(
|
vibe_surf/utils.py
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
import pdb
|
|
2
|
+
|
|
3
|
+
import httpx
|
|
4
|
+
|
|
1
5
|
def singleton(cls):
|
|
2
6
|
instance = [None]
|
|
3
7
|
|
|
@@ -10,4 +14,21 @@ def singleton(cls):
|
|
|
10
14
|
|
|
11
15
|
def get_vibesurf_version() -> str:
|
|
12
16
|
import vibe_surf
|
|
13
|
-
return str(vibe_surf.__version__)
|
|
17
|
+
return str(vibe_surf.__version__)
|
|
18
|
+
|
|
19
|
+
async def check_latest_vibesurf_version() -> str | None:
|
|
20
|
+
"""Check the latest version of browser-use from PyPI asynchronously.
|
|
21
|
+
|
|
22
|
+
Returns:
|
|
23
|
+
The latest version string if successful, None if failed
|
|
24
|
+
"""
|
|
25
|
+
try:
|
|
26
|
+
async with httpx.AsyncClient(timeout=3.0) as client:
|
|
27
|
+
response = await client.get('https://pypi.org/pypi/vibesurf/json')
|
|
28
|
+
if response.status_code == 200:
|
|
29
|
+
data = response.json()
|
|
30
|
+
return data['info']['version']
|
|
31
|
+
except Exception:
|
|
32
|
+
# Silently fail - we don't want to break agent startup due to network issues
|
|
33
|
+
pass
|
|
34
|
+
return None
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
vibe_surf/__init__.py,sha256=WtduuMFGauMD_9dpk4fnRnLTAP6ka9Lfu0feAFNzLfo,339
|
|
2
|
-
vibe_surf/_version.py,sha256=
|
|
2
|
+
vibe_surf/_version.py,sha256=S4Y6vzNTKHWfy6-4w9Vapp2NbOduFqK7yS2xfGeE1xI,706
|
|
3
3
|
vibe_surf/cli.py,sha256=pzJs--bjV6ZU7njJnxK_lh76l3pQ3opg_5V9Hw17PQw,21924
|
|
4
4
|
vibe_surf/common.py,sha256=_WWMxen5wFwzUjEShn3yDVC1OBFUiJ6Vccadi6tuG6w,1215
|
|
5
5
|
vibe_surf/logger.py,sha256=k53MFA96QX6t9OfcOf1Zws8PP0OOqjVJfhUD3Do9lKw,3043
|
|
6
|
-
vibe_surf/utils.py,sha256=
|
|
6
|
+
vibe_surf/utils.py,sha256=8To60-uBkfcHowEDwAxN7taKl7kDlFg-vRkErMapYis,835
|
|
7
7
|
vibe_surf/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
8
|
vibe_surf/agents/browser_use_agent.py,sha256=Uj9tbCR5_dbrSSnKuajbL4zP_E9CwLMrdvw0EmDwnC0,34473
|
|
9
|
-
vibe_surf/agents/report_writer_agent.py,sha256=
|
|
10
|
-
vibe_surf/agents/vibe_surf_agent.py,sha256=
|
|
9
|
+
vibe_surf/agents/report_writer_agent.py,sha256=07MobTz7PiypEj_-LnfxLxHhE6woUmLTUELPf3c0fBY,24097
|
|
10
|
+
vibe_surf/agents/vibe_surf_agent.py,sha256=pu_rx6KulOPtcC82j_uZwa3_QtvNzlMvpMsDin31eiw,79582
|
|
11
11
|
vibe_surf/agents/views.py,sha256=yHjNJloa-aofVTGyuRy08tBYP_Y3XLqt1DUWOUmHRng,4825
|
|
12
12
|
vibe_surf/agents/prompts/__init__.py,sha256=l4ieA0D8kLJthyNN85FKLNe4ExBa3stY3l-aImLDRD0,36
|
|
13
13
|
vibe_surf/agents/prompts/report_writer_prompt.py,sha256=sZE8MUT1CDLmRzbnbEQzAvTwJjpITgh2Q8g1_eXmkzE,4454
|
|
@@ -43,8 +43,8 @@ vibe_surf/backend/utils/encryption.py,sha256=LYTKJdOrKfQt8U7GUXIEsns6iBeXnZ7jlOP
|
|
|
43
43
|
vibe_surf/backend/utils/llm_factory.py,sha256=WO2MI83n9p5YraPnmQhq_OEH3TBznm34kqhHpESnFng,9817
|
|
44
44
|
vibe_surf/backend/utils/utils.py,sha256=nY5-DGY4MfPumpQxXLQiodO0Db7lChryWIHbY9h971o,1137
|
|
45
45
|
vibe_surf/browser/__init__.py,sha256=_UToO2fZfSCrfjOcxhn4Qq7ZLbYeyPuUUEmqIva-Yv8,325
|
|
46
|
-
vibe_surf/browser/agen_browser_profile.py,sha256=
|
|
47
|
-
vibe_surf/browser/agent_browser_session.py,sha256=
|
|
46
|
+
vibe_surf/browser/agen_browser_profile.py,sha256=QHLL-jCinep98R1zFJA2QT_3EudIpMnRhrNV1CzUxlc,6187
|
|
47
|
+
vibe_surf/browser/agent_browser_session.py,sha256=9EmFIUXxXZHQkLb3cd9dBIg9NT3qi6FmE8TWpeUoqkA,40383
|
|
48
48
|
vibe_surf/browser/browser_manager.py,sha256=PFJ9flmqR2uokuRZ3PDh_Dy6_6qcQ6kH_eRc1yT6Iq8,11257
|
|
49
49
|
vibe_surf/browser/utils.py,sha256=bBtpMiyz2ixWOr31GbJwZ8pVYcnxztKjTJJO92z1BDY,35742
|
|
50
50
|
vibe_surf/browser/watchdogs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -58,7 +58,7 @@ vibe_surf/chrome_extension/manifest.json,sha256=B08nHuU-bPc-pUr30Y-of39TjMlrE7D5
|
|
|
58
58
|
vibe_surf/chrome_extension/permission-iframe.html,sha256=R6VM1JfrzkfXTTD5mGCKui1dDWTqHEe9n8TtVdZNPNg,948
|
|
59
59
|
vibe_surf/chrome_extension/permission-request.html,sha256=ct1LTl_9euABiHcqNU6AFcvpCAfANWO0y_dDEAjtwfE,2905
|
|
60
60
|
vibe_surf/chrome_extension/popup.html,sha256=n3dI_-WbILm0q8O_za6xX0WvOofz5lwT_7YXs0u9RAE,4248
|
|
61
|
-
vibe_surf/chrome_extension/sidepanel.html,sha256=
|
|
61
|
+
vibe_surf/chrome_extension/sidepanel.html,sha256=GPVNwSHDZEhZVXjEMWvZUu-84qbB0p86Wu-lJC79e-w,47816
|
|
62
62
|
vibe_surf/chrome_extension/icons/logo.icns,sha256=ZzY1eIKF4dNhNW4CeE1UBQloxNVC7bQx3qcClo3CnMQ,1569615
|
|
63
63
|
vibe_surf/chrome_extension/icons/logo.png,sha256=PLmv1E6sCGXUE5ZDxr-pFPQd9Gvaw_f1TnYmF8VIssU,566385
|
|
64
64
|
vibe_surf/chrome_extension/scripts/api-client.js,sha256=qbNoOo33SIoADV5BbSOo_jj9n7FdOPi7v1E5HHhlgSs,16901
|
|
@@ -71,7 +71,7 @@ vibe_surf/chrome_extension/scripts/permission-iframe-request.js,sha256=JTin53qSN
|
|
|
71
71
|
vibe_surf/chrome_extension/scripts/permission-request.js,sha256=9WEeTqMD0tHm1aX2ySkZgJ23siVZLZWAjVQe2dSmnoI,5168
|
|
72
72
|
vibe_surf/chrome_extension/scripts/session-manager.js,sha256=rOPGDTyV1oK-qYfqJKK8mpvQFSdnz0_F0wCcbxPfTSw,21887
|
|
73
73
|
vibe_surf/chrome_extension/scripts/settings-manager.js,sha256=EBMOlAeiEEKY6bDowb_nVT3REtPbNKgMN4xCJoSwFVE,113793
|
|
74
|
-
vibe_surf/chrome_extension/scripts/ui-manager.js,sha256=
|
|
74
|
+
vibe_surf/chrome_extension/scripts/ui-manager.js,sha256=8hAH1GLLJnsZvTftFFicwzSAsDV7JFedicDKloOZFE8,129666
|
|
75
75
|
vibe_surf/chrome_extension/scripts/user-settings-storage.js,sha256=5aGuHXwTokX5wKjdNnu3rVkZv9XoD15FmgCELRRE3Xw,14191
|
|
76
76
|
vibe_surf/chrome_extension/scripts/voice-recorder.js,sha256=rIq9Rhyq-QyeCxJxxZGbnbPC0MCjQtNx6T2UC1g_al4,16852
|
|
77
77
|
vibe_surf/chrome_extension/styles/activity.css,sha256=aEFa_abskrDQvwsesPVOyJW3rUQUEBQpMKPHhY94CoA,19601
|
|
@@ -98,13 +98,13 @@ vibe_surf/telemetry/views.py,sha256=llbXm4GkYLlJc5vYKDDUqcKDCUOJ_ScS22rwzxdSUEc,
|
|
|
98
98
|
vibe_surf/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
99
99
|
vibe_surf/tools/browser_use_tools.py,sha256=Al65_YfOoMk112oeDz1gRgHC08RsaL19DSFr3oG0vCw,30726
|
|
100
100
|
vibe_surf/tools/composio_client.py,sha256=hbvUYiTSlNNRvBQmoVkxtJnd6pXm7PaevcTo1nQZEx8,18822
|
|
101
|
-
vibe_surf/tools/file_system.py,sha256=
|
|
101
|
+
vibe_surf/tools/file_system.py,sha256=p8VqmUPCi7nwj10Q9s4xW4tPBfvr-5GXwAUwUNNIOjA,19418
|
|
102
102
|
vibe_surf/tools/finance_tools.py,sha256=E8rmblp57e_cp0tFbdZ7BY3_upNlk4Whk0bYc_SFCJE,27284
|
|
103
103
|
vibe_surf/tools/mcp_client.py,sha256=ZrwzboDBf7-rtzO8JYpBhvKGg88CMfbrXlhtIs8pXSQ,3167
|
|
104
104
|
vibe_surf/tools/report_writer_tools.py,sha256=2CyTTXOahTKZo7XwyWDDhJ--1mRA0uTtUWxu_DACAY0,776
|
|
105
105
|
vibe_surf/tools/utils.py,sha256=-Hu60Qu0M_gJpU7Ow8WpgBbZzMv_76DsYYj7eFk6M08,4219
|
|
106
106
|
vibe_surf/tools/vibesurf_registry.py,sha256=Z-8d9BrJl3RFMEK0Tw1Q5xNHX2kZGsnIGCTBZ3RM-pw,2159
|
|
107
|
-
vibe_surf/tools/vibesurf_tools.py,sha256=
|
|
107
|
+
vibe_surf/tools/vibesurf_tools.py,sha256=l1BdQYbA2RUcmIhOLvQWN4JGfETgAKs5YqOFTMHhXjQ,113358
|
|
108
108
|
vibe_surf/tools/views.py,sha256=r_xHyBHR-d8cSgvZ-GJVnB4k7pQq9g5gsp882zM70mM,12897
|
|
109
109
|
vibe_surf/tools/voice_asr.py,sha256=AJG0yq_Jq-j8ulDlbPhVFfK1jch9_ASesis73iki9II,4702
|
|
110
110
|
vibe_surf/tools/website_api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -120,9 +120,9 @@ vibe_surf/tools/website_api/xhs/helpers.py,sha256=Dq2RyYKClBQ2ha2yEfpS1mtZswx0z9
|
|
|
120
120
|
vibe_surf/tools/website_api/youtube/__init__.py,sha256=QWmZWSqo1O6XtaWP-SuL3HrBLYINjEWEyOy-KCytGDw,1145
|
|
121
121
|
vibe_surf/tools/website_api/youtube/client.py,sha256=0kKy7fkBNc63hRvDgXaKnguDpDJ92rG8T2nT_Y1F5MQ,51989
|
|
122
122
|
vibe_surf/tools/website_api/youtube/helpers.py,sha256=GPgqfNirLYjIpk1OObvoXd2Ktq-ahKOOKHO2WwQVXCw,12931
|
|
123
|
-
vibesurf-0.1.
|
|
124
|
-
vibesurf-0.1.
|
|
125
|
-
vibesurf-0.1.
|
|
126
|
-
vibesurf-0.1.
|
|
127
|
-
vibesurf-0.1.
|
|
128
|
-
vibesurf-0.1.
|
|
123
|
+
vibesurf-0.1.42.dist-info/licenses/LICENSE,sha256=vRmTjOYvD8RLiSGYYmFHnveYNswtO1uvSk1sd-Eu7sg,2037
|
|
124
|
+
vibesurf-0.1.42.dist-info/METADATA,sha256=EvXPtaRAqT9PT0k6J4DTEyeSqqibAeRT_xdmCib5Lcs,6787
|
|
125
|
+
vibesurf-0.1.42.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
126
|
+
vibesurf-0.1.42.dist-info/entry_points.txt,sha256=UxqpvMocL-PR33S6vLF2OmXn-kVzM-DneMeZeHcPMM8,48
|
|
127
|
+
vibesurf-0.1.42.dist-info/top_level.txt,sha256=VPZGHqSb6EEqcJ4ZX6bHIuWfon5f6HXl3c7BYpbRqnY,10
|
|
128
|
+
vibesurf-0.1.42.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|