Skip to content

Commit 265acf1

Browse files
remove init declaration
1 parent 21b3980 commit 265acf1

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

backend/app/prompts.py

+2
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,8 @@
143143
144144
Your output should be valid Mermaid.js code that can be rendered into a diagram.
145145
146+
Do not include an init declaration such as `%%{init: {'key':'etc'}}%%`. This is handled externally. Just return the diagram code.
147+
146148
Your response must strictly be just the Mermaid.js code, without any additional text or explanations.
147149
No code fence or markdown ticks needed, simply return the Mermaid.js code.
148150

backend/app/routers/generate.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ async def generate(request: Request, body: ApiRequest):
142142

143143

144144
@router.post("/cost")
145-
@limiter.limit("5/minute")
145+
# @limiter.limit("5/minute") # TEMP: disable rate limit for growth??
146146
async def get_generation_cost(request: Request, body: ApiRequest):
147147
try:
148148
# Get file tree and README content

0 commit comments

Comments
 (0)