about summary refs log tree commit diff
path: root/gn3/llms
diff options
context:
space:
mode:
Diffstat (limited to 'gn3/llms')
-rw-r--r--gn3/llms/client.py2
-rw-r--r--gn3/llms/process.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/gn3/llms/client.py b/gn3/llms/client.py
index 41f7292..a91edb5 100644
--- a/gn3/llms/client.py
+++ b/gn3/llms/client.py
@@ -50,7 +50,7 @@ class GeneNetworkQAClient(Session):
         super().__init__()
         self.headers.update(
             {"Authorization": "Bearer " + api_key})
-        self.base_url = "https://genenetwork.fahamuai.com/api/tasks"
+        self.base_url = "http://balg-qa.genenetwork.org/api/tasks"
         self.answer_url = f"{self.base_url}/answers"
         self.feedback_url = f"{self.base_url}/feedback"
         self.query = ""
diff --git a/gn3/llms/process.py b/gn3/llms/process.py
index b8e47e7..da95bb8 100644
--- a/gn3/llms/process.py
+++ b/gn3/llms/process.py
@@ -10,7 +10,7 @@ from urllib.parse import quote
 from gn3.llms.client import GeneNetworkQAClient
 
 
-BASE_URL = 'https://genenetwork.fahamuai.com/api/tasks'
+BASE_URL = 'http://balg-qa.genenetwork.org/api/tasks'
 BASEDIR = os.path.abspath(os.path.dirname(__file__))