Skip to content

Commit b43f29a

Browse files
allow users to use personal api key for large repos
1 parent 265acf1 commit b43f29a

File tree

10 files changed

+488
-9
lines changed

10 files changed

+488
-9
lines changed

backend/app/routers/generate.py

+13-3
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ class ApiRequest(BaseModel):
4040
username: str
4141
repo: str
4242
instructions: str
43+
api_key: str | None = None
4344

4445

4546
@router.post("")
@@ -64,9 +65,17 @@ async def generate(request: Request, body: ApiRequest):
6465
# Check combined token count
6566
combined_content = f"{file_tree}\n{readme}"
6667
token_count = claude_service.count_tokens(combined_content)
67-
if token_count > 50000:
68+
69+
# Modified token limit check
70+
if 50000 < token_count < 190000 and not body.api_key:
71+
return {
72+
"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 you can continue by providing your own Anthropic API key.",
73+
"token_count": token_count,
74+
"requires_api_key": True
75+
}
76+
elif token_count > 200000:
6877
return {
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."
78+
"error": f"Repository is too large (>200k tokens) for analysis. Claude 3.5 Sonnet's max context length is 200k tokens. Current size: {token_count} tokens."
7079
}
7180

7281
# Prepare system prompts with instructions if provided
@@ -85,7 +94,8 @@ async def generate(request: Request, body: ApiRequest):
8594
"file_tree": file_tree,
8695
"readme": readme,
8796
"instructions": body.instructions
88-
}
97+
},
98+
api_key=body.api_key
8999
)
90100

91101
# Check for BAD_INSTRUCTIONS response

backend/app/services/claude_service.py

+8-4
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,27 @@
66

77
class ClaudeService:
88
def __init__(self):
9-
self.client = Anthropic()
9+
self.default_client = Anthropic()
1010

11-
def call_claude_api(self, system_prompt: str, data: dict) -> str:
11+
def call_claude_api(self, system_prompt: str, data: dict, api_key: str | None = None) -> str:
1212
"""
1313
Makes an API call to Claude and returns the response.
1414
1515
Args:
1616
system_prompt (str): The instruction/system prompt
1717
data (dict): Dictionary of variables to format into the user message
18+
api_key (str | None): Optional custom API key
1819
1920
Returns:
2021
str: Claude's response text
2122
"""
2223
# Create the user message with the data
2324
user_message = self._format_user_message(data)
2425

25-
message = self.client.messages.create(
26+
# Use custom client if API key provided, otherwise use default
27+
client = Anthropic(api_key=api_key) if api_key else self.default_client
28+
29+
message = client.messages.create(
2630
model="claude-3-5-sonnet-latest",
2731
max_tokens=4096,
2832
temperature=0,
@@ -73,7 +77,7 @@ def count_tokens(self, prompt: str) -> int:
7377
Returns:
7478
int: Number of input tokens
7579
"""
76-
response = self.client.messages.count_tokens(
80+
response = self.default_client.messages.count_tokens(
7781
model="claude-3-5-sonnet-latest",
7882
messages=[{
7983
"role": "user",

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
},
2222
"dependencies": {
2323
"@neondatabase/serverless": "^0.10.4",
24+
"@radix-ui/react-dialog": "^1.1.4",
2425
"@radix-ui/react-progress": "^1.1.1",
2526
"@radix-ui/react-slot": "^1.1.1",
2627
"@radix-ui/react-tooltip": "^1.1.6",

pnpm-lock.yaml

+188
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)