cerca 0.1.0 → 0.2.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/README.md +1 -1
- data/lib/cerca/internal/thread_messages_cursor_page.rb +92 -0
- data/lib/cerca/models/activity_detail.rb +24 -0
- data/lib/cerca/models/activity_summary.rb +112 -0
- data/lib/cerca/models/message.rb +1 -0
- data/lib/cerca/models/message_page.rb +27 -0
- data/lib/cerca/models/thread.rb +15 -1
- data/lib/cerca/models/thread_activity_params.rb +36 -0
- data/lib/cerca/models/thread_list_messages_params.rb +52 -0
- data/lib/cerca/models/thread_retrieve_params.rb +10 -3
- data/lib/cerca/models/thread_turn_summary.rb +56 -0
- data/lib/cerca/models.rb +12 -0
- data/lib/cerca/resources/threads.rb +65 -1
- data/lib/cerca/version.rb +1 -1
- data/lib/cerca.rb +7 -0
- data/rbi/cerca/internal/thread_messages_cursor_page.rbi +25 -0
- data/rbi/cerca/models/activity_detail.rbi +36 -0
- data/rbi/cerca/models/activity_summary.rbi +117 -0
- data/rbi/cerca/models/message_page.rbi +41 -0
- data/rbi/cerca/models/thread.rbi +12 -0
- data/rbi/cerca/models/thread_activity_params.rbi +58 -0
- data/rbi/cerca/models/thread_list_messages_params.rbi +80 -0
- data/rbi/cerca/models/thread_retrieve_params.rbi +9 -3
- data/rbi/cerca/models/thread_turn_summary.rbi +85 -0
- data/rbi/cerca/models.rbi +12 -0
- data/rbi/cerca/resources/threads.rbi +47 -1
- data/sig/cerca/internal/thread_messages_cursor_page.rbs +15 -0
- data/sig/cerca/models/activity_detail.rbs +28 -0
- data/sig/cerca/models/activity_summary.rbs +85 -0
- data/sig/cerca/models/message_page.rbs +26 -0
- data/sig/cerca/models/thread.rbs +10 -0
- data/sig/cerca/models/thread_activity_params.rbs +34 -0
- data/sig/cerca/models/thread_list_messages_params.rbs +52 -0
- data/sig/cerca/models/thread_turn_summary.rbs +56 -0
- data/sig/cerca/models.rbs +12 -0
- data/sig/cerca/resources/threads.rbs +16 -0
- metadata +28 -3
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
module Cerca
|
|
2
|
+
module Internal
|
|
3
|
+
class ThreadMessagesCursorPage[Elem]
|
|
4
|
+
include Cerca::Internal::Type::BasePage[Elem]
|
|
5
|
+
|
|
6
|
+
attr_accessor messages: ::Array[Elem]?
|
|
7
|
+
|
|
8
|
+
attr_accessor cursor: String?
|
|
9
|
+
|
|
10
|
+
attr_accessor has_more: bool
|
|
11
|
+
|
|
12
|
+
def inspect: -> String
|
|
13
|
+
end
|
|
14
|
+
end
|
|
15
|
+
end
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
module Cerca
|
|
2
|
+
module Models
|
|
3
|
+
type activity_detail =
|
|
4
|
+
{ error: String?, recent_turns: ::Array[Cerca::ThreadTurnSummary] }
|
|
5
|
+
|
|
6
|
+
class ActivityDetail < Cerca::Models::ActivitySummary
|
|
7
|
+
def error: -> String?
|
|
8
|
+
|
|
9
|
+
def error=: (String? _) -> String?
|
|
10
|
+
|
|
11
|
+
def recent_turns: -> ::Array[Cerca::ThreadTurnSummary]
|
|
12
|
+
|
|
13
|
+
def recent_turns=: (
|
|
14
|
+
::Array[Cerca::ThreadTurnSummary] _
|
|
15
|
+
) -> ::Array[Cerca::ThreadTurnSummary]
|
|
16
|
+
|
|
17
|
+
def initialize: (
|
|
18
|
+
error: String?,
|
|
19
|
+
recent_turns: ::Array[Cerca::ThreadTurnSummary]
|
|
20
|
+
) -> void
|
|
21
|
+
|
|
22
|
+
def to_hash: -> {
|
|
23
|
+
error: String?,
|
|
24
|
+
recent_turns: ::Array[Cerca::ThreadTurnSummary]
|
|
25
|
+
}
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
end
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
module Cerca
|
|
2
|
+
module Models
|
|
3
|
+
type activity_summary =
|
|
4
|
+
{
|
|
5
|
+
id: String,
|
|
6
|
+
completed_at: String?,
|
|
7
|
+
created_at: String,
|
|
8
|
+
goal: String,
|
|
9
|
+
latest_activity: String?,
|
|
10
|
+
message_count: Float,
|
|
11
|
+
model: String,
|
|
12
|
+
next_step: String?,
|
|
13
|
+
parent_thread_id: String?,
|
|
14
|
+
result: String?,
|
|
15
|
+
schedule_id: String?,
|
|
16
|
+
status: Cerca::Models::status,
|
|
17
|
+
step_count: Float,
|
|
18
|
+
updated_at: String
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
class ActivitySummary < Cerca::Internal::Type::BaseModel
|
|
22
|
+
attr_accessor id: String
|
|
23
|
+
|
|
24
|
+
attr_accessor completed_at: String?
|
|
25
|
+
|
|
26
|
+
attr_accessor created_at: String
|
|
27
|
+
|
|
28
|
+
attr_accessor goal: String
|
|
29
|
+
|
|
30
|
+
attr_accessor latest_activity: String?
|
|
31
|
+
|
|
32
|
+
attr_accessor message_count: Float
|
|
33
|
+
|
|
34
|
+
attr_accessor model: String
|
|
35
|
+
|
|
36
|
+
attr_accessor next_step: String?
|
|
37
|
+
|
|
38
|
+
attr_accessor parent_thread_id: String?
|
|
39
|
+
|
|
40
|
+
attr_accessor result: String?
|
|
41
|
+
|
|
42
|
+
attr_accessor schedule_id: String?
|
|
43
|
+
|
|
44
|
+
attr_accessor status: Cerca::Models::status
|
|
45
|
+
|
|
46
|
+
attr_accessor step_count: Float
|
|
47
|
+
|
|
48
|
+
attr_accessor updated_at: String
|
|
49
|
+
|
|
50
|
+
def initialize: (
|
|
51
|
+
id: String,
|
|
52
|
+
completed_at: String?,
|
|
53
|
+
created_at: String,
|
|
54
|
+
goal: String,
|
|
55
|
+
latest_activity: String?,
|
|
56
|
+
message_count: Float,
|
|
57
|
+
model: String,
|
|
58
|
+
next_step: String?,
|
|
59
|
+
parent_thread_id: String?,
|
|
60
|
+
result: String?,
|
|
61
|
+
schedule_id: String?,
|
|
62
|
+
status: Cerca::Models::status,
|
|
63
|
+
step_count: Float,
|
|
64
|
+
updated_at: String
|
|
65
|
+
) -> void
|
|
66
|
+
|
|
67
|
+
def to_hash: -> {
|
|
68
|
+
id: String,
|
|
69
|
+
completed_at: String?,
|
|
70
|
+
created_at: String,
|
|
71
|
+
goal: String,
|
|
72
|
+
latest_activity: String?,
|
|
73
|
+
message_count: Float,
|
|
74
|
+
model: String,
|
|
75
|
+
next_step: String?,
|
|
76
|
+
parent_thread_id: String?,
|
|
77
|
+
result: String?,
|
|
78
|
+
schedule_id: String?,
|
|
79
|
+
status: Cerca::Models::status,
|
|
80
|
+
step_count: Float,
|
|
81
|
+
updated_at: String
|
|
82
|
+
}
|
|
83
|
+
end
|
|
84
|
+
end
|
|
85
|
+
end
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
module Cerca
|
|
2
|
+
module Models
|
|
3
|
+
type message_page =
|
|
4
|
+
{ cursor: String?, has_more: bool, messages: ::Array[Cerca::Message] }
|
|
5
|
+
|
|
6
|
+
class MessagePage < Cerca::Internal::Type::BaseModel
|
|
7
|
+
attr_accessor cursor: String?
|
|
8
|
+
|
|
9
|
+
attr_accessor has_more: bool
|
|
10
|
+
|
|
11
|
+
attr_accessor messages: ::Array[Cerca::Message]
|
|
12
|
+
|
|
13
|
+
def initialize: (
|
|
14
|
+
cursor: String?,
|
|
15
|
+
has_more: bool,
|
|
16
|
+
messages: ::Array[Cerca::Message]
|
|
17
|
+
) -> void
|
|
18
|
+
|
|
19
|
+
def to_hash: -> {
|
|
20
|
+
cursor: String?,
|
|
21
|
+
has_more: bool,
|
|
22
|
+
messages: ::Array[Cerca::Message]
|
|
23
|
+
}
|
|
24
|
+
end
|
|
25
|
+
end
|
|
26
|
+
end
|
data/sig/cerca/models/thread.rbs
CHANGED
|
@@ -9,9 +9,11 @@ module Cerca
|
|
|
9
9
|
created_at: String,
|
|
10
10
|
depth: Float,
|
|
11
11
|
error: String?,
|
|
12
|
+
has_more_messages: bool,
|
|
12
13
|
instructions: String?,
|
|
13
14
|
last_turn_status: Cerca::Models::Thread::last_turn_status?,
|
|
14
15
|
message: String,
|
|
16
|
+
message_cursor: Float?,
|
|
15
17
|
messages: ::Array[Cerca::Message],
|
|
16
18
|
model: String,
|
|
17
19
|
parent_thread_id: String?,
|
|
@@ -41,12 +43,16 @@ module Cerca
|
|
|
41
43
|
|
|
42
44
|
attr_accessor error: String?
|
|
43
45
|
|
|
46
|
+
attr_accessor has_more_messages: bool
|
|
47
|
+
|
|
44
48
|
attr_accessor instructions: String?
|
|
45
49
|
|
|
46
50
|
attr_accessor last_turn_status: Cerca::Models::Thread::last_turn_status?
|
|
47
51
|
|
|
48
52
|
attr_accessor message: String
|
|
49
53
|
|
|
54
|
+
attr_accessor message_cursor: Float?
|
|
55
|
+
|
|
50
56
|
attr_accessor messages: ::Array[Cerca::Message]
|
|
51
57
|
|
|
52
58
|
attr_accessor model: String
|
|
@@ -83,9 +89,11 @@ module Cerca
|
|
|
83
89
|
created_at: String,
|
|
84
90
|
depth: Float,
|
|
85
91
|
error: String?,
|
|
92
|
+
has_more_messages: bool,
|
|
86
93
|
instructions: String?,
|
|
87
94
|
last_turn_status: Cerca::Models::Thread::last_turn_status?,
|
|
88
95
|
message: String,
|
|
96
|
+
message_cursor: Float?,
|
|
89
97
|
messages: ::Array[Cerca::Message],
|
|
90
98
|
model: String,
|
|
91
99
|
parent_thread_id: String?,
|
|
@@ -108,9 +116,11 @@ module Cerca
|
|
|
108
116
|
created_at: String,
|
|
109
117
|
depth: Float,
|
|
110
118
|
error: String?,
|
|
119
|
+
has_more_messages: bool,
|
|
111
120
|
instructions: String?,
|
|
112
121
|
last_turn_status: Cerca::Models::Thread::last_turn_status?,
|
|
113
122
|
message: String,
|
|
123
|
+
message_cursor: Float?,
|
|
114
124
|
messages: ::Array[Cerca::Message],
|
|
115
125
|
model: String,
|
|
116
126
|
parent_thread_id: String?,
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
module Cerca
|
|
2
|
+
module Models
|
|
3
|
+
type thread_activity_params =
|
|
4
|
+
{ agent_id: String, thread_id: String, fleet_id: String }
|
|
5
|
+
& Cerca::Internal::Type::request_parameters
|
|
6
|
+
|
|
7
|
+
class ThreadActivityParams < Cerca::Internal::Type::BaseModel
|
|
8
|
+
extend Cerca::Internal::Type::RequestParameters::Converter
|
|
9
|
+
include Cerca::Internal::Type::RequestParameters
|
|
10
|
+
|
|
11
|
+
attr_accessor agent_id: String
|
|
12
|
+
|
|
13
|
+
attr_accessor thread_id: String
|
|
14
|
+
|
|
15
|
+
attr_reader fleet_id: String?
|
|
16
|
+
|
|
17
|
+
def fleet_id=: (String) -> String
|
|
18
|
+
|
|
19
|
+
def initialize: (
|
|
20
|
+
agent_id: String,
|
|
21
|
+
thread_id: String,
|
|
22
|
+
?fleet_id: String,
|
|
23
|
+
?request_options: Cerca::request_opts
|
|
24
|
+
) -> void
|
|
25
|
+
|
|
26
|
+
def to_hash: -> {
|
|
27
|
+
agent_id: String,
|
|
28
|
+
thread_id: String,
|
|
29
|
+
fleet_id: String,
|
|
30
|
+
request_options: Cerca::RequestOptions
|
|
31
|
+
}
|
|
32
|
+
end
|
|
33
|
+
end
|
|
34
|
+
end
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
module Cerca
|
|
2
|
+
module Models
|
|
3
|
+
type thread_list_messages_params =
|
|
4
|
+
{
|
|
5
|
+
agent_id: String,
|
|
6
|
+
thread_id: String,
|
|
7
|
+
cursor: String,
|
|
8
|
+
fleet_id: String,
|
|
9
|
+
limit: String
|
|
10
|
+
}
|
|
11
|
+
& Cerca::Internal::Type::request_parameters
|
|
12
|
+
|
|
13
|
+
class ThreadListMessagesParams < Cerca::Internal::Type::BaseModel
|
|
14
|
+
extend Cerca::Internal::Type::RequestParameters::Converter
|
|
15
|
+
include Cerca::Internal::Type::RequestParameters
|
|
16
|
+
|
|
17
|
+
attr_accessor agent_id: String
|
|
18
|
+
|
|
19
|
+
attr_accessor thread_id: String
|
|
20
|
+
|
|
21
|
+
attr_reader cursor: String?
|
|
22
|
+
|
|
23
|
+
def cursor=: (String) -> String
|
|
24
|
+
|
|
25
|
+
attr_reader fleet_id: String?
|
|
26
|
+
|
|
27
|
+
def fleet_id=: (String) -> String
|
|
28
|
+
|
|
29
|
+
attr_reader limit: String?
|
|
30
|
+
|
|
31
|
+
def limit=: (String) -> String
|
|
32
|
+
|
|
33
|
+
def initialize: (
|
|
34
|
+
agent_id: String,
|
|
35
|
+
thread_id: String,
|
|
36
|
+
?cursor: String,
|
|
37
|
+
?fleet_id: String,
|
|
38
|
+
?limit: String,
|
|
39
|
+
?request_options: Cerca::request_opts
|
|
40
|
+
) -> void
|
|
41
|
+
|
|
42
|
+
def to_hash: -> {
|
|
43
|
+
agent_id: String,
|
|
44
|
+
thread_id: String,
|
|
45
|
+
cursor: String,
|
|
46
|
+
fleet_id: String,
|
|
47
|
+
limit: String,
|
|
48
|
+
request_options: Cerca::RequestOptions
|
|
49
|
+
}
|
|
50
|
+
end
|
|
51
|
+
end
|
|
52
|
+
end
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
module Cerca
|
|
2
|
+
module Models
|
|
3
|
+
type thread_turn_summary =
|
|
4
|
+
{
|
|
5
|
+
activity: String?,
|
|
6
|
+
completed_at: String,
|
|
7
|
+
message_count: Float,
|
|
8
|
+
next_step: String?,
|
|
9
|
+
status: Cerca::Models::ThreadTurnSummary::status,
|
|
10
|
+
turn_seq: Float
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
class ThreadTurnSummary < Cerca::Internal::Type::BaseModel
|
|
14
|
+
attr_accessor activity: String?
|
|
15
|
+
|
|
16
|
+
attr_accessor completed_at: String
|
|
17
|
+
|
|
18
|
+
attr_accessor message_count: Float
|
|
19
|
+
|
|
20
|
+
attr_accessor next_step: String?
|
|
21
|
+
|
|
22
|
+
attr_accessor status: Cerca::Models::ThreadTurnSummary::status
|
|
23
|
+
|
|
24
|
+
attr_accessor turn_seq: Float
|
|
25
|
+
|
|
26
|
+
def initialize: (
|
|
27
|
+
activity: String?,
|
|
28
|
+
completed_at: String,
|
|
29
|
+
message_count: Float,
|
|
30
|
+
next_step: String?,
|
|
31
|
+
status: Cerca::Models::ThreadTurnSummary::status,
|
|
32
|
+
turn_seq: Float
|
|
33
|
+
) -> void
|
|
34
|
+
|
|
35
|
+
def to_hash: -> {
|
|
36
|
+
activity: String?,
|
|
37
|
+
completed_at: String,
|
|
38
|
+
message_count: Float,
|
|
39
|
+
next_step: String?,
|
|
40
|
+
status: Cerca::Models::ThreadTurnSummary::status,
|
|
41
|
+
turn_seq: Float
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
type status = :completed | :failed
|
|
45
|
+
|
|
46
|
+
module Status
|
|
47
|
+
extend Cerca::Internal::Type::Enum
|
|
48
|
+
|
|
49
|
+
COMPLETED: :completed
|
|
50
|
+
FAILED: :failed
|
|
51
|
+
|
|
52
|
+
def self?.values: -> ::Array[Cerca::Models::ThreadTurnSummary::status]
|
|
53
|
+
end
|
|
54
|
+
end
|
|
55
|
+
end
|
|
56
|
+
end
|
data/sig/cerca/models.rbs
CHANGED
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
module Cerca
|
|
2
|
+
class ActivityDetail = Cerca::Models::ActivityDetail
|
|
3
|
+
|
|
4
|
+
class ActivitySummary = Cerca::Models::ActivitySummary
|
|
5
|
+
|
|
2
6
|
class Agent = Cerca::Models::Agent
|
|
3
7
|
|
|
4
8
|
class AgentCreateParams = Cerca::Models::AgentCreateParams
|
|
@@ -137,6 +141,8 @@ module Cerca
|
|
|
137
141
|
|
|
138
142
|
class Message = Cerca::Models::Message
|
|
139
143
|
|
|
144
|
+
class MessagePage = Cerca::Models::MessagePage
|
|
145
|
+
|
|
140
146
|
Metadata: Cerca::Internal::Type::Converter
|
|
141
147
|
|
|
142
148
|
class ModelDescriptor = Cerca::Models::ModelDescriptor
|
|
@@ -193,6 +199,8 @@ module Cerca
|
|
|
193
199
|
|
|
194
200
|
class Thread = Cerca::Models::Thread
|
|
195
201
|
|
|
202
|
+
class ThreadActivityParams = Cerca::Models::ThreadActivityParams
|
|
203
|
+
|
|
196
204
|
class ThreadCancelParams = Cerca::Models::ThreadCancelParams
|
|
197
205
|
|
|
198
206
|
class ThreadCloseParams = Cerca::Models::ThreadCloseParams
|
|
@@ -201,6 +209,8 @@ module Cerca
|
|
|
201
209
|
|
|
202
210
|
class ThreadCreateParams = Cerca::Models::ThreadCreateParams
|
|
203
211
|
|
|
212
|
+
class ThreadListMessagesParams = Cerca::Models::ThreadListMessagesParams
|
|
213
|
+
|
|
204
214
|
class ThreadListParams = Cerca::Models::ThreadListParams
|
|
205
215
|
|
|
206
216
|
class ThreadRetrieveParams = Cerca::Models::ThreadRetrieveParams
|
|
@@ -213,6 +223,8 @@ module Cerca
|
|
|
213
223
|
|
|
214
224
|
class ThreadSummary = Cerca::Models::ThreadSummary
|
|
215
225
|
|
|
226
|
+
class ThreadTurnSummary = Cerca::Models::ThreadTurnSummary
|
|
227
|
+
|
|
216
228
|
class TokenUsage = Cerca::Models::TokenUsage
|
|
217
229
|
|
|
218
230
|
module Tool = Cerca::Models::Tool
|
|
@@ -28,6 +28,13 @@ module Cerca
|
|
|
28
28
|
?request_options: Cerca::request_opts
|
|
29
29
|
) -> Cerca::Internal::ThreadsCursorPage[Cerca::ThreadSummary]
|
|
30
30
|
|
|
31
|
+
def activity: (
|
|
32
|
+
String agent_id,
|
|
33
|
+
String thread_id,
|
|
34
|
+
?fleet_id: String,
|
|
35
|
+
?request_options: Cerca::request_opts
|
|
36
|
+
) -> Cerca::ActivityDetail
|
|
37
|
+
|
|
31
38
|
def cancel: (
|
|
32
39
|
String agent_id,
|
|
33
40
|
String thread_id,
|
|
@@ -46,6 +53,15 @@ module Cerca
|
|
|
46
53
|
?request_options: Cerca::request_opts
|
|
47
54
|
) -> Cerca::Thread
|
|
48
55
|
|
|
56
|
+
def list_messages: (
|
|
57
|
+
String agent_id,
|
|
58
|
+
String thread_id,
|
|
59
|
+
?cursor: String,
|
|
60
|
+
?fleet_id: String,
|
|
61
|
+
?limit: String,
|
|
62
|
+
?request_options: Cerca::request_opts
|
|
63
|
+
) -> Cerca::Internal::ThreadMessagesCursorPage[Cerca::Message]
|
|
64
|
+
|
|
49
65
|
def start_turn: (
|
|
50
66
|
String agent_id,
|
|
51
67
|
String thread_id,
|
metadata
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cerca
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Cerca
|
|
8
|
+
autorequire:
|
|
8
9
|
bindir: bin
|
|
9
10
|
cert_chain: []
|
|
10
|
-
date:
|
|
11
|
+
date: 2026-05-07 00:00:00.000000000 Z
|
|
11
12
|
dependencies:
|
|
12
13
|
- !ruby/object:Gem::Dependency
|
|
13
14
|
name: cgi
|
|
@@ -37,6 +38,7 @@ dependencies:
|
|
|
37
38
|
- - ">="
|
|
38
39
|
- !ruby/object:Gem::Version
|
|
39
40
|
version: '0'
|
|
41
|
+
description:
|
|
40
42
|
email: support@cerca.dev
|
|
41
43
|
executables: []
|
|
42
44
|
extensions: []
|
|
@@ -63,6 +65,7 @@ files:
|
|
|
63
65
|
- lib/cerca/internal/sources_cursor_page.rb
|
|
64
66
|
- lib/cerca/internal/stream.rb
|
|
65
67
|
- lib/cerca/internal/subscriptions_cursor_page.rb
|
|
68
|
+
- lib/cerca/internal/thread_messages_cursor_page.rb
|
|
66
69
|
- lib/cerca/internal/threads_cursor_page.rb
|
|
67
70
|
- lib/cerca/internal/transport/base_client.rb
|
|
68
71
|
- lib/cerca/internal/transport/pooled_net_requester.rb
|
|
@@ -80,6 +83,8 @@ files:
|
|
|
80
83
|
- lib/cerca/internal/type/unknown.rb
|
|
81
84
|
- lib/cerca/internal/util.rb
|
|
82
85
|
- lib/cerca/models.rb
|
|
86
|
+
- lib/cerca/models/activity_detail.rb
|
|
87
|
+
- lib/cerca/models/activity_summary.rb
|
|
83
88
|
- lib/cerca/models/agent.rb
|
|
84
89
|
- lib/cerca/models/agent_create_params.rb
|
|
85
90
|
- lib/cerca/models/agent_delete_params.rb
|
|
@@ -158,6 +163,7 @@ files:
|
|
|
158
163
|
- lib/cerca/models/mcp_tool_execution_policy.rb
|
|
159
164
|
- lib/cerca/models/mcp_tool_source.rb
|
|
160
165
|
- lib/cerca/models/message.rb
|
|
166
|
+
- lib/cerca/models/message_page.rb
|
|
161
167
|
- lib/cerca/models/metadata.rb
|
|
162
168
|
- lib/cerca/models/model_descriptor.rb
|
|
163
169
|
- lib/cerca/models/model_list_params.rb
|
|
@@ -191,16 +197,19 @@ files:
|
|
|
191
197
|
- lib/cerca/models/sub_thread_summary.rb
|
|
192
198
|
- lib/cerca/models/subscription_event.rb
|
|
193
199
|
- lib/cerca/models/thread.rb
|
|
200
|
+
- lib/cerca/models/thread_activity_params.rb
|
|
194
201
|
- lib/cerca/models/thread_cancel_params.rb
|
|
195
202
|
- lib/cerca/models/thread_close_params.rb
|
|
196
203
|
- lib/cerca/models/thread_compact_params.rb
|
|
197
204
|
- lib/cerca/models/thread_create_params.rb
|
|
205
|
+
- lib/cerca/models/thread_list_messages_params.rb
|
|
198
206
|
- lib/cerca/models/thread_list_params.rb
|
|
199
207
|
- lib/cerca/models/thread_retrieve_params.rb
|
|
200
208
|
- lib/cerca/models/thread_start_turn_params.rb
|
|
201
209
|
- lib/cerca/models/thread_steer_params.rb
|
|
202
210
|
- lib/cerca/models/thread_stream_event.rb
|
|
203
211
|
- lib/cerca/models/thread_summary.rb
|
|
212
|
+
- lib/cerca/models/thread_turn_summary.rb
|
|
204
213
|
- lib/cerca/models/token_usage.rb
|
|
205
214
|
- lib/cerca/models/tool.rb
|
|
206
215
|
- lib/cerca/models/tool_approval_mode.rb
|
|
@@ -261,6 +270,7 @@ files:
|
|
|
261
270
|
- rbi/cerca/internal/sources_cursor_page.rbi
|
|
262
271
|
- rbi/cerca/internal/stream.rbi
|
|
263
272
|
- rbi/cerca/internal/subscriptions_cursor_page.rbi
|
|
273
|
+
- rbi/cerca/internal/thread_messages_cursor_page.rbi
|
|
264
274
|
- rbi/cerca/internal/threads_cursor_page.rbi
|
|
265
275
|
- rbi/cerca/internal/transport/base_client.rbi
|
|
266
276
|
- rbi/cerca/internal/transport/pooled_net_requester.rbi
|
|
@@ -278,6 +288,8 @@ files:
|
|
|
278
288
|
- rbi/cerca/internal/type/unknown.rbi
|
|
279
289
|
- rbi/cerca/internal/util.rbi
|
|
280
290
|
- rbi/cerca/models.rbi
|
|
291
|
+
- rbi/cerca/models/activity_detail.rbi
|
|
292
|
+
- rbi/cerca/models/activity_summary.rbi
|
|
281
293
|
- rbi/cerca/models/agent.rbi
|
|
282
294
|
- rbi/cerca/models/agent_create_params.rbi
|
|
283
295
|
- rbi/cerca/models/agent_delete_params.rbi
|
|
@@ -356,6 +368,7 @@ files:
|
|
|
356
368
|
- rbi/cerca/models/mcp_tool_execution_policy.rbi
|
|
357
369
|
- rbi/cerca/models/mcp_tool_source.rbi
|
|
358
370
|
- rbi/cerca/models/message.rbi
|
|
371
|
+
- rbi/cerca/models/message_page.rbi
|
|
359
372
|
- rbi/cerca/models/metadata.rbi
|
|
360
373
|
- rbi/cerca/models/model_descriptor.rbi
|
|
361
374
|
- rbi/cerca/models/model_list_params.rbi
|
|
@@ -389,16 +402,19 @@ files:
|
|
|
389
402
|
- rbi/cerca/models/sub_thread_summary.rbi
|
|
390
403
|
- rbi/cerca/models/subscription_event.rbi
|
|
391
404
|
- rbi/cerca/models/thread.rbi
|
|
405
|
+
- rbi/cerca/models/thread_activity_params.rbi
|
|
392
406
|
- rbi/cerca/models/thread_cancel_params.rbi
|
|
393
407
|
- rbi/cerca/models/thread_close_params.rbi
|
|
394
408
|
- rbi/cerca/models/thread_compact_params.rbi
|
|
395
409
|
- rbi/cerca/models/thread_create_params.rbi
|
|
410
|
+
- rbi/cerca/models/thread_list_messages_params.rbi
|
|
396
411
|
- rbi/cerca/models/thread_list_params.rbi
|
|
397
412
|
- rbi/cerca/models/thread_retrieve_params.rbi
|
|
398
413
|
- rbi/cerca/models/thread_start_turn_params.rbi
|
|
399
414
|
- rbi/cerca/models/thread_steer_params.rbi
|
|
400
415
|
- rbi/cerca/models/thread_stream_event.rbi
|
|
401
416
|
- rbi/cerca/models/thread_summary.rbi
|
|
417
|
+
- rbi/cerca/models/thread_turn_summary.rbi
|
|
402
418
|
- rbi/cerca/models/token_usage.rbi
|
|
403
419
|
- rbi/cerca/models/tool.rbi
|
|
404
420
|
- rbi/cerca/models/tool_approval_mode.rbi
|
|
@@ -458,6 +474,7 @@ files:
|
|
|
458
474
|
- sig/cerca/internal/sources_cursor_page.rbs
|
|
459
475
|
- sig/cerca/internal/stream.rbs
|
|
460
476
|
- sig/cerca/internal/subscriptions_cursor_page.rbs
|
|
477
|
+
- sig/cerca/internal/thread_messages_cursor_page.rbs
|
|
461
478
|
- sig/cerca/internal/threads_cursor_page.rbs
|
|
462
479
|
- sig/cerca/internal/transport/base_client.rbs
|
|
463
480
|
- sig/cerca/internal/transport/pooled_net_requester.rbs
|
|
@@ -475,6 +492,8 @@ files:
|
|
|
475
492
|
- sig/cerca/internal/type/unknown.rbs
|
|
476
493
|
- sig/cerca/internal/util.rbs
|
|
477
494
|
- sig/cerca/models.rbs
|
|
495
|
+
- sig/cerca/models/activity_detail.rbs
|
|
496
|
+
- sig/cerca/models/activity_summary.rbs
|
|
478
497
|
- sig/cerca/models/agent.rbs
|
|
479
498
|
- sig/cerca/models/agent_create_params.rbs
|
|
480
499
|
- sig/cerca/models/agent_delete_params.rbs
|
|
@@ -553,6 +572,7 @@ files:
|
|
|
553
572
|
- sig/cerca/models/mcp_tool_execution_policy.rbs
|
|
554
573
|
- sig/cerca/models/mcp_tool_source.rbs
|
|
555
574
|
- sig/cerca/models/message.rbs
|
|
575
|
+
- sig/cerca/models/message_page.rbs
|
|
556
576
|
- sig/cerca/models/metadata.rbs
|
|
557
577
|
- sig/cerca/models/model_descriptor.rbs
|
|
558
578
|
- sig/cerca/models/model_list_params.rbs
|
|
@@ -586,16 +606,19 @@ files:
|
|
|
586
606
|
- sig/cerca/models/sub_thread_summary.rbs
|
|
587
607
|
- sig/cerca/models/subscription_event.rbs
|
|
588
608
|
- sig/cerca/models/thread.rbs
|
|
609
|
+
- sig/cerca/models/thread_activity_params.rbs
|
|
589
610
|
- sig/cerca/models/thread_cancel_params.rbs
|
|
590
611
|
- sig/cerca/models/thread_close_params.rbs
|
|
591
612
|
- sig/cerca/models/thread_compact_params.rbs
|
|
592
613
|
- sig/cerca/models/thread_create_params.rbs
|
|
614
|
+
- sig/cerca/models/thread_list_messages_params.rbs
|
|
593
615
|
- sig/cerca/models/thread_list_params.rbs
|
|
594
616
|
- sig/cerca/models/thread_retrieve_params.rbs
|
|
595
617
|
- sig/cerca/models/thread_start_turn_params.rbs
|
|
596
618
|
- sig/cerca/models/thread_steer_params.rbs
|
|
597
619
|
- sig/cerca/models/thread_stream_event.rbs
|
|
598
620
|
- sig/cerca/models/thread_summary.rbs
|
|
621
|
+
- sig/cerca/models/thread_turn_summary.rbs
|
|
599
622
|
- sig/cerca/models/token_usage.rbs
|
|
600
623
|
- sig/cerca/models/tool.rbs
|
|
601
624
|
- sig/cerca/models/tool_approval_mode.rbs
|
|
@@ -646,6 +669,7 @@ metadata:
|
|
|
646
669
|
homepage_uri: https://gemdocs.org/gems/cerca
|
|
647
670
|
source_code_uri: https://github.com/matrices/cerca-ruby
|
|
648
671
|
rubygems_mfa_required: 'false'
|
|
672
|
+
post_install_message:
|
|
649
673
|
rdoc_options: []
|
|
650
674
|
require_paths:
|
|
651
675
|
- lib
|
|
@@ -660,7 +684,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
660
684
|
- !ruby/object:Gem::Version
|
|
661
685
|
version: '0'
|
|
662
686
|
requirements: []
|
|
663
|
-
rubygems_version: 4.
|
|
687
|
+
rubygems_version: 3.4.1
|
|
688
|
+
signing_key:
|
|
664
689
|
specification_version: 4
|
|
665
690
|
summary: Ruby library to access the Cerca API
|
|
666
691
|
test_files: []
|