Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@

try:
from autogen_core import DropMessage
from autogen_core.intervention import DefaultInterventionHandler
from autogen_core import intervention as _autogen_intervention # noqa: F401 — feature detection
_INTERVENTION_AVAILABLE = True
except ImportError:
_INTERVENTION_AVAILABLE = False
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,7 @@
import asyncio
import logging
import time
import uuid
import warnings
from dataclasses import dataclass, field
from datetime import datetime, timezone
from functools import wraps
from typing import Any, Callable, Optional
Expand Down
Loading