Fix timeouts

This commit is contained in:
Cyber MacGeddon 2024-10-31 16:27:19 +00:00
parent 7c1568b896
commit bda5fd8a3a
2 changed files with 2 additions and 2 deletions

View file

@ -38,7 +38,7 @@ class DocumentRagClient(BaseClient):
output_schema=DocumentRagResponse,
)
def request(self, query, timeout=500):
def request(self, query, timeout=300):
return self.call(
query=query, timeout=timeout

View file

@ -52,7 +52,7 @@ class TriplesQueryClient(BaseClient):
self,
s, p, o,
user="trustgraph", collection="default",
limit=10, timeout=60,
limit=10, timeout=120,
):
return self.call(
s=self.create_value(s),