Update train_agent.py
Browse files- train_agent.py +1 -1
train_agent.py
CHANGED
|
@@ -26,7 +26,7 @@ else:
|
|
| 26 |
|
| 27 |
# Now try to import AutonomousWebAgent
|
| 28 |
try:
|
| 29 |
-
from agent import AutonomousWebAgent
|
| 30 |
print("Successfully imported AutonomousWebAgent")
|
| 31 |
except ImportError as e:
|
| 32 |
print(f"Error importing AutonomousWebAgent: {e}")
|
|
|
|
| 26 |
|
| 27 |
# Now try to import AutonomousWebAgent
|
| 28 |
try:
|
| 29 |
+
from .agent import AutonomousWebAgent
|
| 30 |
print("Successfully imported AutonomousWebAgent")
|
| 31 |
except ImportError as e:
|
| 32 |
print(f"Error importing AutonomousWebAgent: {e}")
|