mirror of
https://github.com/qodo-ai/pr-agent.git
synced 2025-07-05 05:10:38 +08: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)
|