21
21
router = APIRouter (prefix = "/generate" , tags = ["Claude" ])
22
22
23
23
# Initialize services
24
- github_service = GitHubService ()
25
24
# claude_service = ClaudeService()
26
25
o3_service = OpenRouterO3Service ()
27
26
28
27
29
- # cache github data for 5 minutes to avoid double API calls from cost and generate
28
+ # cache github data to avoid double API calls from cost and generate
30
29
@lru_cache (maxsize = 100 )
31
- def get_cached_github_data (username : str , repo : str ):
32
- default_branch = github_service .get_default_branch (username , repo )
30
+ def get_cached_github_data (username : str , repo : str , github_pat : str | None = None ):
31
+ # Create a new service instance for each call with the appropriate PAT
32
+ current_github_service = GitHubService (pat = github_pat )
33
+
34
+ default_branch = current_github_service .get_default_branch (username , repo )
33
35
if not default_branch :
34
36
default_branch = "main" # fallback value
35
37
36
- file_tree = github_service .get_github_file_paths_as_list (username , repo )
37
- readme = github_service .get_github_readme (username , repo )
38
+ file_tree = current_github_service .get_github_file_paths_as_list (username , repo )
39
+ readme = current_github_service .get_github_readme (username , repo )
38
40
39
41
return {"default_branch" : default_branch , "file_tree" : file_tree , "readme" : readme }
40
42
41
43
42
44
class ApiRequest (BaseModel ):
43
45
username : str
44
46
repo : str
45
- instructions : str
47
+ instructions : str = ""
46
48
api_key : str | None = None
49
+ github_pat : str | None = None
47
50
48
51
49
52
@router .post ("" )
@@ -63,8 +66,8 @@ async def generate(request: Request, body: ApiRequest):
63
66
]:
64
67
return {"error" : "Example repos cannot be regenerated" }
65
68
66
- # Get cached github data
67
- github_data = get_cached_github_data (body .username , body .repo )
69
+ # Get cached github data with PAT if provided
70
+ github_data = get_cached_github_data (body .username , body .repo , body . github_pat )
68
71
69
72
# Get default branch first
70
73
default_branch = github_data ["default_branch" ]
@@ -205,7 +208,7 @@ async def generate(request: Request, body: ApiRequest):
205
208
async def get_generation_cost (request : Request , body : ApiRequest ):
206
209
try :
207
210
# Get file tree and README content
208
- github_data = get_cached_github_data (body .username , body .repo )
211
+ github_data = get_cached_github_data (body .username , body .repo , body . github_pat )
209
212
file_tree = github_data ["file_tree" ]
210
213
readme = github_data ["readme" ]
211
214
0 commit comments