groundx 2.5.10__py3-none-any.whl → 2.6.2__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.
- groundx/__init__.py +44 -1
- groundx/client.py +3 -0
- groundx/core/client_wrapper.py +2 -2
- groundx/types/__init__.py +40 -0
- groundx/types/workflow_apply_request.py +24 -0
- groundx/types/workflow_detail.py +55 -0
- groundx/types/workflow_detail_relationships.py +36 -0
- groundx/types/workflow_engine.py +58 -0
- groundx/types/workflow_engine_reasoning_effort.py +5 -0
- groundx/types/workflow_engine_service.py +7 -0
- groundx/types/workflow_prompt.py +39 -0
- groundx/types/workflow_prompt_group.py +25 -0
- groundx/types/workflow_prompt_role.py +5 -0
- groundx/types/workflow_response.py +20 -0
- groundx/types/workflow_step.py +26 -0
- groundx/types/workflow_steps.py +50 -0
- groundx/types/workflow_steps_chunk_instruct.py +24 -0
- groundx/types/workflow_steps_chunk_summary.py +26 -0
- groundx/types/workflow_steps_doc_keys.py +22 -0
- groundx/types/workflow_steps_doc_summary.py +23 -0
- groundx/types/workflow_steps_search_query.py +22 -0
- groundx/types/workflow_steps_sect_instruct.py +20 -0
- groundx/types/workflow_steps_sect_summary.py +23 -0
- groundx/types/workflows_response.py +20 -0
- groundx/workflows/__init__.py +7 -0
- groundx/workflows/client.py +731 -0
- groundx/workflows/raw_client.py +836 -0
- groundx/workflows/types/__init__.py +7 -0
- groundx/workflows/types/workflow_get_request_id.py +5 -0
- {groundx-2.5.10.dist-info → groundx-2.6.2.dist-info}/METADATA +1 -1
- {groundx-2.5.10.dist-info → groundx-2.6.2.dist-info}/RECORD +33 -8
- {groundx-2.5.10.dist-info → groundx-2.6.2.dist-info}/LICENSE +0 -0
- {groundx-2.5.10.dist-info → groundx-2.6.2.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
|