API Reference¶
This section provides detailed documentation for AmbiAlert's Python API.
Main Module¶
ambi_alert.main.AmbiAlert
¶
Main class that coordinates all AmbiAlert functionality.
Source code in ambi_alert/main.py
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 |
|
Functions¶
__aenter__()
async
¶
Async context manager entry.
Returns:
Type | Description |
---|---|
AmbiAlert
|
Self for use in async with statements |
__aexit__(exc_type, exc_val, exc_tb)
async
¶
__init__(model=None, alert_backend=None, db_path='ambi_alert.db', check_interval=3600)
¶
Initialize AmbiAlert.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
model
|
Optional[HfApiModel]
|
Optional HfApiModel instance to share across components |
None
|
alert_backend
|
Optional[AlertBackend]
|
Optional alert backend for notifications |
None
|
db_path
|
str
|
Path to the SQLite database |
'ambi_alert.db'
|
check_interval
|
int
|
How often to check for updates (in seconds) |
3600
|
Source code in ambi_alert/main.py
add_monitoring_query(query)
async
¶
Add a new query to monitor.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
query
|
str
|
The search query to monitor |
required |
Source code in ambi_alert/main.py
check_content_relevance(content, query)
¶
Use relevance agent to check content relevance and generate summary.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
content
|
str
|
The webpage content |
required |
query
|
str
|
The original search query |
required |
Returns:
Type | Description |
---|---|
tuple[bool, str]
|
Tuple of (is_relevant, explanation/summary) |
Source code in ambi_alert/main.py
check_for_updates()
async
¶
Check all monitored URLs for updates.
Source code in ambi_alert/main.py
expand_query(query)
¶
Use query agent to expand the search query.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
query
|
str
|
The original search query |
required |
Returns:
Type | Description |
---|---|
list[str]
|
List of expanded queries |
find_relevant_urls(query)
¶
Use search agent to find relevant URLs.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
query
|
str
|
The search query |
required |
Returns:
Type | Description |
---|---|
list[str]
|
List of relevant URLs |
Source code in ambi_alert/main.py
is_valid_url(url)
¶
Check if a URL is valid.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
url
|
str
|
URL to validate |
required |
Returns:
Type | Description |
---|---|
bool
|
True if URL is valid |
Source code in ambi_alert/main.py
run_monitor()
async
¶
Run the monitoring loop indefinitely.
Source code in ambi_alert/main.py
options: show_root_heading: true show_source: true
Query Expansion¶
ambi_alert.query_expander.QueryExpanderAgent
¶
Bases: MultiStepAgent
Agent that expands user queries into more comprehensive search terms.
Source code in ambi_alert/query_expander.py
Functions¶
__init__(model=None)
¶
Initialize the query expander agent.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
model
|
Optional[HfApiModel]
|
Optional HfApiModel instance. If None, creates a new one. |
None
|
Source code in ambi_alert/query_expander.py
initialize_system_prompt()
¶
Get the system prompt for this agent.
Returns:
Type | Description |
---|---|
str
|
The system prompt describing the agent's role |
Source code in ambi_alert/query_expander.py
run(query)
¶
Expand a user query into multiple search-optimized queries.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
query
|
str
|
The original user query |
required |
Returns:
Type | Description |
---|---|
list[str]
|
A list of expanded search queries |
Source code in ambi_alert/query_expander.py
step(memory_step)
¶
Execute one step of query expansion.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
memory_step
|
ActionStep
|
The current memory step |
required |
Returns:
Type | Description |
---|---|
Optional[list[str]]
|
List of expanded queries if final step, None otherwise |
Source code in ambi_alert/query_expander.py
options: show_root_heading: true show_source: true
Website Monitoring¶
ambi_alert.monitor.WebsiteMonitor
¶
Monitors websites for changes and determines relevance.
Source code in ambi_alert/monitor.py
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 |
|
Functions¶
__init__(model=None)
¶
Initialize the website monitor.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
model
|
Optional[HfApiModel]
|
Optional HfApiModel instance for relevance checking |
None
|
Source code in ambi_alert/monitor.py
_get_session()
async
¶
check_relevance(content, query)
async
¶
Check if content changes are relevant to the original query.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
content
|
str
|
The content to check |
required |
query
|
str
|
The original search query |
required |
Returns:
Type | Description |
---|---|
tuple[bool, str]
|
Tuple of (is_relevant, explanation) |
Source code in ambi_alert/monitor.py
close()
async
¶
fetch_content(url)
async
¶
Fetch content from a URL asynchronously.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
url
|
str
|
The URL to fetch |
required |
Returns:
Type | Description |
---|---|
Optional[str]
|
The page content if successful, None otherwise |
Source code in ambi_alert/monitor.py
get_content_hash(url)
async
¶
Get a hash of the relevant content from a URL.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
url
|
str
|
The URL to check |
required |
Returns:
Type | Description |
---|---|
str
|
A hash of the page's main content |
Source code in ambi_alert/monitor.py
get_content_hash_from_content(content)
¶
Get a hash of the relevant content from HTML content.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
content
|
str
|
The HTML content to hash |
required |
Returns:
Type | Description |
---|---|
str
|
A hash of the page's main content |
Source code in ambi_alert/monitor.py
get_content_summary(content)
async
¶
Generate a summary of the changed content.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
content
|
str
|
The content to summarize |
required |
Returns:
Type | Description |
---|---|
str
|
A brief summary of the content |
Source code in ambi_alert/monitor.py
options: show_root_heading: true show_source: true
Database Management¶
ambi_alert.database.DatabaseManager
¶
Manages the SQLite database for storing monitored URLs.
Source code in ambi_alert/database.py
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 |
|
Functions¶
__aenter__()
async
¶
Async context manager entry.
Returns:
Type | Description |
---|---|
DatabaseManager
|
Self for use in async with statements |
__aexit__(exc_type, exc_val, exc_tb)
async
¶
__init__(db_path='ambi_alert.db')
¶
Initialize the database manager.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
db_path
|
str
|
Path to the SQLite database file |
'ambi_alert.db'
|
_get_connection()
async
¶
Get or create a database connection.
Returns:
Type | Description |
---|---|
Connection
|
An aiosqlite connection |
Source code in ambi_alert/database.py
_init_db()
async
¶
Initialize the database schema if it doesn't exist.
Source code in ambi_alert/database.py
add_url(url, query, content_hash)
async
¶
Add a new URL to monitor.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
url
|
str
|
The URL to monitor |
required |
query
|
str
|
The search query that found this URL |
required |
content_hash
|
str
|
Hash of the initial content |
required |
Source code in ambi_alert/database.py
close()
async
¶
get_all_urls()
async
¶
Get all monitored URLs with their queries and hashes.
Returns:
Type | Description |
---|---|
list[tuple[str, str, str]]
|
List of tuples containing (url, query, content_hash) |
Source code in ambi_alert/database.py
get_urls_to_check()
async
¶
Get all URLs that need to be checked.
Returns:
Type | Description |
---|---|
list[MonitoredURL]
|
List of MonitoredURL objects |
Source code in ambi_alert/database.py
update_url_check(url_id, content_hash)
async
¶
Update the last check time and content hash for a URL.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
url_id
|
int
|
The ID of the URL in the database |
required |
content_hash
|
str
|
The new content hash |
required |
Source code in ambi_alert/database.py
update_url_hash(url, new_hash)
async
¶
Update the content hash for a URL.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
url
|
str
|
The URL to update |
required |
new_hash
|
str
|
The new content hash |
required |
Source code in ambi_alert/database.py
options: show_root_heading: true show_source: true
ambi_alert.database.MonitoredURL
dataclass
¶
options: show_root_heading: true show_source: true
Alerting System¶
ambi_alert.alerting.AlertManager
¶
Manages sending alerts through configured backends.
Source code in ambi_alert/alerting.py
Functions¶
__init__(backend=None)
¶
Initialize the alert manager.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
backend
|
Optional[AlertBackend]
|
Optional alert backend. Defaults to MockAlertBackend |
None
|
send_change_alert(url, query, summary)
async
¶
Send an alert about a relevant change.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
url
|
str
|
The URL that changed |
required |
query
|
str
|
The original search query |
required |
summary
|
str
|
Summary of the changes |
required |
Returns:
Type | Description |
---|---|
bool
|
True if the alert was sent successfully |
Source code in ambi_alert/alerting.py
options: show_root_heading: true show_source: true
ambi_alert.alerting.AlertBackend
¶
Bases: Protocol
Protocol for alert backends.
Source code in ambi_alert/alerting.py
options: show_root_heading: true show_source: true
ambi_alert.alerting.EmailAlertBackend
¶
Email-based alert backend.
Source code in ambi_alert/alerting.py
Functions¶
__aenter__()
async
¶
__aexit__(exc_type, exc_val, exc_tb)
async
¶
__init__(smtp_server, smtp_port, username, password, from_email, to_email)
¶
Initialize the email alert backend.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
smtp_server
|
str
|
SMTP server hostname |
required |
smtp_port
|
int
|
SMTP server port |
required |
username
|
str
|
SMTP authentication username |
required |
password
|
str
|
SMTP authentication password |
required |
from_email
|
str
|
Sender email address |
required |
to_email
|
str
|
Recipient email address |
required |
Source code in ambi_alert/alerting.py
_get_client()
async
¶
Get or create an SMTP client.
Returns:
Type | Description |
---|---|
SMTP
|
An SMTP client instance |
Source code in ambi_alert/alerting.py
close()
async
¶
send_alert(subject, message)
async
¶
Send an email alert.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
subject
|
str
|
Email subject |
required |
message
|
str
|
Email body |
required |
Returns:
Type | Description |
---|---|
bool
|
True if the email was sent successfully |
Source code in ambi_alert/alerting.py
options: show_root_heading: true show_source: true
ambi_alert.alerting.MockAlertBackend
¶
Mock alert backend for testing.
Source code in ambi_alert/alerting.py
Functions¶
send_alert(subject, message)
async
¶
Print the alert to console instead of sending it.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
subject
|
str
|
Alert subject |
required |
message
|
str
|
Alert message |
required |
Returns:
Type | Description |
---|---|
bool
|
Always returns True |
Source code in ambi_alert/alerting.py
options: show_root_heading: true show_source: true