Merge branch 'main' into copilot/update-api-providers-configs

This commit is contained in:
Giacomo Bertolazzi
2025-10-27 18:53:24 +01:00
committed by GitHub
27 changed files with 464 additions and 1129 deletions

View File

@@ -17,7 +17,7 @@ class TestSocialAPIsTool:
assert len(result) > 0
for post in result:
assert post.title is not None
assert post.time is not None
assert post.timestamp is not None
def test_social_api_tool_get_top_all_results(self):
tool = SocialAPIsTool()
@@ -27,4 +27,4 @@ class TestSocialAPIsTool:
for _provider, posts in result.items():
for post in posts:
assert post.title is not None
assert post.time is not None
assert post.timestamp is not None