diff --git a/README.md b/README.md index c4c070f..d698423 100644 --- a/README.md +++ b/README.md @@ -92,6 +92,8 @@ See [here](https://gentopia.readthedocs.io/en/latest/index.html) for full docume ## News 👷 +**[Oct 7]** The companion paper was accepted by #EMNLP 23. See you in Singapore! 🦙🌎 + **[Aug 6]** We've submitted our work as a paper for EMNLP 2023. Special thanks to the research [team](https://gentopia-ai.github.io/Gentopia-AI-Homepage/#about) and professors from NCSU, GMU, and CMU for collaboration :) ## Join us! 🌎 diff --git a/gentopia/tools/google_scholar.py b/gentopia/tools/google_scholar.py index 51d6d62..0026222 100755 --- a/gentopia/tools/google_scholar.py +++ b/gentopia/tools/google_scholar.py @@ -35,7 +35,7 @@ def _run(self, author: AnyStr, top_k: int = 5) -> str: 'citation': it['citedby'], })) if not ans: - return "no furthur information available" + return "no further information available" return '\n\n'.join(ans) async def _arun(self, *args: Any, **kwargs: Any) -> Any: @@ -72,7 +72,7 @@ def _run(self, interests: AnyStr, top_k: int = 5) -> str: 'citation': it['citedby'], })) if not ans: - return "no furthur information available" + return "no further information available" return '\n\n'.join(ans) async def _arun(self, *args: Any, **kwargs: Any) -> Any: @@ -115,7 +115,7 @@ def _run(self, uid: AnyStr, sort_by: AnyStr, top_k: int = 5) -> str: 'citation': it['num_citations'], })) if not ans: - return "no furthur information available" + return "no further information available" return '\n\n'.join(ans) async def _arun(self, *args: Any, **kwargs: Any) -> Any: @@ -157,7 +157,7 @@ def _run(self, title: AnyStr, sort_by: AnyStr, top_k: int = 5) -> str: 'citation': it['num_citations'], })) if not ans: - return "no furthur information available" + return "no further information available" return '\n\n'.join(ans) async def _arun(self, *args: Any, **kwargs: Any) -> Any: @@ -198,7 +198,7 @@ def _run(self, title: AnyStr, top_k: int = 5) -> str: 'citation': it['num_citations'], })) if not ans: - return "no furthur information available" + return "no further information available" return '\n\n'.join(ans) async def _arun(self, *args: Any, **kwargs: Any) -> Any: @@ -239,7 +239,7 @@ def _run(self, title: AnyStr, top_k: int = 5) -> str: 'citation': it['num_citations'], })) if not ans: - return "no furthur information available" + return "no further information available" return '\n\n'.join(ans) async def _arun(self, *args: Any, **kwargs: Any) -> Any: