groundx 2.5.10__py3-none-any.whl → 2.6.0__py3-none-any.whl

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.

Potentially problematic release.


This version of groundx might be problematic. Click here for more details.

Files changed (33) hide show
  1. groundx/__init__.py +44 -1
  2. groundx/client.py +3 -0
  3. groundx/core/client_wrapper.py +2 -2
  4. groundx/types/__init__.py +40 -0
  5. groundx/types/workflow_apply_request.py +24 -0
  6. groundx/types/workflow_detail.py +55 -0
  7. groundx/types/workflow_detail_relationships.py +36 -0
  8. groundx/types/workflow_engine.py +58 -0
  9. groundx/types/workflow_engine_reasoning_effort.py +5 -0
  10. groundx/types/workflow_engine_service.py +7 -0
  11. groundx/types/workflow_prompt.py +39 -0
  12. groundx/types/workflow_prompt_group.py +25 -0
  13. groundx/types/workflow_prompt_role.py +5 -0
  14. groundx/types/workflow_response.py +20 -0
  15. groundx/types/workflow_step.py +26 -0
  16. groundx/types/workflow_steps.py +50 -0
  17. groundx/types/workflow_steps_chunk_instruct.py +24 -0
  18. groundx/types/workflow_steps_chunk_summary.py +26 -0
  19. groundx/types/workflow_steps_doc_keys.py +22 -0
  20. groundx/types/workflow_steps_doc_summary.py +23 -0
  21. groundx/types/workflow_steps_search_query.py +22 -0
  22. groundx/types/workflow_steps_sect_instruct.py +20 -0
  23. groundx/types/workflow_steps_sect_summary.py +23 -0
  24. groundx/types/workflows_response.py +20 -0
  25. groundx/workflow/__init__.py +7 -0
  26. groundx/workflow/client.py +743 -0
  27. groundx/workflow/raw_client.py +834 -0
  28. groundx/workflow/types/__init__.py +7 -0
  29. groundx/workflow/types/workflow_get_request_id.py +5 -0
  30. {groundx-2.5.10.dist-info → groundx-2.6.0.dist-info}/METADATA +1 -1
  31. {groundx-2.5.10.dist-info → groundx-2.6.0.dist-info}/RECORD +33 -8
  32. {groundx-2.5.10.dist-info → groundx-2.6.0.dist-info}/LICENSE +0 -0
  33. {groundx-2.5.10.dist-info → groundx-2.6.0.dist-info}/WHEEL +0 -0
@@ -0,0 +1,23 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import typing
4
+
5
+ import pydantic
6
+ import typing_extensions
7
+ from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel
8
+ from ..core.serialization import FieldMetadata
9
+ from .workflow_step import WorkflowStep
10
+
11
+
12
+ class WorkflowStepsSectSummary(UniversalBaseModel):
13
+ all_: typing_extensions.Annotated[typing.Optional[WorkflowStep], FieldMetadata(alias="all")] = None
14
+ table: typing.Optional[WorkflowStep] = None
15
+
16
+ if IS_PYDANTIC_V2:
17
+ model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
18
+ else:
19
+
20
+ class Config:
21
+ frozen = True
22
+ smart_union = True
23
+ extra = pydantic.Extra.allow
@@ -0,0 +1,20 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import typing
4
+
5
+ import pydantic
6
+ from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel
7
+ from .workflow_detail import WorkflowDetail
8
+
9
+
10
+ class WorkflowsResponse(UniversalBaseModel):
11
+ workflows: typing.List[WorkflowDetail]
12
+
13
+ if IS_PYDANTIC_V2:
14
+ model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
15
+ else:
16
+
17
+ class Config:
18
+ frozen = True
19
+ smart_union = True
20
+ extra = pydantic.Extra.allow
@@ -0,0 +1,7 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ # isort: skip_file
4
+
5
+ from .types import WorkflowGetRequestId
6
+
7
+ __all__ = ["WorkflowGetRequestId"]