cadenya 0.27.0 → 0.29.0

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 (39) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +16 -0
  3. data/README.md +1 -1
  4. data/lib/cadenya/models/agent_spec.rb +16 -15
  5. data/lib/cadenya/models/agents/agent_schedule_spec.rb +21 -20
  6. data/lib/cadenya/models/agents/agent_variation_spec.rb +16 -14
  7. data/lib/cadenya/models/context_lengths.rb +87 -0
  8. data/lib/cadenya/models/objective.rb +18 -16
  9. data/lib/cadenya/models/objective_create_params.rb +28 -25
  10. data/lib/cadenya/models/objective_diagnostics.rb +50 -0
  11. data/lib/cadenya/models/objective_retrieve_diagnostics_params.rb +26 -0
  12. data/lib/cadenya/models/objective_retrieve_diagnostics_response.rb +25 -0
  13. data/lib/cadenya/models.rb +6 -0
  14. data/lib/cadenya/resources/objectives.rb +35 -5
  15. data/lib/cadenya/version.rb +1 -1
  16. data/lib/cadenya.rb +4 -0
  17. data/rbi/cadenya/models/agent_spec.rbi +23 -19
  18. data/rbi/cadenya/models/agents/agent_schedule_spec.rbi +38 -36
  19. data/rbi/cadenya/models/agents/agent_variation_spec.rbi +25 -21
  20. data/rbi/cadenya/models/context_lengths.rbi +103 -0
  21. data/rbi/cadenya/models/objective.rbi +24 -24
  22. data/rbi/cadenya/models/objective_create_params.rbi +39 -37
  23. data/rbi/cadenya/models/objective_diagnostics.rbi +76 -0
  24. data/rbi/cadenya/models/objective_retrieve_diagnostics_params.rbi +46 -0
  25. data/rbi/cadenya/models/objective_retrieve_diagnostics_response.rbi +43 -0
  26. data/rbi/cadenya/models.rbi +7 -0
  27. data/rbi/cadenya/resources/objectives.rbi +35 -15
  28. data/sig/cadenya/models/agent_spec.rbs +9 -7
  29. data/sig/cadenya/models/agents/agent_schedule_spec.rbs +15 -15
  30. data/sig/cadenya/models/agents/agent_variation_spec.rbs +7 -7
  31. data/sig/cadenya/models/context_lengths.rbs +55 -0
  32. data/sig/cadenya/models/objective.rbs +14 -14
  33. data/sig/cadenya/models/objective_create_params.rbs +16 -16
  34. data/sig/cadenya/models/objective_diagnostics.rbs +30 -0
  35. data/sig/cadenya/models/objective_retrieve_diagnostics_params.rbs +28 -0
  36. data/sig/cadenya/models/objective_retrieve_diagnostics_response.rbs +14 -0
  37. data/sig/cadenya/models.rbs +6 -0
  38. data/sig/cadenya/resources/objectives.rbs +9 -3
  39. metadata +14 -2
@@ -8,10 +8,10 @@ module Cadenya
8
8
  compaction_config: Cadenya::Agents::AgentVariationSpecCompactionConfig,
9
9
  constraints: Cadenya::Agents::AgentVariationSpecConstraints,
10
10
  description: String,
11
+ first_user_message_template: String,
11
12
  model_config: Cadenya::Agents::AgentVariationSpecModelConfig,
12
13
  progressive_discovery: Cadenya::Agents::AgentVariationSpecProgressiveDiscovery,
13
14
  system_prompt_template: String,
14
- user_message_template: String,
15
15
  weight: Integer
16
16
  }
17
17
 
@@ -32,6 +32,10 @@ module Cadenya
32
32
 
33
33
  def description=: (String) -> String
34
34
 
35
+ attr_reader first_user_message_template: String?
36
+
37
+ def first_user_message_template=: (String) -> String
38
+
35
39
  attr_reader model_config: Cadenya::Agents::AgentVariationSpecModelConfig?
36
40
 
37
41
  def model_config=: (
@@ -48,10 +52,6 @@ module Cadenya
48
52
 
49
53
  def system_prompt_template=: (String) -> String
50
54
 
51
- attr_reader user_message_template: String?
52
-
53
- def user_message_template=: (String) -> String
54
-
55
55
  attr_reader weight: Integer?
56
56
 
57
57
  def weight=: (Integer) -> Integer
@@ -60,10 +60,10 @@ module Cadenya
60
60
  ?compaction_config: Cadenya::Agents::AgentVariationSpecCompactionConfig,
61
61
  ?constraints: Cadenya::Agents::AgentVariationSpecConstraints,
62
62
  ?description: String,
63
+ ?first_user_message_template: String,
63
64
  ?model_config: Cadenya::Agents::AgentVariationSpecModelConfig,
64
65
  ?progressive_discovery: Cadenya::Agents::AgentVariationSpecProgressiveDiscovery,
65
66
  ?system_prompt_template: String,
66
- ?user_message_template: String,
67
67
  ?weight: Integer
68
68
  ) -> void
69
69
 
@@ -71,10 +71,10 @@ module Cadenya
71
71
  compaction_config: Cadenya::Agents::AgentVariationSpecCompactionConfig,
72
72
  constraints: Cadenya::Agents::AgentVariationSpecConstraints,
73
73
  description: String,
74
+ first_user_message_template: String,
74
75
  model_config: Cadenya::Agents::AgentVariationSpecModelConfig,
75
76
  progressive_discovery: Cadenya::Agents::AgentVariationSpecProgressiveDiscovery,
76
77
  system_prompt_template: String,
77
- user_message_template: String,
78
78
  weight: Integer
79
79
  }
80
80
  end
@@ -0,0 +1,55 @@
1
+ module Cadenya
2
+ module Models
3
+ type context_lengths =
4
+ {
5
+ assistant_messages: Integer,
6
+ available_tools: Integer,
7
+ episodic_memory: Integer,
8
+ skills_memory: Integer,
9
+ system_prompt: Integer,
10
+ tool_definitions: Integer,
11
+ tool_results: Integer,
12
+ user_messages: Integer
13
+ }
14
+
15
+ class ContextLengths < Cadenya::Internal::Type::BaseModel
16
+ attr_accessor assistant_messages: Integer
17
+
18
+ attr_accessor available_tools: Integer
19
+
20
+ attr_accessor episodic_memory: Integer
21
+
22
+ attr_accessor skills_memory: Integer
23
+
24
+ attr_accessor system_prompt: Integer
25
+
26
+ attr_accessor tool_definitions: Integer
27
+
28
+ attr_accessor tool_results: Integer
29
+
30
+ attr_accessor user_messages: Integer
31
+
32
+ def initialize: (
33
+ assistant_messages: Integer,
34
+ available_tools: Integer,
35
+ episodic_memory: Integer,
36
+ skills_memory: Integer,
37
+ system_prompt: Integer,
38
+ tool_definitions: Integer,
39
+ tool_results: Integer,
40
+ user_messages: Integer
41
+ ) -> void
42
+
43
+ def to_hash: -> {
44
+ assistant_messages: Integer,
45
+ available_tools: Integer,
46
+ episodic_memory: Integer,
47
+ skills_memory: Integer,
48
+ system_prompt: Integer,
49
+ tool_definitions: Integer,
50
+ tool_results: Integer,
51
+ user_messages: Integer
52
+ }
53
+ end
54
+ end
55
+ end
@@ -3,23 +3,23 @@ module Cadenya
3
3
  type objective =
4
4
  {
5
5
  config_snapshot: Cadenya::ObjectiveConfigSnapshot,
6
- initial_message: String,
6
+ first_user_message: String,
7
7
  metadata: Cadenya::OperationMetadata,
8
8
  state: Cadenya::Models::Objective::state,
9
9
  system_prompt: String,
10
- data: ::Hash[Symbol, top],
11
10
  episodic_memory: Cadenya::Objective::EpisodicMemory,
11
+ first_user_message_data: ::Hash[Symbol, top],
12
12
  info: Cadenya::ObjectiveInfo,
13
13
  memory_cascade: ::Array[Cadenya::MemoryReference],
14
14
  output: ::Hash[Symbol, top],
15
15
  parent_objective_id: String,
16
16
  secrets: ::Array[Cadenya::ObjectiveSecret],
17
17
  state_message: String,
18
- user_data: ::Hash[Symbol, top]
18
+ system_prompt_data: ::Hash[Symbol, top]
19
19
  }
20
20
 
21
21
  class Objective < Cadenya::Internal::Type::BaseModel
22
- attr_accessor initial_message: String
22
+ attr_accessor first_user_message: String
23
23
 
24
24
  attr_accessor metadata: Cadenya::OperationMetadata
25
25
 
@@ -47,9 +47,9 @@ module Cadenya
47
47
 
48
48
  attr_accessor system_prompt: String
49
49
 
50
- attr_reader data: ::Hash[Symbol, top]?
50
+ attr_reader first_user_message_data: ::Hash[Symbol, top]?
51
51
 
52
- def data=: (::Hash[Symbol, top]) -> ::Hash[Symbol, top]
52
+ def first_user_message_data=: (::Hash[Symbol, top]) -> ::Hash[Symbol, top]
53
53
 
54
54
  attr_reader info: Cadenya::ObjectiveInfo?
55
55
 
@@ -67,42 +67,42 @@ module Cadenya
67
67
 
68
68
  def state_message=: (String) -> String
69
69
 
70
- attr_reader user_data: ::Hash[Symbol, top]?
70
+ attr_reader system_prompt_data: ::Hash[Symbol, top]?
71
71
 
72
- def user_data=: (::Hash[Symbol, top]) -> ::Hash[Symbol, top]
72
+ def system_prompt_data=: (::Hash[Symbol, top]) -> ::Hash[Symbol, top]
73
73
 
74
74
  def initialize: (
75
75
  config_snapshot: Cadenya::ObjectiveConfigSnapshot,
76
- initial_message: String,
76
+ first_user_message: String,
77
77
  metadata: Cadenya::OperationMetadata,
78
78
  state: Cadenya::Models::Objective::state,
79
79
  system_prompt: String,
80
- ?data: ::Hash[Symbol, top],
81
80
  ?episodic_memory: Cadenya::Objective::EpisodicMemory,
81
+ ?first_user_message_data: ::Hash[Symbol, top],
82
82
  ?info: Cadenya::ObjectiveInfo,
83
83
  ?memory_cascade: ::Array[Cadenya::MemoryReference],
84
84
  ?output: ::Hash[Symbol, top],
85
85
  ?parent_objective_id: String,
86
86
  ?secrets: ::Array[Cadenya::ObjectiveSecret],
87
87
  ?state_message: String,
88
- ?user_data: ::Hash[Symbol, top]
88
+ ?system_prompt_data: ::Hash[Symbol, top]
89
89
  ) -> void
90
90
 
91
91
  def to_hash: -> {
92
92
  config_snapshot: Cadenya::ObjectiveConfigSnapshot,
93
- initial_message: String,
93
+ first_user_message: String,
94
94
  metadata: Cadenya::OperationMetadata,
95
95
  state: Cadenya::Models::Objective::state,
96
96
  system_prompt: String,
97
- data: ::Hash[Symbol, top],
98
97
  episodic_memory: Cadenya::Objective::EpisodicMemory,
98
+ first_user_message_data: ::Hash[Symbol, top],
99
99
  info: Cadenya::ObjectiveInfo,
100
100
  memory_cascade: ::Array[Cadenya::MemoryReference],
101
101
  output: ::Hash[Symbol, top],
102
102
  parent_objective_id: String,
103
103
  secrets: ::Array[Cadenya::ObjectiveSecret],
104
104
  state_message: String,
105
- user_data: ::Hash[Symbol, top]
105
+ system_prompt_data: ::Hash[Symbol, top]
106
106
  }
107
107
 
108
108
  type state =
@@ -4,13 +4,13 @@ module Cadenya
4
4
  {
5
5
  workspace_id: String,
6
6
  agent_id: String,
7
- data: ::Hash[Symbol, top],
7
+ system_prompt_data: ::Hash[Symbol, top],
8
8
  episodic_memory: Cadenya::ObjectiveCreateParams::EpisodicMemory,
9
- initial_message: String,
9
+ first_user_message: String,
10
+ first_user_message_data: ::Hash[Symbol, top],
10
11
  memory_cascade: ::Array[Cadenya::MemoryReference],
11
12
  metadata: Cadenya::CreateOperationMetadata,
12
13
  secrets: ::Array[Cadenya::ObjectiveCreateParams::Secret],
13
- user_data: ::Hash[Symbol, top],
14
14
  variation_id: String
15
15
  }
16
16
  & Cadenya::Internal::Type::request_parameters
@@ -23,7 +23,7 @@ module Cadenya
23
23
 
24
24
  attr_accessor agent_id: String
25
25
 
26
- attr_accessor data: ::Hash[Symbol, top]
26
+ attr_accessor system_prompt_data: ::Hash[Symbol, top]
27
27
 
28
28
  attr_reader episodic_memory: Cadenya::ObjectiveCreateParams::EpisodicMemory?
29
29
 
@@ -31,9 +31,13 @@ module Cadenya
31
31
  Cadenya::ObjectiveCreateParams::EpisodicMemory
32
32
  ) -> Cadenya::ObjectiveCreateParams::EpisodicMemory
33
33
 
34
- attr_reader initial_message: String?
34
+ attr_reader first_user_message: String?
35
35
 
36
- def initial_message=: (String) -> String
36
+ def first_user_message=: (String) -> String
37
+
38
+ attr_reader first_user_message_data: ::Hash[Symbol, top]?
39
+
40
+ def first_user_message_data=: (::Hash[Symbol, top]) -> ::Hash[Symbol, top]
37
41
 
38
42
  attr_reader memory_cascade: ::Array[Cadenya::MemoryReference]?
39
43
 
@@ -53,10 +57,6 @@ module Cadenya
53
57
  ::Array[Cadenya::ObjectiveCreateParams::Secret]
54
58
  ) -> ::Array[Cadenya::ObjectiveCreateParams::Secret]
55
59
 
56
- attr_reader user_data: ::Hash[Symbol, top]?
57
-
58
- def user_data=: (::Hash[Symbol, top]) -> ::Hash[Symbol, top]
59
-
60
60
  attr_reader variation_id: String?
61
61
 
62
62
  def variation_id=: (String) -> String
@@ -64,13 +64,13 @@ module Cadenya
64
64
  def initialize: (
65
65
  workspace_id: String,
66
66
  agent_id: String,
67
- data: ::Hash[Symbol, top],
67
+ system_prompt_data: ::Hash[Symbol, top],
68
68
  ?episodic_memory: Cadenya::ObjectiveCreateParams::EpisodicMemory,
69
- ?initial_message: String,
69
+ ?first_user_message: String,
70
+ ?first_user_message_data: ::Hash[Symbol, top],
70
71
  ?memory_cascade: ::Array[Cadenya::MemoryReference],
71
72
  ?metadata: Cadenya::CreateOperationMetadata,
72
73
  ?secrets: ::Array[Cadenya::ObjectiveCreateParams::Secret],
73
- ?user_data: ::Hash[Symbol, top],
74
74
  ?variation_id: String,
75
75
  ?request_options: Cadenya::request_opts
76
76
  ) -> void
@@ -78,13 +78,13 @@ module Cadenya
78
78
  def to_hash: -> {
79
79
  workspace_id: String,
80
80
  agent_id: String,
81
- data: ::Hash[Symbol, top],
81
+ system_prompt_data: ::Hash[Symbol, top],
82
82
  episodic_memory: Cadenya::ObjectiveCreateParams::EpisodicMemory,
83
- initial_message: String,
83
+ first_user_message: String,
84
+ first_user_message_data: ::Hash[Symbol, top],
84
85
  memory_cascade: ::Array[Cadenya::MemoryReference],
85
86
  metadata: Cadenya::CreateOperationMetadata,
86
87
  secrets: ::Array[Cadenya::ObjectiveCreateParams::Secret],
87
- user_data: ::Hash[Symbol, top],
88
88
  variation_id: String,
89
89
  request_options: Cadenya::RequestOptions
90
90
  }
@@ -0,0 +1,30 @@
1
+ module Cadenya
2
+ module Models
3
+ type objective_diagnostics =
4
+ {
5
+ cached_input_tokens: Integer,
6
+ context_lengths: Cadenya::ContextLengths,
7
+ input_tokens: Integer
8
+ }
9
+
10
+ class ObjectiveDiagnostics < Cadenya::Internal::Type::BaseModel
11
+ attr_accessor cached_input_tokens: Integer
12
+
13
+ attr_accessor context_lengths: Cadenya::ContextLengths
14
+
15
+ attr_accessor input_tokens: Integer
16
+
17
+ def initialize: (
18
+ cached_input_tokens: Integer,
19
+ context_lengths: Cadenya::ContextLengths,
20
+ input_tokens: Integer
21
+ ) -> void
22
+
23
+ def to_hash: -> {
24
+ cached_input_tokens: Integer,
25
+ context_lengths: Cadenya::ContextLengths,
26
+ input_tokens: Integer
27
+ }
28
+ end
29
+ end
30
+ end
@@ -0,0 +1,28 @@
1
+ module Cadenya
2
+ module Models
3
+ type objective_retrieve_diagnostics_params =
4
+ { workspace_id: String, objective_id: String }
5
+ & Cadenya::Internal::Type::request_parameters
6
+
7
+ class ObjectiveRetrieveDiagnosticsParams < Cadenya::Internal::Type::BaseModel
8
+ extend Cadenya::Internal::Type::RequestParameters::Converter
9
+ include Cadenya::Internal::Type::RequestParameters
10
+
11
+ attr_accessor workspace_id: String
12
+
13
+ attr_accessor objective_id: String
14
+
15
+ def initialize: (
16
+ workspace_id: String,
17
+ objective_id: String,
18
+ ?request_options: Cadenya::request_opts
19
+ ) -> void
20
+
21
+ def to_hash: -> {
22
+ workspace_id: String,
23
+ objective_id: String,
24
+ request_options: Cadenya::RequestOptions
25
+ }
26
+ end
27
+ end
28
+ end
@@ -0,0 +1,14 @@
1
+ module Cadenya
2
+ module Models
3
+ type objective_retrieve_diagnostics_response =
4
+ { diagnostics: Cadenya::ObjectiveDiagnostics }
5
+
6
+ class ObjectiveRetrieveDiagnosticsResponse < Cadenya::Internal::Type::BaseModel
7
+ attr_accessor diagnostics: Cadenya::ObjectiveDiagnostics
8
+
9
+ def initialize: (diagnostics: Cadenya::ObjectiveDiagnostics) -> void
10
+
11
+ def to_hash: -> { diagnostics: Cadenya::ObjectiveDiagnostics }
12
+ end
13
+ end
14
+ end
@@ -85,6 +85,8 @@ module Cadenya
85
85
 
86
86
  class CallableTool = Cadenya::Models::CallableTool
87
87
 
88
+ class ContextLengths = Cadenya::Models::ContextLengths
89
+
88
90
  class ContextWindowCompacted = Cadenya::Models::ContextWindowCompacted
89
91
 
90
92
  class CreateOperationMetadata = Cadenya::Models::CreateOperationMetadata
@@ -143,6 +145,8 @@ module Cadenya
143
145
 
144
146
  class ObjectiveCreateParams = Cadenya::Models::ObjectiveCreateParams
145
147
 
148
+ class ObjectiveDiagnostics = Cadenya::Models::ObjectiveDiagnostics
149
+
146
150
  class ObjectiveError = Cadenya::Models::ObjectiveError
147
151
 
148
152
  class ObjectiveEvent = Cadenya::Models::ObjectiveEvent
@@ -161,6 +165,8 @@ module Cadenya
161
165
 
162
166
  class ObjectiveListParams = Cadenya::Models::ObjectiveListParams
163
167
 
168
+ class ObjectiveRetrieveDiagnosticsParams = Cadenya::Models::ObjectiveRetrieveDiagnosticsParams
169
+
164
170
  class ObjectiveRetrieveParams = Cadenya::Models::ObjectiveRetrieveParams
165
171
 
166
172
  module Objectives = Cadenya::Models::Objectives
@@ -12,13 +12,13 @@ module Cadenya
12
12
  def create: (
13
13
  String workspace_id,
14
14
  agent_id: String,
15
- data: ::Hash[Symbol, top],
15
+ system_prompt_data: ::Hash[Symbol, top],
16
16
  ?episodic_memory: Cadenya::ObjectiveCreateParams::EpisodicMemory,
17
- ?initial_message: String,
17
+ ?first_user_message: String,
18
+ ?first_user_message_data: ::Hash[Symbol, top],
18
19
  ?memory_cascade: ::Array[Cadenya::MemoryReference],
19
20
  ?metadata: Cadenya::CreateOperationMetadata,
20
21
  ?secrets: ::Array[Cadenya::ObjectiveCreateParams::Secret],
21
- ?user_data: ::Hash[Symbol, top],
22
22
  ?variation_id: String,
23
23
  ?request_options: Cadenya::request_opts
24
24
  ) -> Cadenya::Objective
@@ -86,6 +86,12 @@ module Cadenya
86
86
  ?request_options: Cadenya::request_opts
87
87
  ) -> Cadenya::Internal::CursorPagination[Cadenya::ObjectiveEvent]
88
88
 
89
+ def retrieve_diagnostics: (
90
+ String objective_id,
91
+ workspace_id: String,
92
+ ?request_options: Cadenya::request_opts
93
+ ) -> Cadenya::Models::ObjectiveRetrieveDiagnosticsResponse
94
+
89
95
  def stream_events_streaming: (
90
96
  String objective_id,
91
97
  workspace_id: String,
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cadenya
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.27.0
4
+ version: 0.29.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cadenya
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-07-03 00:00:00.000000000 Z
11
+ date: 2026-07-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cgi
@@ -170,6 +170,7 @@ files:
170
170
  - lib/cadenya/models/attribute_filter.rb
171
171
  - lib/cadenya/models/bare_metadata.rb
172
172
  - lib/cadenya/models/callable_tool.rb
173
+ - lib/cadenya/models/context_lengths.rb
173
174
  - lib/cadenya/models/context_window_compacted.rb
174
175
  - lib/cadenya/models/create_operation_metadata.rb
175
176
  - lib/cadenya/models/create_resource_metadata.rb
@@ -211,6 +212,7 @@ files:
211
212
  - lib/cadenya/models/objective_context_window_data.rb
212
213
  - lib/cadenya/models/objective_continue_params.rb
213
214
  - lib/cadenya/models/objective_create_params.rb
215
+ - lib/cadenya/models/objective_diagnostics.rb
214
216
  - lib/cadenya/models/objective_error.rb
215
217
  - lib/cadenya/models/objective_event.rb
216
218
  - lib/cadenya/models/objective_event_data.rb
@@ -220,6 +222,8 @@ files:
220
222
  - lib/cadenya/models/objective_list_context_windows_params.rb
221
223
  - lib/cadenya/models/objective_list_events_params.rb
222
224
  - lib/cadenya/models/objective_list_params.rb
225
+ - lib/cadenya/models/objective_retrieve_diagnostics_params.rb
226
+ - lib/cadenya/models/objective_retrieve_diagnostics_response.rb
223
227
  - lib/cadenya/models/objective_retrieve_params.rb
224
228
  - lib/cadenya/models/objective_secret.rb
225
229
  - lib/cadenya/models/objective_stream_events_params.rb
@@ -484,6 +488,7 @@ files:
484
488
  - rbi/cadenya/models/attribute_filter.rbi
485
489
  - rbi/cadenya/models/bare_metadata.rbi
486
490
  - rbi/cadenya/models/callable_tool.rbi
491
+ - rbi/cadenya/models/context_lengths.rbi
487
492
  - rbi/cadenya/models/context_window_compacted.rbi
488
493
  - rbi/cadenya/models/create_operation_metadata.rbi
489
494
  - rbi/cadenya/models/create_resource_metadata.rbi
@@ -525,6 +530,7 @@ files:
525
530
  - rbi/cadenya/models/objective_context_window_data.rbi
526
531
  - rbi/cadenya/models/objective_continue_params.rbi
527
532
  - rbi/cadenya/models/objective_create_params.rbi
533
+ - rbi/cadenya/models/objective_diagnostics.rbi
528
534
  - rbi/cadenya/models/objective_error.rbi
529
535
  - rbi/cadenya/models/objective_event.rbi
530
536
  - rbi/cadenya/models/objective_event_data.rbi
@@ -534,6 +540,8 @@ files:
534
540
  - rbi/cadenya/models/objective_list_context_windows_params.rbi
535
541
  - rbi/cadenya/models/objective_list_events_params.rbi
536
542
  - rbi/cadenya/models/objective_list_params.rbi
543
+ - rbi/cadenya/models/objective_retrieve_diagnostics_params.rbi
544
+ - rbi/cadenya/models/objective_retrieve_diagnostics_response.rbi
537
545
  - rbi/cadenya/models/objective_retrieve_params.rbi
538
546
  - rbi/cadenya/models/objective_secret.rbi
539
547
  - rbi/cadenya/models/objective_stream_events_params.rbi
@@ -797,6 +805,7 @@ files:
797
805
  - sig/cadenya/models/attribute_filter.rbs
798
806
  - sig/cadenya/models/bare_metadata.rbs
799
807
  - sig/cadenya/models/callable_tool.rbs
808
+ - sig/cadenya/models/context_lengths.rbs
800
809
  - sig/cadenya/models/context_window_compacted.rbs
801
810
  - sig/cadenya/models/create_operation_metadata.rbs
802
811
  - sig/cadenya/models/create_resource_metadata.rbs
@@ -838,6 +847,7 @@ files:
838
847
  - sig/cadenya/models/objective_context_window_data.rbs
839
848
  - sig/cadenya/models/objective_continue_params.rbs
840
849
  - sig/cadenya/models/objective_create_params.rbs
850
+ - sig/cadenya/models/objective_diagnostics.rbs
841
851
  - sig/cadenya/models/objective_error.rbs
842
852
  - sig/cadenya/models/objective_event.rbs
843
853
  - sig/cadenya/models/objective_event_data.rbs
@@ -847,6 +857,8 @@ files:
847
857
  - sig/cadenya/models/objective_list_context_windows_params.rbs
848
858
  - sig/cadenya/models/objective_list_events_params.rbs
849
859
  - sig/cadenya/models/objective_list_params.rbs
860
+ - sig/cadenya/models/objective_retrieve_diagnostics_params.rbs
861
+ - sig/cadenya/models/objective_retrieve_diagnostics_response.rbs
850
862
  - sig/cadenya/models/objective_retrieve_params.rbs
851
863
  - sig/cadenya/models/objective_secret.rbs
852
864
  - sig/cadenya/models/objective_stream_events_params.rbs