Skip to content

Commit

Permalink
log import fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bboynton97 committed Feb 7, 2025
1 parent 0a7eba7 commit cf49ff8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion agentstack/serve/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ RUN #ls -a agentstack
# Debug: Try installing packages one at a time
RUN uv pip install --system psutil
RUN uv pip install --system flask
RUN uv pip install --system git+https://github.com/AgentOps-AI/AgentStack.git@deploy-command #install on cloud #cache 3
RUN uv pip install --system git+https://github.com/AgentOps-AI/AgentStack.git@deploy-command #install on cloud #cache 4
RUN #cd agentstack && uv pip install --system .
RUN mkdir -p src
RUN cp /usr/local/lib/python3.12/site-packages/agentstack/serve/serve.py ./src
Expand Down
3 changes: 1 addition & 2 deletions agentstack/serve/serve.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,11 @@
import sys
from pathlib import Path
from dotenv import load_dotenv
from agentstack import conf, frameworks, inputs
from agentstack import conf, frameworks, inputs, log
from agentstack.exceptions import ValidationError
from agentstack.utils import verify_agentstack_project
# TODO: move this to not cli, but cant be utils due to circular import
from agentstack.cli.run import format_friendly_error_message
from build.lib.agentstack.logger import log

load_dotenv(dotenv_path="/app/.env")

Expand Down

0 comments on commit cf49ff8

Please sign in to comment.