- Add RoutingWorkflow: generic state machine executor for WorkflowSpec - Add LLM Router: natural language → WorkflowSpec generation - Add RetrieveMemoryActivity: query poimen-memory for context - Add activities: AnalyzeCode, SecurityScan, GenerateReport, Notify, etc. - Add agent-prompts/router: LLM prompt documentation - Extend starter with --route flag for routing workflows - Remove orchestrator job (trigger via API/message instead) - Clean up: move docs to Desktop, add .gitignore for *.md
This commit is contained in:
@@ -13,8 +13,8 @@ spec:
|
||||
labels:
|
||||
app: poimen-worker
|
||||
annotations:
|
||||
git-commit: "38dd3f8d" # ✅ Updated on each push, triggers rolling restart
|
||||
deployment-date: "2026-08-31"
|
||||
git-commit: "303e78f7" # ✅ Updated on each push, triggers rolling restart
|
||||
deployment-date: "2026-09-02"
|
||||
spec:
|
||||
containers:
|
||||
- name: worker
|
||||
@@ -52,7 +52,15 @@ spec:
|
||||
name: poimen-secrets
|
||||
key: ANTHROPIC_API_KEY
|
||||
- name: LOCAL_LLM_BASE_URL
|
||||
value: "http://api-gateway.api:8080"
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
name: poimen-config
|
||||
key: LOCAL_LLM_BASE_URL
|
||||
- name: POIMEN_MEMORY_URL
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
name: poimen-config
|
||||
key: POIMEN_MEMORY_URL
|
||||
resources:
|
||||
requests:
|
||||
memory: "512Mi"
|
||||
|
||||
Reference in New Issue
Block a user