indexify 0.0.33__tar.gz → 0.0.34__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: indexify
3
- Version: 0.0.33
3
+ Version: 0.0.34
4
4
  Summary: Python Client for Indexify
5
5
  Home-page: https://github.com/tensorlakeai/indexify
6
6
  License: Apache 2.0
@@ -554,7 +554,7 @@ class IndexifyClient:
554
554
  - start_index (str): start index for pagination
555
555
  - limit (int): number of items to return
556
556
  """
557
- params = {"graph": extraction_graph, "start_id": start_id, "limit": limit}
557
+ params = {"start_id": start_id, "limit": limit}
558
558
  if extraction_policy:
559
559
  params["source"] = extraction_policy
560
560
  else:
@@ -562,7 +562,7 @@ class IndexifyClient:
562
562
  if len(labels_filter) > 0:
563
563
  params["labels_filter"] = labels_filter
564
564
  response = self.get(
565
- f"namespaces/{self.namespace}/content",
565
+ f"namespaces/{self.namespace}/extraction_graphs/{extraction_graph}/content",
566
566
  params=params,
567
567
  )
568
568
  content_list = response.json()["content_list"]
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "indexify"
3
- version = "0.0.33"
3
+ version = "0.0.34"
4
4
  description = "Python Client for Indexify"
5
5
  authors = ["Diptanu Gon Choudhury <diptanuc@gmail.com>", "Lucas Jackson <lucas@tensorlake.ai>", "Vijay Parthasarathy <vijay2win@gmail.com>"]
6
6
  license = "Apache 2.0"
File without changes
File without changes
File without changes
File without changes
File without changes