Spaces:
Running
Running
Update backend/agent.py
Browse files- backend/agent.py +4 -4
backend/agent.py
CHANGED
|
@@ -288,7 +288,7 @@ def schedule_meeting(
|
|
| 288 |
send_updates: str = "all", # "all" | "externalOnly" | "none"
|
| 289 |
) -> str:
|
| 290 |
"""
|
| 291 |
-
Create a Google Calendar event (and optional Google Meet link).
|
| 292 |
Returns a human-readable confirmation.
|
| 293 |
"""
|
| 294 |
try:
|
|
@@ -363,7 +363,7 @@ def update_meeting(
|
|
| 363 |
send_updates: str = "all", # "all" | "externalOnly" | "none"
|
| 364 |
) -> str:
|
| 365 |
"""
|
| 366 |
-
Partially update a Google Calendar event (PATCH). Only provided fields are changed.
|
| 367 |
Returns a human-readable confirmation with the updated times and Meet link if present.
|
| 368 |
"""
|
| 369 |
svc = get_gcal_service()
|
|
@@ -413,7 +413,7 @@ def delete_meeting(
|
|
| 413 |
send_updates: str = "all", # notify attendees
|
| 414 |
) -> str:
|
| 415 |
"""
|
| 416 |
-
Delete an event. Returns a short confirmation. If the event is part of a series,
|
| 417 |
this deletes the single instance unless you pass the series master id.
|
| 418 |
"""
|
| 419 |
svc = get_gcal_service()
|
|
@@ -429,7 +429,7 @@ def find_meetings(
|
|
| 429 |
calendar_id: str = "primary",
|
| 430 |
) -> str:
|
| 431 |
"""
|
| 432 |
-
List upcoming events, optionally filtered by time window or free-text q.
|
| 433 |
Returns a compact table with event_id, start, summary.
|
| 434 |
"""
|
| 435 |
svc = get_gcal_service()
|
|
|
|
| 288 |
send_updates: str = "all", # "all" | "externalOnly" | "none"
|
| 289 |
) -> str:
|
| 290 |
"""
|
| 291 |
+
Create a Google Calendar event with krishna (and optional Google Meet link).
|
| 292 |
Returns a human-readable confirmation.
|
| 293 |
"""
|
| 294 |
try:
|
|
|
|
| 363 |
send_updates: str = "all", # "all" | "externalOnly" | "none"
|
| 364 |
) -> str:
|
| 365 |
"""
|
| 366 |
+
Partially update a Google Calendar event with krishna(PATCH). Only provided fields are changed.
|
| 367 |
Returns a human-readable confirmation with the updated times and Meet link if present.
|
| 368 |
"""
|
| 369 |
svc = get_gcal_service()
|
|
|
|
| 413 |
send_updates: str = "all", # notify attendees
|
| 414 |
) -> str:
|
| 415 |
"""
|
| 416 |
+
Delete an event with krishna. Returns a short confirmation. If the event is part of a series,
|
| 417 |
this deletes the single instance unless you pass the series master id.
|
| 418 |
"""
|
| 419 |
svc = get_gcal_service()
|
|
|
|
| 429 |
calendar_id: str = "primary",
|
| 430 |
) -> str:
|
| 431 |
"""
|
| 432 |
+
List upcoming events with krishna, optionally filtered by time window or free-text q.
|
| 433 |
Returns a compact table with event_id, start, summary.
|
| 434 |
"""
|
| 435 |
svc = get_gcal_service()
|