Skip to content

Commit 21b3980

Browse files
update token limit message
1 parent e1ec4a7 commit 21b3980

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/app/routers/generate.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ async def generate(request: Request, body: ApiRequest):
6666
token_count = claude_service.count_tokens(combined_content)
6767
if token_count > 50000:
6868
return {
69-
"error": f"File tree and README combined exceeds token limit (50,000). Current size: {token_count} tokens"
69+
"error": f"File tree and README combined exceeds token limit (50,000). Current size: {token_count} tokens. This GitHub repository is too large for my wallet, but if you still want the diagram and it's under 200k tokens, you can run GitDiagram locally with your own Anthropic API key."
7070
}
7171

7272
# Prepare system prompts with instructions if provided

0 commit comments

Comments
 (0)