Skip to content

Commit

Permalink
initial commit (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas-Lemoine authored Jul 13, 2023
1 parent 4d99a1c commit 387f459
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion align_data/alignment_newsletter/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@

ALIGNMENT_NEWSLETTER_REGISTRY = [
AlignmentNewsletter(
name = "alignment_newsletter" ,
name = "alignment_newsletter" , id_fields=['url', 'title', 'source']
),
]
6 changes: 4 additions & 2 deletions align_data/blogs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,12 @@
),
SubstackBlog(
name="importai",
url="https://importai.substack.com"
url="https://importai.substack.com",
id_fields=['url', 'title', 'source']
),
SubstackBlog(
name="ml_safety_newsletter",
url="https://newsletter.mlsafety.org"
url="https://newsletter.mlsafety.org",
id_fields=['url', 'title', 'source']
),
]

0 comments on commit 387f459

Please sign in to comment.