Skip to content
Open
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
Binary file modified Agents/AI Service/__pycache__/agency.cpython-312.pyc
Binary file not shown.
17 changes: 13 additions & 4 deletions Agents/AI Service/agency.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,10 +160,19 @@ def draw_border(canvas, doc):
DEV_PROMPT = ChatPromptTemplate.from_messages([
system_prompt(
'''
You are the Lead Developer. For each roadmap phase, generate a JSON section containing an optional "title" plus:
- "tasks": list of task descriptions
- "ci_cd": object with fields "tool" and "pipeline_overview"
Let the model assign its own phase labels based on the roadmap headings. Provide valid JSON only.''' ),
You are the Lead Developer. For each roadmap phase, output a JSON object using markdown-style headings for clarity.
The schema for each phase is:
{
"phase": "<MVP|Growth|Scale>",
"tasks": ["<task1>", ...],
"ci_cd_pipeline": {
"tool": "<tool name>",
"overview": "<pipeline overview>"
}
}
Return an array of these phase objects. Use the key "ci_cd_pipeline" so the CI/CD details appear once under that heading.
Provide valid JSON only.'''
),
human_prompt(
'''
Roadmap:
Expand Down