mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-26 01:06:23 +02:00
- Optimized the vision autocomplete service by starting the SSE stream immediately and deriving KB search queries directly from window titles. - Refactored the service to run KB filesystem pre-computation and agent graph compilation in parallel, improving performance. - Updated the SuggestionPage component to handle new agent step data, displaying progress indicators for each step. - Enhanced the CSS for the suggestion tooltip and agent activity indicators, improving the user interface and experience.
11 lines
277 B
Python
11 lines
277 B
Python
"""Agent-based vision autocomplete with scoped filesystem exploration."""
|
|
|
|
from app.agents.autocomplete.autocomplete_agent import (
|
|
create_autocomplete_agent,
|
|
stream_autocomplete_agent,
|
|
)
|
|
|
|
__all__ = [
|
|
"create_autocomplete_agent",
|
|
"stream_autocomplete_agent",
|
|
]
|