Skip to content
Open
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
6 changes: 5 additions & 1 deletion cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,11 @@ async def async_main():
args = parser.parse_args()

if os.path.exists(args.logs_path):
os.remove(args.logs_path)
try:
os.remove(args.logs_path)
except PermissionError:
# File is in use, just continue
pass
logger_for_agent_logs = logging.getLogger("agent_logs")
logger_for_agent_logs.setLevel(logging.DEBUG)
# Prevent propagation to root logger to avoid duplicate logs
Expand Down
2 changes: 1 addition & 1 deletion frontend/components/question-input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ const QuestionInput = ({

<div className="flex items-center gap-x-2">
<Tooltip>
<TooltipTrigger>
<TooltipTrigger asChild>
<Button
variant="ghost"
size="icon"
Expand Down
Loading