reasoning_layer_python_sdk 1.4.0__py3-none-any.whl → 1.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.
@@ -1,4 +1,4 @@
1
- from .builders import TermInput, Value
1
+ from .builders import FuzzyShape, TermInput, Value
2
2
  from .client import ReasoningLayerClient
3
3
  from .config import ClientConfig
4
4
  from .errors import ReasoningLayerError
@@ -9,4 +9,5 @@ __all__ = [
9
9
  "ReasoningLayerError",
10
10
  "TermInput",
11
11
  "Value",
12
+ "FuzzyShape",
12
13
  ]
@@ -42,6 +42,12 @@ from ..generated.models.string import String
42
42
  from ..generated.models.term_input_dto import TermInputDto
43
43
  from ..generated.models.uninstantiated import Uninstantiated
44
44
  from ..generated.models.value_dto import ValueDto
45
+ from ..generated.models.fuzzy_shape_dto import FuzzyShapeDto
46
+ from ..generated.models.fuzzy_shape_dto_one_of import FuzzyShapeDtoOneOf
47
+ from ..generated.models.fuzzy_shape_dto_one_of2 import FuzzyShapeDtoOneOf2
48
+ from ..generated.models.fuzzy_shape_dto_one_of4 import FuzzyShapeDtoOneOf4
49
+ from ..generated.models.fuzzy_shape_dto_one_of5 import FuzzyShapeDtoOneOf5
50
+ from ..generated.models.fuzzy_shape_dto_one_of6 import FuzzyShapeDtoOneOf6
45
51
 
46
52
 
47
53
  class Value:
@@ -164,6 +170,79 @@ def _coerce_inline_features(
164
170
  return {k: _coerce_inline_feature(v) for k, v in features.items()}
165
171
 
166
172
 
173
+ class FuzzyShape:
174
+ """Convenience builders for fuzzy membership functions.
175
+
176
+ Wraps the generated Pydantic models so you can write::
177
+
178
+ reliability = FuzzyShape.gaussian(0.7, 0.15)
179
+ """
180
+
181
+ @staticmethod
182
+ def triangular(a: float, b: float, c: float) -> ValueDto:
183
+ return Value.fuzzy_number(
184
+ FuzzyNumberValue(
185
+ shape=FuzzyShapeDto(
186
+ actual_instance=FuzzyShapeDtoOneOf(kind="Triangular", a=a, b=b, c=c)
187
+ )
188
+ )
189
+ )
190
+
191
+ @staticmethod
192
+ def sigmoid(midpoint: float, steepness: float) -> ValueDto:
193
+ return Value.fuzzy_number(
194
+ FuzzyNumberValue(
195
+ shape=FuzzyShapeDto(
196
+ actual_instance=FuzzyShapeDtoOneOf4(
197
+ kind="Sigmoid", midpoint=midpoint, steepness=steepness
198
+ )
199
+ )
200
+ )
201
+ )
202
+
203
+ @staticmethod
204
+ def bell(center: float, width: float, slope: float) -> ValueDto:
205
+ return Value.fuzzy_number(
206
+ FuzzyNumberValue(
207
+ shape=FuzzyShapeDto(
208
+ actual_instance=FuzzyShapeDtoOneOf5(
209
+ kind="Bell", center=center, width=width, slope=slope
210
+ )
211
+ )
212
+ )
213
+ )
214
+
215
+ @staticmethod
216
+ def sigmoid_difference(
217
+ midpoint1: float, steepness1: float, midpoint2: float, steepness2: float
218
+ ) -> ValueDto:
219
+ return Value.fuzzy_number(
220
+ FuzzyNumberValue(
221
+ shape=FuzzyShapeDto(
222
+ actual_instance=FuzzyShapeDtoOneOf6(
223
+ kind="SigmoidDifference",
224
+ midpoint1=midpoint1,
225
+ steepness1=steepness1,
226
+ midpoint2=midpoint2,
227
+ steepness2=steepness2,
228
+ )
229
+ )
230
+ )
231
+ )
232
+
233
+ @staticmethod
234
+ def gaussian(mean: float, std_dev: float) -> ValueDto:
235
+ return Value.fuzzy_number(
236
+ FuzzyNumberValue(
237
+ shape=FuzzyShapeDto(
238
+ actual_instance=FuzzyShapeDtoOneOf2(
239
+ kind="Gaussian", mean=mean, std_dev=std_dev
240
+ )
241
+ )
242
+ )
243
+ )
244
+
245
+
167
246
  class TermInput:
168
247
  """Factory for ``TermInputDto`` instances.
169
248
 
@@ -2,7 +2,7 @@ import os
2
2
  from dataclasses import dataclass
3
3
  from typing import Optional
4
4
 
5
- SDK_VERSION = "1.4.0"
5
+ SDK_VERSION = "1.6.0"
6
6
 
7
7
 
8
8
  @dataclass
@@ -114,6 +114,11 @@ class FeatureValueDto(BaseModel):
114
114
  if json_str is None:
115
115
  return instance
116
116
 
117
+ # Fast-path for dict values (term references)
118
+ parsed = json.loads(json_str)
119
+ if isinstance(parsed, dict):
120
+ return cls.model_construct(actual_instance=parsed)
121
+
117
122
  error_messages = []
118
123
  match = 0
119
124
 
@@ -30,10 +30,10 @@ class FuzzySearchTopKRequest(BaseModel):
30
30
  """
31
31
  Request for top-K similarity search
32
32
  """ # noqa: E501
33
- term_id: UUID
33
+ term_id: Optional[UUID] = None
34
34
  type: StrictStr
35
- features: Dict[str, ValueDto]
36
- sort_id: UUID
35
+ features: Optional[Dict[str, ValueDto]] = None
36
+ sort_id: Optional[UUID] = None
37
37
  fail_on_unknown: Optional[StrictBool] = Field(default=None, description="Whether to fail when encountering unknown (Uninstantiated) values instead of residuating false = enable residuation (default)")
38
38
  k: Annotated[int, Field(strict=True, ge=0)] = Field(description="Number of results to return")
39
39
  min_degree: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Optional minimum similarity degree")
@@ -43,8 +43,8 @@ class FuzzySearchTopKRequest(BaseModel):
43
43
  @field_validator('type')
44
44
  def type_validate_enum(cls, value):
45
45
  """Validates the enum"""
46
- if value not in set(['inline']):
47
- raise ValueError("must be one of enum values ('inline')")
46
+ if value not in set(['inline', 'by_id']):
47
+ raise ValueError("must be one of enum values ('inline', 'by_id')")
48
48
  return value
49
49
 
50
50
  model_config = ConfigDict(
@@ -47,6 +47,14 @@ class JsonValue(BaseModel):
47
47
  protected_namespaces=(),
48
48
  )
49
49
 
50
+ @classmethod
51
+ def model_validate(cls, obj, *, strict=None, from_attributes=None, context=None):
52
+ """Override to accept plain values directly."""
53
+ if not isinstance(obj, dict):
54
+ return cls(actual_instance=obj)
55
+ return super().model_validate(
56
+ obj, strict=strict, from_attributes=from_attributes, context=context
57
+ )
50
58
 
51
59
  def __init__(self, *args, **kwargs) -> None:
52
60
  if args:
@@ -17,7 +17,7 @@ import pprint
17
17
  import re # noqa: F401
18
18
  import json
19
19
 
20
- from pydantic import BaseModel, ConfigDict, StrictStr, field_validator
20
+ from pydantic import BaseModel, ConfigDict, Field, StrictStr, field_validator
21
21
  from typing import Any, ClassVar, Dict, List
22
22
  from typing import Optional, Set
23
23
  from typing_extensions import Self
@@ -27,10 +27,10 @@ class OsfConstraintDtoOneOf20(BaseModel):
27
27
  """
28
28
  OsfConstraintDtoOneOf20
29
29
  """ # noqa: E501
30
- copy: StrictStr
30
+ copy_: StrictStr = Field(alias="copy")
31
31
  term: OsfClauseDto
32
32
  type: StrictStr
33
- __properties: ClassVar[List[str]] = ["copy", "term", "type"]
33
+ __properties: ClassVar[List[str]] = ["copy_", "term", "type"]
34
34
 
35
35
  @field_validator('type')
36
36
  def type_validate_enum(cls, value):
@@ -27,7 +27,7 @@ from reasoning_layer_python_sdk.generated.models.set import Set
27
27
  from reasoning_layer_python_sdk.generated.models.string import String
28
28
  from reasoning_layer_python_sdk.generated.models.uninstantiated import Uninstantiated
29
29
  from pydantic import StrictStr, Field
30
- from typing import Union, List, Set, Optional, Dict
30
+ from typing import Union, List, Optional, Dict
31
31
  from typing_extensions import Literal, Self
32
32
 
33
33
  VALUEDTO_ONE_OF_SCHEMAS = ["Boolean", "FuzzyNumber", "FuzzyScalar", "Integer", "List", "Real", "Reference1", "Set", "String", "Uninstantiated"]
@@ -49,15 +49,15 @@ class ValueDto(BaseModel):
49
49
  # data type: Reference1
50
50
  oneof_schema_6_validator: Optional[Reference1] = None
51
51
  # data type: List
52
- oneof_schema_7_validator: Optional[List] = None
52
+ oneof_schema_7_validator: Optional[Any] = None
53
53
  # data type: FuzzyScalar
54
54
  oneof_schema_8_validator: Optional[FuzzyScalar] = None
55
55
  # data type: FuzzyNumber
56
56
  oneof_schema_9_validator: Optional[FuzzyNumber] = None
57
57
  # data type: Set
58
58
  oneof_schema_10_validator: Optional[Set] = None
59
- actual_instance: Optional[Union[Boolean, FuzzyNumber, FuzzyScalar, Integer, List, Real, Reference1, Set, String, Uninstantiated]] = None
60
- one_of_schemas: Set[str] = { "Boolean", "FuzzyNumber", "FuzzyScalar", "Integer", "List", "Real", "Reference1", "Set", "String", "Uninstantiated" }
59
+ actual_instance: Optional[Any] = None
60
+ one_of_schemas: set[str] = { "Boolean", "FuzzyNumber", "FuzzyScalar", "Integer", "List", "Real", "Reference1", "Set", "String", "Uninstantiated" }
61
61
 
62
62
  model_config = ConfigDict(
63
63
  validate_assignment=True,
@@ -114,11 +114,10 @@ class ValueDto(BaseModel):
114
114
  else:
115
115
  match += 1
116
116
  # validate data type: List
117
- try:
118
- instance.oneof_schema_7_validator = v
117
+ if not isinstance(v, List):
118
+ error_messages.append(f"Error! Input type `{type(v)}` is not `List`")
119
+ else:
119
120
  match += 1
120
- except (ValidationError, ValueError) as e:
121
- error_messages.append(str(e))
122
121
  # validate data type: FuzzyScalar
123
122
  if not isinstance(v, FuzzyScalar):
124
123
  error_messages.append(f"Error! Input type `{type(v)}` is not `FuzzyScalar`")
@@ -192,12 +191,9 @@ class ValueDto(BaseModel):
192
191
  error_messages.append(str(e))
193
192
  # deserialize data into List
194
193
  try:
195
- # validation
196
- instance.oneof_schema_7_validator = json.loads(json_str)
197
- # assign value to actual_instance
198
- instance.actual_instance = instance.oneof_schema_7_validator
194
+ instance.actual_instance = List.from_json(json_str)
199
195
  match += 1
200
- except (ValidationError, ValueError) as e:
196
+ except Exception as e:
201
197
  error_messages.append(str(e))
202
198
  # deserialize data into FuzzyScalar
203
199
  try:
@@ -1,4 +1,4 @@
1
- from typing import Optional
1
+ from typing import Any, Optional
2
2
  from uuid import UUID
3
3
 
4
4
  from ..generated.api.cognitive_agents_episodic_memory_api import (
@@ -16,6 +16,7 @@ from ..generated.api_client import ApiClient
16
16
  from ..generated.models.adaptive_modify_request import AdaptiveModifyRequest
17
17
  from ..generated.models.add_belief_request import AddBeliefRequest
18
18
  from ..generated.models.add_goal_request import AddGoalRequest
19
+ from ..generated.models.json_value import JsonValue
19
20
  from ..generated.models.create_agent_request import CreateAgentRequest
20
21
  from ..generated.models.get_agent_state_request import GetAgentStateRequest
21
22
  from ..generated.models.provide_feedback_request import ProvideFeedbackRequest
@@ -25,6 +26,26 @@ from ..generated.models.run_integrated_cycle_request import RunIntegratedCycleRe
25
26
  from ..generated.models.subscribe_to_kb_request import SubscribeToKbRequest
26
27
 
27
28
 
29
+ def _wrap_json_values(obj: Any) -> Any:
30
+ """Recursively wrap plain values inside 'features' dicts as JsonValue."""
31
+ if isinstance(obj, dict):
32
+ wrapped = {}
33
+ for key, value in obj.items():
34
+ if key == "features" and isinstance(value, dict):
35
+ wrapped[key] = {
36
+ k: JsonValue(v)
37
+ if v is not None and not isinstance(v, JsonValue)
38
+ else v
39
+ for k, v in value.items()
40
+ }
41
+ else:
42
+ wrapped[key] = _wrap_json_values(value)
43
+ return wrapped
44
+ if isinstance(obj, list):
45
+ return [_wrap_json_values(item) for item in obj]
46
+ return obj
47
+
48
+
28
49
  class _CognitiveMemoryClient:
29
50
  """Episodic memory operations for cognitive agents."""
30
51
 
@@ -317,6 +338,7 @@ class CognitiveClient:
317
338
  ):
318
339
  """Add a belief to an agent."""
319
340
  if request is None:
341
+ kwargs = _wrap_json_values(kwargs)
320
342
  request = AddBeliefRequest(**kwargs)
321
343
  return self._api.add_belief(add_belief_request=request)
322
344
 
@@ -328,6 +350,7 @@ class CognitiveClient:
328
350
  ):
329
351
  """Add a goal to an agent."""
330
352
  if request is None:
353
+ kwargs = _wrap_json_values(kwargs)
331
354
  request = AddGoalRequest(**kwargs)
332
355
  return self._api.add_goal(add_goal_request=request)
333
356
 
@@ -347,6 +370,7 @@ class CognitiveClient:
347
370
  AddCognitiveRuleRequest,
348
371
  )
349
372
 
373
+ kwargs = _wrap_json_values(kwargs)
350
374
  request = AddCognitiveRuleRequest(**kwargs)
351
375
  return self._api.add_cognitive_rule(add_cognitive_rule_request=request)
352
376
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: reasoning_layer_python_sdk
3
- Version: 1.4.0
3
+ Version: 1.6.0
4
4
  Summary: A simple SDK package built in python for the Reasoning Layer tool by Kortexya
5
5
  Author: David Loiret, Anexoms
6
6
  Author-email: David Loiret <contact@kortexya.com>, Anexoms <maxence.pierre@epitech.eu>
@@ -1,8 +1,8 @@
1
- reasoning_layer_python_sdk/__init__.py,sha256=L0FYubSIocVexsSMiEpi9w421GPq9gtS2s6EOyWivaY,273
1
+ reasoning_layer_python_sdk/__init__.py,sha256=ZLLrEcc2sB0evafhxaQzwSF6xWxfqxSo5jg9OygUTjY,303
2
2
  reasoning_layer_python_sdk/builders/.keep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
- reasoning_layer_python_sdk/builders/__init__.py,sha256=tFP5IYPiFnkxA5_Rtiwkriep-KCOMoh5xKWXmgQZP78,6930
3
+ reasoning_layer_python_sdk/builders/__init__.py,sha256=JP8omWMOxnvmY1mv7Ay7P7QK64Dp-9aG-lo-tTLqyKU,9626
4
4
  reasoning_layer_python_sdk/client.py,sha256=vJogoIJB6-J_43T8n93bkwFV1tuOFJsFW9qvOfgZEF0,7371
5
- reasoning_layer_python_sdk/config.py,sha256=Tt5zora9jfkKAHbORRUibyJ4cZag0ZlH_liZpPf9SIE,803
5
+ reasoning_layer_python_sdk/config.py,sha256=3lO-TvSftWv_EgcxLglDykR4AJBAqwZBSz8sjauLS-Y,803
6
6
  reasoning_layer_python_sdk/errors.py,sha256=5Oau1Xi5iQXb7gdeZssQY1hfn_NhoIZBSz0vMQ4Ygg8,4554
7
7
  reasoning_layer_python_sdk/generated/__init__.py,sha256=VF7OUDFxYifuyX6g57ED9PTEUQ00tM1YKIULNvlsFZg,217102
8
8
  reasoning_layer_python_sdk/generated/api/__init__.py,sha256=DSTZc_GtbM-Vb-aDcKM_E4ZJYXWcTCN_TBAxJU1yAlM,4890
@@ -608,7 +608,7 @@ reasoning_layer_python_sdk/generated/models/feature_pair.py,sha256=FlIV7yO-F4WOx
608
608
  reasoning_layer_python_sdk/generated/models/feature_requirement_dto.py,sha256=jZoFG9PtyIlQJebrhdzR_uTkv-8GiyWxZqn-lk2msfI,3479
609
609
  reasoning_layer_python_sdk/generated/models/feature_target_dto.py,sha256=BgXE6fsNti_kuu-PuL_YojiRjzdeKxipYYRoFkVlLMw,5770
610
610
  reasoning_layer_python_sdk/generated/models/feature_type_dto.py,sha256=wuvPbkvcUXU6k2m6cuylRiSbZWhvZovnIhvd1cQOUGc,978
611
- reasoning_layer_python_sdk/generated/models/feature_value_dto.py,sha256=HpMEEUajiru5ZAoR6m67RsgqHoDHEQ1XcX-cB5B06l4,8399
611
+ reasoning_layer_python_sdk/generated/models/feature_value_dto.py,sha256=xRi1XDZNqU5u7Y-UzwRKPDNLP7oTVsqokyszs8TvIkw,8592
612
612
  reasoning_layer_python_sdk/generated/models/finalize_session_request.py,sha256=kvXQnQ5De7YiHLGT4dZz05fRHwATyGXIpliixbdY23A,3455
613
613
  reasoning_layer_python_sdk/generated/models/find_by_sort_request.py,sha256=J3rKzPoKTm-ipL3SI6WFBTTg6gry04CYLgECP6b6ylY,4020
614
614
  reasoning_layer_python_sdk/generated/models/find_plans_request.py,sha256=9ip18rHlAYzGaJtluLWkUrerfKwyQdgJ0Bbkz4peVSg,3454
@@ -646,7 +646,7 @@ reasoning_layer_python_sdk/generated/models/fuzzy_prove_request.py,sha256=W-9nEB
646
646
  reasoning_layer_python_sdk/generated/models/fuzzy_prove_response.py,sha256=4RSSbXQZt0e3BdSgYemPkKPnmyV4XbmlL4G8eifuKCk,3852
647
647
  reasoning_layer_python_sdk/generated/models/fuzzy_scalar.py,sha256=VERTODnbz7aTu3Zt7ui9pgtC3Uo4wXHO2p7p_jKBOJU,3258
648
648
  reasoning_layer_python_sdk/generated/models/fuzzy_scalar_value.py,sha256=gNzPI38ykYk-_rLRUWn8vMU7vavIg5Xi5JKRO8bu3lo,2845
649
- reasoning_layer_python_sdk/generated/models/fuzzy_search_top_k_request.py,sha256=nX3gfAy4wwxBjCa6ShcOSkJyU1LFsBkJERwIX8h0mAE,5122
649
+ reasoning_layer_python_sdk/generated/models/fuzzy_search_top_k_request.py,sha256=f9RP42x3tGvYCaQac_KSr3mDW2Ouqmsx6RqhxrTqRmw,5191
650
650
  reasoning_layer_python_sdk/generated/models/fuzzy_shape_dto.py,sha256=TCuASgfuwHgxyKvkoGGxCv4PJS1cbP1CAoYN7OHwCcw,17922
651
651
  reasoning_layer_python_sdk/generated/models/fuzzy_shape_dto_one_of.py,sha256=14-VIQCTeBCO_4IAckg2-qsqhVjYc5YNqkH_nkfMIa8,3109
652
652
  reasoning_layer_python_sdk/generated/models/fuzzy_shape_dto_one_of1.py,sha256=FQyfILLPOhMq6RuHa0AMG1pZc_xDwEtLbqxb0wl2tcU,3188
@@ -799,7 +799,7 @@ reasoning_layer_python_sdk/generated/models/invoke_action_request.py,sha256=SWar
799
799
  reasoning_layer_python_sdk/generated/models/invoke_action_response.py,sha256=qnQeBfI_f8zO_TCz2POcsx9jgLwOTbw2t8GhUJjGeLo,3569
800
800
  reasoning_layer_python_sdk/generated/models/is_subtype_response.py,sha256=wLaBamHuEMOMc32XL4-UfadQFCUjsvlP-Wj3ceRRFA4,2710
801
801
  reasoning_layer_python_sdk/generated/models/iteration_metric_dto.py,sha256=wilhS_afvZSCzCHQqsVYezKCBr52a-DXedcwhOny1qk,3319
802
- reasoning_layer_python_sdk/generated/models/json_value.py,sha256=PyqZljKoDnKwxTO_kzEkkKQ8zE12j9lAjX4Cvtng5ZM,9041
802
+ reasoning_layer_python_sdk/generated/models/json_value.py,sha256=StWTc6yeE8uYIUQLinNU2RQxJHdSO0-njXI-mlg48nM,9412
803
803
  reasoning_layer_python_sdk/generated/models/judge_config_dto.py,sha256=Eu8J9Ztjgun4XtYgFn-CDQGkOamIm_n_yFrPoWoLEbQ,5118
804
804
  reasoning_layer_python_sdk/generated/models/kb_change_dto.py,sha256=EcDqwivU7gtknG3CF2jUsisIxSOIjeHp72U2yTu25nc,7223
805
805
  reasoning_layer_python_sdk/generated/models/kb_change_dto_one_of.py,sha256=idYQF4d90AuylO0ZgtJWCCwgXjGhJ0DRSLAMpE2i7S8,3025
@@ -944,7 +944,7 @@ reasoning_layer_python_sdk/generated/models/osf_constraint_dto_one_of17.py,sha25
944
944
  reasoning_layer_python_sdk/generated/models/osf_constraint_dto_one_of18.py,sha256=HwrxSt4MWmQ3d5jviKhhOlgK9YtRPqlfdss3glskPho,3353
945
945
  reasoning_layer_python_sdk/generated/models/osf_constraint_dto_one_of19.py,sha256=HK7VFDRAEDxfNXnzCi-IAE2n4GPxbUQpFWAO77Je65Q,3355
946
946
  reasoning_layer_python_sdk/generated/models/osf_constraint_dto_one_of2.py,sha256=3aTxxvh84IFnpWp_-mkkuwHNXPGwvQtRQDxklB7BhcE,3398
947
- reasoning_layer_python_sdk/generated/models/osf_constraint_dto_one_of20.py,sha256=A_Riv-Ihfjn-mbP65c5_BjsWASxuL8QrvYtyhF6JldQ,3404
947
+ reasoning_layer_python_sdk/generated/models/osf_constraint_dto_one_of20.py,sha256=S9j0q9h0kICY8_h6XsiSS2HVZGl8g6Z24RpORBGsKRM,3435
948
948
  reasoning_layer_python_sdk/generated/models/osf_constraint_dto_one_of21.py,sha256=aRcEMRE-RyC4Frd7f2z70ZwEKkcepvjOkwuhr2_o-F0,2926
949
949
  reasoning_layer_python_sdk/generated/models/osf_constraint_dto_one_of22.py,sha256=WdGAXyihA1vNUN_13WGPmbB38kdt5mB7U6b59NEzVXQ,3335
950
950
  reasoning_layer_python_sdk/generated/models/osf_constraint_dto_one_of23.py,sha256=LYKXaYr-CKgon6yFfkqsYIm55Cuxdbq4AedTZwLT6bg,3013
@@ -1413,7 +1413,7 @@ reasoning_layer_python_sdk/generated/models/validation_type_dto_one_of4.py,sha25
1413
1413
  reasoning_layer_python_sdk/generated/models/validation_type_dto_one_of5.py,sha256=0Ko4huCVl1kDqQBMpyV392qaCatNdwl-Spz2VgQE9-I,2952
1414
1414
  reasoning_layer_python_sdk/generated/models/validation_type_dto_one_of6.py,sha256=O90lpo9edajfeb3C8PfonXCT9eXhj-o4DHdNEgtSKms,2952
1415
1415
  reasoning_layer_python_sdk/generated/models/validation_type_dto_one_of7.py,sha256=NBtmXz_yt_4yfmgrQ2q2qHSjOnwUnhVRUC5oh9My4TY,2954
1416
- reasoning_layer_python_sdk/generated/models/value_dto.py,sha256=M7CDE8csrC5zRm_kNoew7Py8KQDMjCCATOb0fN8JpcY,11074
1416
+ reasoning_layer_python_sdk/generated/models/value_dto.py,sha256=9xKphhNya5ZshgooDQ0oZrYJdtue3u_g-p9TloAMqIk,10776
1417
1417
  reasoning_layer_python_sdk/generated/models/value_pattern_dto.py,sha256=bgVXx9EqyHx10UqYuzQ6Q3bHmQk7h2_fgETZu4zx_uY,11149
1418
1418
  reasoning_layer_python_sdk/generated/models/value_pattern_dto_one_of.py,sha256=wko-k-4vD2OjCBKkEI9z-Rkm0Tl5C1AMZWpR1hKyFP4,2848
1419
1419
  reasoning_layer_python_sdk/generated/models/value_pattern_dto_one_of1.py,sha256=-lqmSrM2PbLAwrkG5R6TKzd8bQArBNhouwjWppM2WCA,3066
@@ -1457,7 +1457,7 @@ reasoning_layer_python_sdk/resources/arithmetic.py,sha256=28oOq4s7RFow42-lQDoqQr
1457
1457
  reasoning_layer_python_sdk/resources/audit.py,sha256=DV4l2G0nJwZiCBAS4j15RcbbAJTA6emplIV1GLwVqIs,1506
1458
1458
  reasoning_layer_python_sdk/resources/causal.py,sha256=oy1bnDmOQvPm9cUqM0ytH-92SxvGwcYtB8C9lcxekb4,3624
1459
1459
  reasoning_layer_python_sdk/resources/cdl.py,sha256=L25nafX8hNS-OqNugOb2gOkuiQkAjwKLlrMRbtTn8VI,666
1460
- reasoning_layer_python_sdk/resources/cognitive.py,sha256=GSoLzbk4AJLIOin95AZnzdqW6zEpXgwBCC4sXLaGCHY,14935
1460
+ reasoning_layer_python_sdk/resources/cognitive.py,sha256=H8-JppXL6b2FJi4bZAkD76ams28fCTeGh9NizypQBfs,15834
1461
1461
  reasoning_layer_python_sdk/resources/cognitive_agents_episodic_memory.py,sha256=P4ZfzKP66r5Z6sXn_WEdwjRRv_-EF-XhdDlfQ3x2ahc,1300
1462
1462
  reasoning_layer_python_sdk/resources/cognitive_agents_htn.py,sha256=da2UpjKV4UIDnhgs4JUIIxqrAtqwYSWJ-OqFwRsJFSs,1209
1463
1463
  reasoning_layer_python_sdk/resources/cognitive_agents_messaging.py,sha256=P_w5NjR8PfN0D47VHF9rfAcPSV-ZJ7mAWWoHw-eQ_w8,1572
@@ -1511,7 +1511,7 @@ reasoning_layer_python_sdk/resources/visualization.py,sha256=hR1_eM7qqjXXL0Evpm1
1511
1511
  reasoning_layer_python_sdk/resources/webhook_actions.py,sha256=pcOCb8Iza-qaLoYm3HS8BME-kONEkpF1jiB_ku0T2hY,1932
1512
1512
  reasoning_layer_python_sdk/types/.keep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1513
1513
  reasoning_layer_python_sdk/websocket.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1514
- reasoning_layer_python_sdk-1.4.0.dist-info/licenses/LICENSE,sha256=k-qbSVCJ2CJ5DYG2_n-lkAJ280Z2stRLb1sMuT0ESNI,1052
1515
- reasoning_layer_python_sdk-1.4.0.dist-info/WHEEL,sha256=XkDrRXQq-qVsrKMtsDUOHeLkiG7UK4Ds0JuG05OqKU4,81
1516
- reasoning_layer_python_sdk-1.4.0.dist-info/METADATA,sha256=WErN7LUPWAsRFvAKxNBegI4xK0rFmx6JAPTs8tJExoU,8053
1517
- reasoning_layer_python_sdk-1.4.0.dist-info/RECORD,,
1514
+ reasoning_layer_python_sdk-1.6.0.dist-info/licenses/LICENSE,sha256=k-qbSVCJ2CJ5DYG2_n-lkAJ280Z2stRLb1sMuT0ESNI,1052
1515
+ reasoning_layer_python_sdk-1.6.0.dist-info/WHEEL,sha256=i9aSRDivn5iP9LaR1BLQX2GNAuriQWPsFwbbWygTX2k,81
1516
+ reasoning_layer_python_sdk-1.6.0.dist-info/METADATA,sha256=rdl3UM9OUqezDsWxRSD70bV470ES7lhzwiCj3i1SYVE,8053
1517
+ reasoning_layer_python_sdk-1.6.0.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: uv 0.11.13
2
+ Generator: uv 0.11.15
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any