mirror of
https://github.com/qodo-ai/pr-agent.git
synced 2025-12-12 19:05:18 +00:00
9 lines
262 B
Python
9 lines
262 B
Python
|
|
import numpy as np
|
||
|
|
|
||
|
|
from pr_agent.tools.pr_code_suggestions import PRCodeSuggestions
|
||
|
|
|
||
|
|
data = np.load('/Users/talrid/Git/pr-agent/data.npy', allow_pickle=True).tolist()
|
||
|
|
cls=PRCodeSuggestions(pr_url=None)
|
||
|
|
res = cls.generate_summarized_suggestions(data)
|
||
|
|
print(res)
|