diff options
author | Alexander_Kabui | 2024-03-26 13:53:43 +0300 |
---|---|---|
committer | Alexander_Kabui | 2024-03-26 13:53:43 +0300 |
commit | 6fd0320510339d18a6d032e3df8c528a94c966df (patch) | |
tree | 4745978f6ff28b06f04f1216dd11dbc3d513faec /gn3/api | |
parent | 800200589a1961a6d2b2de51b8e37699c4f00c0d (diff) | |
download | genenetwork3-6fd0320510339d18a6d032e3df8c528a94c966df.tar.gz |
fetch pubmed file from /gn-meta/lit
Diffstat (limited to 'gn3/api')
-rw-r--r-- | gn3/api/llm.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gn3/api/llm.py b/gn3/api/llm.py index e857365..661d055 100644 --- a/gn3/api/llm.py +++ b/gn3/api/llm.py @@ -45,7 +45,7 @@ def gnqa(): try: auth_token = current_app.config.get("FAHAMU_AUTH_TOKEN") task_id, answer, refs = get_gnqa( - query, auth_token, current_app.config.get("TMPDIR", "/tmp")) + query, auth_token, current_app.config.get("DATA_DIR")) response = { "task_id": task_id, @@ -77,10 +77,10 @@ def rating(task_id): results.get("answer"), results.get("weight", 0)) - logging.debug("the user id %s", str(user_id)) # get base name for sqlite llm_path = os.path.join(os.path.dirname( current_app.config["AUTH_DB"]), "llm.db") + logging.info("lmdb path is %s",llm_path) with db.connection(llm_path) as conn: cursor = conn.cursor() create_table = """CREATE TABLE IF NOT EXISTS Rating( |