aboutsummaryrefslogtreecommitdiff
path: root/gn3/llms
diff options
context:
space:
mode:
authorAlexander_Kabui2024-05-16 17:50:57 +0300
committerAlexander_Kabui2024-05-16 18:12:48 +0300
commite0aadacbfc23f240c9dad1d0cd430ffcfa99d547 (patch)
treeca1f37bd640da3e2784891597c2c144dd4e41aa4 /gn3/llms
parentfe23477126b482472f6193797f7d88f59421900c (diff)
downloadgenenetwork3-e0aadacbfc23f240c9dad1d0cd430ffcfa99d547.tar.gz
Pylint Fixes.
Diffstat (limited to 'gn3/llms')
-rw-r--r--gn3/llms/client.py83
1 files changed, 34 insertions, 49 deletions
diff --git a/gn3/llms/client.py b/gn3/llms/client.py
index 14dcef3..2e9898f 100644
--- a/gn3/llms/client.py
+++ b/gn3/llms/client.py
@@ -1,13 +1,13 @@
"""Module Contains code for making request to fahamu Api"""
-# pylint: skip-file
+# pylint: disable=C0301
import json
-import string
import time
+
import requests
from requests import Session
-from requests.packages.urllib3.util.retry import Retry
from requests.adapters import HTTPAdapter
-from urllib.parse import quote
+
+from urllib3.util import Retry
from gn3.llms.errors import LLMError
@@ -56,15 +56,14 @@ class GeneNetworkQAClient(Session):
api_key="XXXXXXXXXXXXXXXXXXX...")
"""
- BASE_URL = 'https://genenetwork.fahamuai.com/api/tasks'
-
def __init__(self, account, api_key, version="v3", timeout=30,
total_retries=5, backoff_factor=30):
super().__init__()
self.headers.update(
{"Authorization": "Bearer " + api_key})
- self.answer_url = f"{self.BASE_URL}/answers"
- self.feedback_url = f"{self.BASE_URL}/feedback"
+ self.base_url = "https://genenetwork.fahamuai.com/api/tasks"
+ self.answer_url = f"{self.base_url}/answers"
+ self.feedback_url = f"{self.base_url}/feedback"
adapter = TimeoutHTTPAdapter(
timeout=timeout,
@@ -83,8 +82,8 @@ class GeneNetworkQAClient(Session):
response = requests.post(
self.base_url + extend_url, data={}, headers=my_auth)
response.raise_for_status()
- except requests.exceptions.RequestException as e:
- raise RuntimeError(f"Error making the request: {e}")
+ except requests.exceptions.RequestException as error:
+ raise RuntimeError(f"Error making the request: {error}") from error
if response.status_code != 200:
return GeneNetworkQAClient.negative_status_msg(response), 0
task_id = GeneNetworkQAClient.get_task_id_from_result(response)
@@ -99,36 +98,50 @@ class GeneNetworkQAClient(Session):
""" handler for non 200 response from fahamu api"""
return f"Error: Status code -{response.status_code}- Reason::{response.reason}"
- def ask(self, exUrl, *args, **kwargs):
+ def ask(self, ex_url, *args, **kwargs):
"""fahamu ask api interface"""
- askUrl = self.BASE_URL + exUrl
- res = self.custom_request('POST', askUrl, *args, **kwargs)
- if (res.status_code != 200):
+ res = self.custom_request('POST', f"{self.base_url}{ex_url}", *args, **kwargs)
+ if res.status_code != 200:
return self.negative_status_msg(res), 0
- task_id = self.getTaskIDFromResult(res)
- return res, task_id
+ return res, json.loads(res.text)
def get_answer(self, taskid, *args, **kwargs):
"""Fahamu get answer interface"""
- query = self.answer_url + self.extendTaskID(taskid)
+ query = f"{self.answer_url}?task_id={taskid['task_id']}"
res = self.custom_request('GET', query, *args, **kwargs)
- if (res.status_code != 200):
+ if res.status_code != 200:
return self.negative_status_msg(res), 0
return res, 1
+ @staticmethod
+ def get_task_id_from_result(response):
+ """method to get task_id from response"""
+ task_id = json.loads(response.text)
+ return f"?task_id={task_id.get('task_id', '')}"
+
+ def get_answer_using_task_id(self, extend_url, my_auth):
+ """call this method with task id to fetch response"""
+ try:
+ response = requests.get(
+ self.answer_url + extend_url, data={}, headers=my_auth)
+ response.raise_for_status()
+ return response
+ except requests.exceptions.RequestException as error:
+ raise error
+
def custom_request(self, method, url, *args, **kwargs):
""" make custom request to fahamu api ask and get response"""
max_retries = 50
retry_delay = 3
- for i in range(max_retries):
+ for _i in range(max_retries):
try:
response = super().request(method, url, *args, **kwargs)
response.raise_for_status()
except requests.exceptions.HTTPError as error:
if error.response.status_code == 500:
- raise LLMError(error.request, error.response, f"Response Error with:status_code:{error.response.status_code},Reason for error: Use of Invalid Fahamu Token")
+ raise LLMError(error.request, error.response, f"Response Error with:status_code:{error.response.status_code},Reason for error: Use of Invalid Fahamu Token") from error
elif error.response.status_code == 404:
- raise LLMError(error.request, error.response, f"404 Client Error: Not Found for url: {self.BASE_URL}")
+ raise LLMError(error.request, error.response, f"404 Client Error: Not Found for url: {self.base_url}") from error
raise error
except requests.exceptions.RequestException as error:
raise error
@@ -141,31 +154,3 @@ class GeneNetworkQAClient(Session):
else:
time.sleep(retry_delay)
return response
-
- @staticmethod
- def get_task_id_from_result(response):
- """method to get task_id from response"""
- task_id = json.loads(response.text)
- return f"?task_id={task_id.get('task_id', '')}"
-
- def get_answer_using_task_id(self, extend_url, my_auth):
- """call this method with task id to fetch response"""
- try:
- response = requests.get(
- self.answer_url + extend_url, data={}, headers=my_auth)
- response.raise_for_status()
- return response
- except requests.exceptions.RequestException as error:
- raise error
-
- @staticmethod
- def filter_response_text(val):
- """method to filter out non-printable chacracters"""
- return json.loads(''.join([str(char) for char in val if char
- in string.printable]))
-
- def getTaskIDFromResult(self, res):
- return json.loads(res.text)
-
- def extendTaskID(self, task_id):
- return '?task_id=' + str(task_id['task_id'])