handinger 0.13.0 → 0.13.1

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,138 +0,0 @@
1
- module Handinger
2
- module Models
3
- type task_with_turns =
4
- { task: Handinger::Task, turns: ::Array[Handinger::TaskWithTurns::Turn] }
5
-
6
- class TaskWithTurns < Handinger::Internal::Type::BaseModel
7
- attr_accessor task: Handinger::Task
8
-
9
- attr_accessor turns: ::Array[Handinger::TaskWithTurns::Turn]
10
-
11
- def initialize: (
12
- task: Handinger::Task,
13
- turns: ::Array[Handinger::TaskWithTurns::Turn]
14
- ) -> void
15
-
16
- def to_hash: -> {
17
- task: Handinger::Task,
18
- turns: ::Array[Handinger::TaskWithTurns::Turn]
19
- }
20
-
21
- type turn =
22
- {
23
- id: String,
24
- completed_at: String?,
25
- credits: Integer,
26
- duration_ms: Integer,
27
- files: ::Array[Handinger::TaskWithTurns::Turn::File],
28
- input: String,
29
- input_tokens: Integer,
30
- output_text: String,
31
- output_tokens: Integer,
32
- role: String,
33
- seq: Integer,
34
- started_at: String,
35
- status: String,
36
- structured_output: ::Hash[Symbol, top]?,
37
- task_id: String
38
- }
39
-
40
- class Turn < Handinger::Internal::Type::BaseModel
41
- attr_accessor id: String
42
-
43
- attr_accessor completed_at: String?
44
-
45
- attr_accessor credits: Integer
46
-
47
- attr_accessor duration_ms: Integer
48
-
49
- attr_accessor files: ::Array[Handinger::TaskWithTurns::Turn::File]
50
-
51
- attr_accessor input: String
52
-
53
- attr_accessor input_tokens: Integer
54
-
55
- attr_accessor output_text: String
56
-
57
- attr_accessor output_tokens: Integer
58
-
59
- attr_accessor role: String
60
-
61
- attr_accessor seq: Integer
62
-
63
- attr_accessor started_at: String
64
-
65
- attr_accessor status: String
66
-
67
- attr_accessor structured_output: ::Hash[Symbol, top]?
68
-
69
- attr_accessor task_id: String
70
-
71
- def initialize: (
72
- id: String,
73
- completed_at: String?,
74
- credits: Integer,
75
- duration_ms: Integer,
76
- files: ::Array[Handinger::TaskWithTurns::Turn::File],
77
- input: String,
78
- input_tokens: Integer,
79
- output_text: String,
80
- output_tokens: Integer,
81
- role: String,
82
- seq: Integer,
83
- started_at: String,
84
- status: String,
85
- structured_output: ::Hash[Symbol, top]?,
86
- task_id: String
87
- ) -> void
88
-
89
- def to_hash: -> {
90
- id: String,
91
- completed_at: String?,
92
- credits: Integer,
93
- duration_ms: Integer,
94
- files: ::Array[Handinger::TaskWithTurns::Turn::File],
95
- input: String,
96
- input_tokens: Integer,
97
- output_text: String,
98
- output_tokens: Integer,
99
- role: String,
100
- seq: Integer,
101
- started_at: String,
102
- status: String,
103
- structured_output: ::Hash[Symbol, top]?,
104
- task_id: String
105
- }
106
-
107
- type file =
108
- { filename: String?, media_type: String, url: String, size: Integer }
109
-
110
- class File < Handinger::Internal::Type::BaseModel
111
- attr_accessor filename: String?
112
-
113
- attr_accessor media_type: String
114
-
115
- attr_accessor url: String
116
-
117
- attr_reader size: Integer?
118
-
119
- def size=: (Integer) -> Integer
120
-
121
- def initialize: (
122
- filename: String?,
123
- media_type: String,
124
- url: String,
125
- ?size: Integer
126
- ) -> void
127
-
128
- def to_hash: -> {
129
- filename: String?,
130
- media_type: String,
131
- url: String,
132
- size: Integer
133
- }
134
- end
135
- end
136
- end
137
- end
138
- end