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
5 changes: 4 additions & 1 deletion tools/doc_generator/src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,4 +170,7 @@ def save_and_increment_index(state: DocumentProcessingState) -> DocumentProcessi

# Execute
if __name__ == "__main__":
document_processing_app.invoke({"document_index": 0, "llm_output_content": ""})
document_processing_app.invoke(
{"document_index": 0, "llm_output_content": ""},
{"recursion_limit": MAX_DOCUMENTS},
)
5 changes: 5 additions & 0 deletions tools/doc_generator/src/system_prompt.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,9 @@
**TECHNICAL CONTEXT:** [CONTEXT_PLACEHOLDER]

Generate a concise implementation document with exactly 4 actionable GitHub issues. Output only valid JSON.

**TOPIC SELECTION RULES:**
- For each new document, invent a fresh topic related to general software development (e.g., APIs, databases, frontend optimization, CI/CD, cloud infra, etc.).
- Do not repeat topics across runs.
- Avoid defaulting to JWT, authentication, or authorization unless explicitly asked.
"""
Loading