From bc586d811e06c1469bd675371b445fe707538bc5 Mon Sep 17 00:00:00 2001 From: caufieldjh Date: Fri, 15 Nov 2024 12:30:50 -0500 Subject: [PATCH] Update docstrings for some wrappers --- src/curategpt/wrappers/investigation/ess_deepdive_wrapper.py | 2 +- src/curategpt/wrappers/investigation/fairsharing_wrapper.py | 2 +- src/curategpt/wrappers/investigation/jgi_wrapper.py | 2 +- src/curategpt/wrappers/investigation/ncbi_biosample_wrapper.py | 2 +- src/curategpt/wrappers/investigation/nmdc_wrapper.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/curategpt/wrappers/investigation/ess_deepdive_wrapper.py b/src/curategpt/wrappers/investigation/ess_deepdive_wrapper.py index 8ee638d..dbd64b0 100644 --- a/src/curategpt/wrappers/investigation/ess_deepdive_wrapper.py +++ b/src/curategpt/wrappers/investigation/ess_deepdive_wrapper.py @@ -1,4 +1,4 @@ -"""Chat with a KB.""" +"""Wrapper for the ESS-DeepDive API.""" import logging from dataclasses import dataclass, field diff --git a/src/curategpt/wrappers/investigation/fairsharing_wrapper.py b/src/curategpt/wrappers/investigation/fairsharing_wrapper.py index bf963a1..998d59e 100644 --- a/src/curategpt/wrappers/investigation/fairsharing_wrapper.py +++ b/src/curategpt/wrappers/investigation/fairsharing_wrapper.py @@ -1,4 +1,4 @@ -"""Chat with a KB.""" +"""Wrapper for the FAIRSharing API.""" import json import logging diff --git a/src/curategpt/wrappers/investigation/jgi_wrapper.py b/src/curategpt/wrappers/investigation/jgi_wrapper.py index 83da466..b8940ba 100644 --- a/src/curategpt/wrappers/investigation/jgi_wrapper.py +++ b/src/curategpt/wrappers/investigation/jgi_wrapper.py @@ -1,4 +1,4 @@ -"""Chat with a KB.""" +"""Wrapper for JGI Data Search.""" import logging import time diff --git a/src/curategpt/wrappers/investigation/ncbi_biosample_wrapper.py b/src/curategpt/wrappers/investigation/ncbi_biosample_wrapper.py index 56f7fc4..3ff7616 100644 --- a/src/curategpt/wrappers/investigation/ncbi_biosample_wrapper.py +++ b/src/curategpt/wrappers/investigation/ncbi_biosample_wrapper.py @@ -1,4 +1,4 @@ -"""Chat with a KB.""" +"""Wrapper for NCBI Biosample.""" import logging from dataclasses import dataclass diff --git a/src/curategpt/wrappers/investigation/nmdc_wrapper.py b/src/curategpt/wrappers/investigation/nmdc_wrapper.py index f016260..2684c92 100644 --- a/src/curategpt/wrappers/investigation/nmdc_wrapper.py +++ b/src/curategpt/wrappers/investigation/nmdc_wrapper.py @@ -1,4 +1,4 @@ -"""Chat with a KB.""" +"""Wrapper for the National Microbiome Data Collaborative (NMDC) API.""" import logging from dataclasses import dataclass