We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0932f76 commit ebfb656Copy full SHA for ebfb656
agent/agents.py
@@ -86,6 +86,9 @@ def run(
86
format="%(asctime)s - %(name)s - %(levelname)s - %(message)s",
87
)
88
89
+ # Log the message
90
+ logging.info(f"Message Sent: {message} \n\n")
91
+
92
# Redirect print statements to the log file
93
sys.stdout = open(log_file, "a")
94
sys.stderr = open(log_file, "a")
pyproject.toml
@@ -11,6 +11,7 @@ requires-python = ">=3.11"
11
dependencies = [
12
"ruff>=0.6.4",
13
"pre-commit>=3.8.0",
14
+ "import-deps>=0.3.0",
15
"PyMuPDF>=1.24.5",
16
"modal==0.64.95",
17
"typer>=0.12.0",
0 commit comments