fix: cap builder knative scale at one
All checks were successful
build / build (push) Successful in 21s
All checks were successful
build / build (push) Successful in 21s
This commit is contained in:
2
agent.py
2
agent.py
@@ -278,4 +278,4 @@ def _find_url(value: Any) -> str | None:
|
||||
m = _URL_RE.search(value)
|
||||
return m.group(0) if m else None
|
||||
return None
|
||||
# rebuild against a2a-pack 0.1.33 for workspace-backed DeepAgents artifacts
|
||||
# rebuild against a2a-pack 0.1.34 for single-pod Knative agent defaults
|
||||
|
||||
@@ -28,7 +28,7 @@ if TYPE_CHECKING:
|
||||
from .config import Settings
|
||||
|
||||
|
||||
A2A_PACK_MIN_VERSION = "0.1.33"
|
||||
A2A_PACK_MIN_VERSION = "0.1.34"
|
||||
|
||||
|
||||
@dataclass(frozen=True)
|
||||
|
||||
@@ -13,7 +13,7 @@ spec:
|
||||
app: agent-builder
|
||||
annotations:
|
||||
autoscaling.knative.dev/minScale: "0"
|
||||
autoscaling.knative.dev/maxScale: "20"
|
||||
autoscaling.knative.dev/maxScale: "1"
|
||||
autoscaling.knative.dev/metric: concurrency
|
||||
autoscaling.knative.dev/target: "1"
|
||||
spec:
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
a2a-pack>=0.1.33
|
||||
a2a-pack>=0.1.34
|
||||
httpx>=0.27
|
||||
boto3>=1.34
|
||||
deepagents>=0.5.0
|
||||
|
||||
Reference in New Issue
Block a user