-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
support and run ruff formatter (#148)
* fix ruff format * fix ruff format * fix ruff format * change pyproject * fix ruff format * fix codespell error
- Loading branch information
Showing
37 changed files
with
966 additions
and
751 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"d544f290-6748-46b5-a82e-fd8f40c1e4cc": { | ||
"pk": "d544f290-6748-46b5-a82e-fd8f40c1e4cc", | ||
"name": "Jane Smith", | ||
"bio": "Expert in NLP", | ||
"collaborators": [], | ||
"institute": "NLP Lab" | ||
}, | ||
"9c581b74-86f6-4577-b400-9221df4c3917": { | ||
"pk": "9c581b74-86f6-4577-b400-9221df4c3917", | ||
"name": "Alice Johnson", | ||
"bio": "Data Scientist", | ||
"collaborators": [], | ||
"institute": "Data Lab" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
{ | ||
"PaperProfile": [], | ||
"AgentPaperReviewLog": [ | ||
{ | ||
"pk": "654935ea-be94-4898-80a4-bb5c7c12f286", | ||
"timestep": 0, | ||
"paper_pk": "paper2", | ||
"agent_pk": "agent2", | ||
"review_score": 4, | ||
"review_content": "Interesting paper" | ||
} | ||
], | ||
"AgentPaperRebuttalLog": [ | ||
{ | ||
"pk": "5387eadb-6a18-44e1-b7a3-55c49c808efd", | ||
"timestep": 0, | ||
"paper_pk": "paper1", | ||
"agent_pk": "agent1", | ||
"rebuttal_content": "I disagree with the review" | ||
} | ||
], | ||
"AgentPaperMetaReviewLog": [ | ||
{ | ||
"pk": "f3bffbbc-c67c-40a5-82f1-200989b2bea9", | ||
"timestep": 0, | ||
"paper_pk": "paper1", | ||
"agent_pk": "agent1", | ||
"decision": true, | ||
"meta_review": "Accept" | ||
} | ||
], | ||
"AgentAgentDiscussionLog": [ | ||
{ | ||
"pk": "67a25e19-2182-4671-9005-a3f95dd3f7c0", | ||
"timestep": 0, | ||
"agent_from_pk": "agent1", | ||
"agent_from_name": "Rex Ying", | ||
"agent_to_pk": "agent2", | ||
"agent_to_name": "John Doe", | ||
"message": "Let's discuss this paper" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
{ | ||
"43653097-1230-48e5-ba17-6f616bc93380": { | ||
"pk": "43653097-1230-48e5-ba17-6f616bc93380", | ||
"title": "Updated Sample Paper 1", | ||
"abstract": "This is the abstract for paper 1", | ||
"authors": [ | ||
"Author A", | ||
"Author B" | ||
], | ||
"url": "http://example.com/paper1", | ||
"timestamp": 1617181723, | ||
"section_contents": null, | ||
"table_captions": null, | ||
"figure_captions": null, | ||
"bibliography": null, | ||
"keywords": [ | ||
"AI", | ||
"ML" | ||
], | ||
"domain": "Computer Science", | ||
"references": null, | ||
"citation_count": 15, | ||
"award": null | ||
}, | ||
"37e9c697-bd7b-40da-975f-579eddc9508e": { | ||
"pk": "37e9c697-bd7b-40da-975f-579eddc9508e", | ||
"title": "Sample Paper 3", | ||
"abstract": "This is the abstract for paper 3", | ||
"authors": [ | ||
"Author D" | ||
], | ||
"url": "http://example.com/paper3", | ||
"timestamp": 1617181789, | ||
"section_contents": null, | ||
"table_captions": null, | ||
"figure_captions": null, | ||
"bibliography": null, | ||
"keywords": [ | ||
"Blockchain" | ||
], | ||
"domain": "Computer Science", | ||
"references": null, | ||
"citation_count": 2, | ||
"award": null | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"ResearchIdea": [ | ||
{ | ||
"pk": "585e0e17-ae53-44a1-a682-e4ee2883655c", | ||
"content": "Blockchain research proposal" | ||
}, | ||
{ | ||
"pk": "baf40f3b-f14b-48a0-bc1c-d84eaefa9e58", | ||
"content": "Updated idea content" | ||
} | ||
], | ||
"ResearchPaper": [] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.