mixpeek 0.6.2__py3-none-any.whl → 0.6.6__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.
Files changed (40) hide show
  1. mixpeek/__init__.py +12 -8
  2. mixpeek/base_client.py +857 -23
  3. mixpeek/client.py +7 -7
  4. mixpeek/core/client_wrapper.py +1 -1
  5. mixpeek/{pipelines → pipeline}/client.py +26 -20
  6. mixpeek/storage/__init__.py +3 -0
  7. mixpeek/storage/client.py +7 -112
  8. mixpeek/{embed → storage/sample}/client.py +61 -129
  9. mixpeek/types/__init__.py +8 -0
  10. mixpeek/types/configs_response.py +14 -3
  11. mixpeek/types/destination.py +14 -3
  12. mixpeek/types/embedding_response.py +6 -2
  13. mixpeek/types/extract_response.py +35 -0
  14. mixpeek/types/generation_response.py +6 -4
  15. mixpeek/types/message.py +9 -2
  16. mixpeek/types/metadata.py +0 -2
  17. mixpeek/types/modality.py +1 -1
  18. mixpeek/types/model.py +9 -2
  19. mixpeek/types/pipeline_response.py +49 -0
  20. mixpeek/types/pipeline_task_response.py +32 -0
  21. mixpeek/types/source.py +14 -3
  22. mixpeek/types/source_destination_mapping.py +14 -3
  23. mixpeek/types/workflow_code_response.py +29 -0
  24. mixpeek/{users → user}/client.py +10 -10
  25. mixpeek/{workflows → workflow}/client.py +14 -15
  26. {mixpeek-0.6.2.dist-info → mixpeek-0.6.6.dist-info}/METADATA +1 -1
  27. {mixpeek-0.6.2.dist-info → mixpeek-0.6.6.dist-info}/RECORD +33 -36
  28. mixpeek/extract/client.py +0 -347
  29. mixpeek/generators/client.py +0 -237
  30. mixpeek/parse/client.py +0 -111
  31. mixpeek/parse_client.py +0 -14
  32. mixpeek/pipelines/__init__.py +0 -2
  33. mixpeek/users/__init__.py +0 -2
  34. mixpeek/workflows/__init__.py +0 -2
  35. /mixpeek/{embed → pipeline}/__init__.py +0 -0
  36. /mixpeek/{extract → storage/sample}/__init__.py +0 -0
  37. /mixpeek/{generators → user}/__init__.py +0 -0
  38. /mixpeek/{parse → workflow}/__init__.py +0 -0
  39. {mixpeek-0.6.2.dist-info → mixpeek-0.6.6.dist-info}/LICENSE +0 -0
  40. {mixpeek-0.6.2.dist-info → mixpeek-0.6.6.dist-info}/WHEEL +0 -0
mixpeek/__init__.py CHANGED
@@ -11,6 +11,7 @@ from .types import (
11
11
  EmbeddingResponse,
12
12
  ErrorMessage,
13
13
  ErrorResponse,
14
+ ExtractResponse,
14
15
  FieldType,
15
16
  GenerationResponse,
16
17
  HtmlParams,
@@ -22,6 +23,8 @@ from .types import (
22
23
  Model,
23
24
  Models,
24
25
  PdfParams,
26
+ PipelineResponse,
27
+ PipelineTaskResponse,
25
28
  PptParams,
26
29
  PptxParams,
27
30
  Settings,
@@ -32,6 +35,7 @@ from .types import (
32
35
  ValidationError,
33
36
  ValidationErrorLocItem,
34
37
  VideoParams,
38
+ WorkflowCodeResponse,
35
39
  WorkflowResponse,
36
40
  WorkflowSettings,
37
41
  XlsxParams,
@@ -44,7 +48,7 @@ from .errors import (
44
48
  UnauthorizedError,
45
49
  UnprocessableEntityError,
46
50
  )
47
- from . import embed, extract, generators, parse, pipelines, storage, users, workflows
51
+ from . import pipeline, storage, user, workflow
48
52
  from .environment import MixpeekEnvironment
49
53
  from .version import __version__
50
54
 
@@ -60,6 +64,7 @@ __all__ = [
60
64
  "EmbeddingResponse",
61
65
  "ErrorMessage",
62
66
  "ErrorResponse",
67
+ "ExtractResponse",
63
68
  "FieldType",
64
69
  "ForbiddenError",
65
70
  "GenerationResponse",
@@ -75,6 +80,8 @@ __all__ = [
75
80
  "Models",
76
81
  "NotFoundError",
77
82
  "PdfParams",
83
+ "PipelineResponse",
84
+ "PipelineTaskResponse",
78
85
  "PptParams",
79
86
  "PptxParams",
80
87
  "Settings",
@@ -87,16 +94,13 @@ __all__ = [
87
94
  "ValidationError",
88
95
  "ValidationErrorLocItem",
89
96
  "VideoParams",
97
+ "WorkflowCodeResponse",
90
98
  "WorkflowResponse",
91
99
  "WorkflowSettings",
92
100
  "XlsxParams",
93
101
  "__version__",
94
- "embed",
95
- "extract",
96
- "generators",
97
- "parse",
98
- "pipelines",
102
+ "pipeline",
99
103
  "storage",
100
- "users",
101
- "workflows",
104
+ "user",
105
+ "workflow",
102
106
  ]