@integrity-labs/agt-cli 0.28.957 → 0.28.959

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -15,6 +15,18 @@ var KNOWN_MODEL_SLOTS = new Set(Object.values(FRAMEWORK_MODEL_SLOTS).flat());
15
15
  function modelSlotsForFramework(framework) {
16
16
  return FRAMEWORK_MODEL_SLOTS[framework] ?? [];
17
17
  }
18
+ var AGENT_CLASSES = ["standard", "advanced"];
19
+ var DEFAULT_AGENT_CLASS = "standard";
20
+ function normalizeAgentClass(value) {
21
+ return AGENT_CLASSES.includes(value) ? value : DEFAULT_AGENT_CLASS;
22
+ }
23
+ var AGENT_CLASS_CONTAINER_MEMORY = {
24
+ standard: "2g",
25
+ advanced: "6g"
26
+ };
27
+ function containerMemoryForAgentClass(value) {
28
+ return AGENT_CLASS_CONTAINER_MEMORY[normalizeAgentClass(value)];
29
+ }
18
30
 
19
31
  // ../../packages/core/dist/scheduled-tasks/timezone.js
20
32
  function isUnsetTimezone(tz) {
@@ -14741,6 +14753,7 @@ export {
14741
14753
  DEFAULT_FRAMEWORK,
14742
14754
  isDeprecatedFramework,
14743
14755
  modelSlotsForFramework,
14756
+ containerMemoryForAgentClass,
14744
14757
  isUnsetTimezone,
14745
14758
  resolveAgentTimezone,
14746
14759
  isAgentTimezoneOverrideExpired,
@@ -14911,4 +14924,4 @@ export {
14911
14924
  peekCurrentSession,
14912
14925
  readDailySessionPin
14913
14926
  };
14914
- //# sourceMappingURL=chunk-CRM7ITIY.js.map
14927
+ //# sourceMappingURL=chunk-KCAFGTQM.js.map