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
12 changes: 8 additions & 4 deletions docker/production/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ services:
environment:
- PORT=8000
- LOG_LEVEL=INFO
# AÑADE ESTO:
- HTTP_PROXY=http://proxy.int.local:3128
- HTTPS_PROXY=http://proxy.int.local:3128
- NO_PROXY=127.0.0.1,localhost,analysis-engine,mcp-server,analysis-engine,choco-analysis-engine
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8000/health"]
interval: 30s
Expand All @@ -49,7 +53,7 @@ services:
# AÑADE ESTO:
- HTTP_PROXY=http://proxy.int.local:3128
- HTTPS_PROXY=http://proxy.int.local:3128
- NO_PROXY=127.0.0.1,localhost,analysis-engine,mcp-server,analysis-engine
- NO_PROXY=127.0.0.1,localhost,analysis-engine,mcp-server,analysis-engine,choco-analysis-engine
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:3000/health"]
interval: 30s
Expand All @@ -76,7 +80,7 @@ services:
# AÑADE ESTO:
- HTTP_PROXY=http://proxy.int.local:3128
- HTTPS_PROXY=http://proxy.int.local:3128
- NO_PROXY=127.0.0.1,localhost,analysis-engine,mcp-server,analysis-engine
- NO_PROXY=127.0.0.1,localhost,analysis-engine,mcp-server,analysis-engine,choco-analysis-engine
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8000/health"]
interval: 30s
Expand All @@ -103,7 +107,7 @@ services:
# AÑADE ESTO:
- HTTP_PROXY=http://proxy.int.local:3128
- HTTPS_PROXY=http://proxy.int.local:3128
- NO_PROXY=127.0.0.1,localhost,analysis-engine,a-mint,mcp-server,analysis-engine
- NO_PROXY=127.0.0.1,localhost,analysis-engine,a-mint,mcp-server,analysis-engine,choco-analysis-engine
ports:
- "8085:8085"
depends_on:
Expand All @@ -130,7 +134,7 @@ services:
# AÑADE ESTO:
- HTTP_PROXY=http://proxy.int.local:3128
- HTTPS_PROXY=http://proxy.int.local:3128
- NO_PROXY=127.0.0.1,localhost,analysis-engine,a-mint,mcp-server,analysis-engine
- NO_PROXY=127.0.0.1,localhost,analysis-engine,a-mint,mcp-server,analysis-engine,choco-analysis-engine
depends_on:
- a-mint
- analysis-engine
Expand Down
3 changes: 3 additions & 0 deletions frontend/src/modules/harvey/components/ContextManager.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,9 @@ function ContextManager({ items, detectedUrls, onAdd, onRemove, onClear }: Props
All pricings detected or added via URL will be modeled automatically; this process can
take up to 30-60 minutes.
</Alert>
<Alert severity="warning" sx={{ mt: 1 }}>
Due to temporary production limits, URL extraction might trigger a "LoadError". Please wait for the loading icon in the pricing context box to disappear; once complete, you can proceed to ask questions normally.
</Alert>
</Box>
<Box sx={{ display: 'flex', alignItems: 'center', gap: 2 }}>
<Typography variant="body2" sx={{ color: grey[600] }}>
Expand Down
Loading