gllm-pipeline-binary 0.4.24__cp312-cp312-win_amd64.whl → 0.4.25__cp312-cp312-win_amd64.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.
@@ -112,16 +112,17 @@ class RAGStateModel(BaseModel):
112
112
  Example with custom JSON encoders:
113
113
  ```python
114
114
  from datetime import datetime
115
- from pydantic import BaseModel, Field
115
+ from pydantic import BaseModel, ConfigDict, Field
116
116
 
117
117
  class CustomStateModel(BaseModel):
118
118
  timestamp: datetime = Field(default_factory=datetime.now)
119
119
 
120
- class Config:
121
- json_encoders = {
120
+ model_config = ConfigDict(
121
+ json_encoders={
122
122
  datetime: lambda v: v.isoformat(),
123
123
  EventEmitter: lambda v: str(v) if v else None
124
124
  }
125
+ )
125
126
  ```
126
127
  '''
127
128
  user_query: str
@@ -134,7 +135,4 @@ class RAGStateModel(BaseModel):
134
135
  response: str
135
136
  references: str | list[str]
136
137
  event_emitter: EventEmitter | None
137
- class Config:
138
- """Pydantic configuration."""
139
- arbitrary_types_allowed: bool
140
- json_encoders: Incomplete
138
+ model_config: Incomplete
Binary file
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: gllm-pipeline-binary
3
- Version: 0.4.24
3
+ Version: 0.4.25
4
4
  Summary: A library containing components related to Gen AI applications pipeline orchestration.
5
5
  Author-email: Dimitrij Ray <dimitrij.ray@gdplabs.id>, Henry Wicaksono <henry.wicaksono@gdplabs.id>, Kadek Denaya <kadek.d.r.diana@gdplabs.id>
6
6
  Requires-Python: <3.13,>=3.11
@@ -1,4 +1,4 @@
1
- gllm_pipeline.cp312-win_amd64.pyd,sha256=qjhsaFUWKRHDq6mgIqfYy52U1uMsunzKOu0tQLcGRhk,2189312
1
+ gllm_pipeline.cp312-win_amd64.pyd,sha256=FRmubCwDSV-tRuyxeNa5hKDs0M7qwSbC4mtRUtNH1mw,2189312
2
2
  gllm_pipeline.pyi,sha256=KL3UbRkjsWRktt_UM70HNxLAvyYzPTQ0pvNfwTZt8SI,2346
3
3
  gllm_pipeline/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
4
  gllm_pipeline/alias.pyi,sha256=FbALRYZpDlmQMsKNUvgCi6ji11PrEtNo2kgzbt0iT7g,237
@@ -8,7 +8,7 @@ gllm_pipeline/exclusions/exclusion_manager.pyi,sha256=DzoL-2KeTRmFgJEo8rzYViFYKb
8
8
  gllm_pipeline/exclusions/exclusion_set.pyi,sha256=11XTt6IfkHpzomcNybA78SfWlp752Z3AGhXfm2rL0Fk,1685
9
9
  gllm_pipeline/pipeline/__init__.pyi,sha256=1IKGdMvmLWEiOOmAKFNUPm-gdw13zrnU1gs7tDNzgEU,168
10
10
  gllm_pipeline/pipeline/pipeline.pyi,sha256=CgP179RgbwtIsz_U0cMi3jdwbVOBz-D4sIKjoLkV55g,16504
11
- gllm_pipeline/pipeline/states.pyi,sha256=WezH44ULqlim8CoEupQGHXs5xNzkqLvK8epwYQYRT4I,6523
11
+ gllm_pipeline/pipeline/states.pyi,sha256=NuWs7-Q6gGIHV32o-conwTtKXrbd0FpKE1d8Hg4OAt0,6459
12
12
  gllm_pipeline/pipeline/composer/__init__.pyi,sha256=-hcOUQgpTRt1QjQfRurTf-UApFnTrhilx6vN-gYd5J0,666
13
13
  gllm_pipeline/pipeline/composer/composer.pyi,sha256=7h7EhEA-hex6w36Is6uGTz9OBUbmq6C0SdkeBeLFcAI,28715
14
14
  gllm_pipeline/pipeline/composer/guard_composer.pyi,sha256=YfbXmzyU3CwAvGnCfM-6MVcTdxk53-j6Cv3IdzNr_-c,3335
@@ -72,7 +72,7 @@ gllm_pipeline/utils/retry_converter.pyi,sha256=JPUuaGzKpVLshrbhX9rQHYl5XmC9GDa59
72
72
  gllm_pipeline/utils/step_execution.pyi,sha256=3o28tiCHR8t-6Vk3Poz91V-CLdYrdhvJblPW9AoOK-c,996
73
73
  gllm_pipeline/utils/typing_compat.pyi,sha256=V4812i25ncSqZ0o_30lUX65tU07bWEs4LIpdLPt2ngg,116
74
74
  gllm_pipeline.build/.gitignore,sha256=aEiIwOuxfzdCmLZe4oB1JsBmCUxwG8x-u-HBCV9JT8E,1
75
- gllm_pipeline_binary-0.4.24.dist-info/METADATA,sha256=8mzbtoKhwpZLS3hpZ2rK6Rwu-eNZRs_fV_gD7rdh9eo,4524
76
- gllm_pipeline_binary-0.4.24.dist-info/WHEEL,sha256=x5rgv--I0NI0IT1Lh9tN1VG2cI637p3deednwYLKnxc,96
77
- gllm_pipeline_binary-0.4.24.dist-info/top_level.txt,sha256=C3yeOtoE6ZhuOnBEq_FFc_Rp954IHJBlB6fBgSdAWYI,14
78
- gllm_pipeline_binary-0.4.24.dist-info/RECORD,,
75
+ gllm_pipeline_binary-0.4.25.dist-info/METADATA,sha256=SDIgWsHo_oOrfz2tHhwNltWzrGKlhRSOf6dDhOzzqPA,4524
76
+ gllm_pipeline_binary-0.4.25.dist-info/WHEEL,sha256=x5rgv--I0NI0IT1Lh9tN1VG2cI637p3deednwYLKnxc,96
77
+ gllm_pipeline_binary-0.4.25.dist-info/top_level.txt,sha256=C3yeOtoE6ZhuOnBEq_FFc_Rp954IHJBlB6fBgSdAWYI,14
78
+ gllm_pipeline_binary-0.4.25.dist-info/RECORD,,