turbopuffer 2.3.0 → 2.5.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 +40 -0
- data/README.md +1 -10
- data/lib/turbopuffer/client.rb +2 -2
- data/lib/turbopuffer/internal/type/union.rb +17 -7
- data/lib/turbopuffer/models/attribute_schema_config.rb +14 -1
- data/lib/turbopuffer/models/copy_from_namespace_operation.rb +84 -0
- data/lib/turbopuffer/models/copy_from_namespace_operation_result.rb +37 -0
- data/lib/turbopuffer/models/highlight_config_params.rb +46 -0
- data/lib/turbopuffer/models/highlight_fragment_by.rb +25 -0
- data/lib/turbopuffer/models/highlight_offset_units.rb +17 -0
- data/lib/turbopuffer/models/namespace_explain_query_params.rb +20 -1
- data/lib/turbopuffer/models/namespace_metadata.rb +32 -2
- data/lib/turbopuffer/models/namespace_metadata_patch.rb +10 -1
- data/lib/turbopuffer/models/namespace_multi_query_params.rb +55 -2
- data/lib/turbopuffer/models/namespace_poll_copy_from_params.rb +26 -0
- data/lib/turbopuffer/models/namespace_query_params.rb +20 -1
- data/lib/turbopuffer/models/namespace_start_copy_from_params.rb +53 -0
- data/lib/turbopuffer/models/namespace_start_copy_from_response.rb +17 -0
- data/lib/turbopuffer/models/namespace_write_params.rb +12 -1
- data/lib/turbopuffer/models/operation_error.rb +46 -0
- data/lib/turbopuffer/models/rerank_limit.rb +18 -0
- data/lib/turbopuffer/models/rrf_params.rb +14 -1
- data/lib/turbopuffer/models/sharding_config.rb +21 -0
- data/lib/turbopuffer/models/write_result.rb +112 -0
- data/lib/turbopuffer/models.rb +22 -0
- data/lib/turbopuffer/resources/namespaces.rb +87 -5
- data/lib/turbopuffer/version.rb +1 -1
- data/lib/turbopuffer.rb +12 -0
- data/rbi/turbopuffer/client.rbi +2 -2
- data/rbi/turbopuffer/models/attribute_schema_config.rbi +20 -3
- data/rbi/turbopuffer/models/copy_from_namespace_operation.rbi +133 -0
- data/rbi/turbopuffer/models/copy_from_namespace_operation_result.rbi +85 -0
- data/rbi/turbopuffer/models/highlight_config_params.rbi +85 -0
- data/rbi/turbopuffer/models/highlight_fragment_by.rbi +36 -0
- data/rbi/turbopuffer/models/highlight_offset_units.rbi +27 -0
- data/rbi/turbopuffer/models/namespace_explain_query_params.rbi +28 -0
- data/rbi/turbopuffer/models/namespace_metadata.rbi +50 -4
- data/rbi/turbopuffer/models/namespace_metadata_patch.rbi +18 -3
- data/rbi/turbopuffer/models/namespace_multi_query_params.rbi +69 -0
- data/rbi/turbopuffer/models/namespace_poll_copy_from_params.rbi +49 -0
- data/rbi/turbopuffer/models/namespace_query_params.rbi +28 -0
- data/rbi/turbopuffer/models/namespace_start_copy_from_params.rbi +113 -0
- data/rbi/turbopuffer/models/namespace_start_copy_from_response.rbi +30 -0
- data/rbi/turbopuffer/models/namespace_write_params.rbi +17 -0
- data/rbi/turbopuffer/models/operation_error.rbi +77 -0
- data/rbi/turbopuffer/models/rerank_limit.rbi +28 -0
- data/rbi/turbopuffer/models/rrf_params.rbi +22 -3
- data/rbi/turbopuffer/models/sharding_config.rbi +31 -0
- data/rbi/turbopuffer/models/write_result.rbi +159 -0
- data/rbi/turbopuffer/models.rbi +24 -0
- data/rbi/turbopuffer/resources/namespaces.rbi +87 -0
- data/sig/turbopuffer/models/attribute_schema_config.rbs +12 -3
- data/sig/turbopuffer/models/copy_from_namespace_operation.rbs +65 -0
- data/sig/turbopuffer/models/copy_from_namespace_operation_result.rbs +33 -0
- data/sig/turbopuffer/models/highlight_config_params.rbs +47 -0
- data/sig/turbopuffer/models/highlight_fragment_by.rbs +23 -0
- data/sig/turbopuffer/models/highlight_offset_units.rbs +15 -0
- data/sig/turbopuffer/models/namespace_explain_query_params.rbs +14 -0
- data/sig/turbopuffer/models/namespace_metadata.rbs +29 -4
- data/sig/turbopuffer/models/namespace_metadata_patch.rbs +12 -3
- data/sig/turbopuffer/models/namespace_multi_query_params.rbs +38 -0
- data/sig/turbopuffer/models/namespace_poll_copy_from_params.rbs +30 -0
- data/sig/turbopuffer/models/namespace_query_params.rbs +14 -0
- data/sig/turbopuffer/models/namespace_start_copy_from_params.rbs +56 -0
- data/sig/turbopuffer/models/namespace_start_copy_from_response.rbs +13 -0
- data/sig/turbopuffer/models/namespace_write_params.rbs +9 -0
- data/sig/turbopuffer/models/operation_error.rbs +34 -0
- data/sig/turbopuffer/models/rerank_limit.rbs +13 -0
- data/sig/turbopuffer/models/rrf_params.rbs +10 -3
- data/sig/turbopuffer/models/sharding_config.rbs +13 -0
- data/sig/turbopuffer/models/write_result.rbs +99 -0
- data/sig/turbopuffer/models.rbs +22 -0
- data/sig/turbopuffer/resources/namespaces.rbs +23 -0
- metadata +38 -2
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
module Turbopuffer
|
|
2
|
+
module Models
|
|
3
|
+
type write_result =
|
|
4
|
+
{
|
|
5
|
+
billing: Turbopuffer::WriteBilling,
|
|
6
|
+
message: String,
|
|
7
|
+
rows_affected: Integer,
|
|
8
|
+
status: :OK,
|
|
9
|
+
deleted_ids: ::Array[Turbopuffer::Models::id],
|
|
10
|
+
patched_ids: ::Array[Turbopuffer::Models::id],
|
|
11
|
+
performance: Turbopuffer::WritePerformance,
|
|
12
|
+
rows_deleted: Integer,
|
|
13
|
+
rows_patched: Integer,
|
|
14
|
+
rows_remaining: bool,
|
|
15
|
+
rows_upserted: Integer,
|
|
16
|
+
upserted_ids: ::Array[Turbopuffer::Models::id]
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
class WriteResult < Turbopuffer::Internal::Type::BaseModel
|
|
20
|
+
attr_accessor billing: Turbopuffer::WriteBilling
|
|
21
|
+
|
|
22
|
+
attr_accessor message: String
|
|
23
|
+
|
|
24
|
+
attr_accessor rows_affected: Integer
|
|
25
|
+
|
|
26
|
+
attr_accessor status: :OK
|
|
27
|
+
|
|
28
|
+
attr_reader deleted_ids: ::Array[Turbopuffer::Models::id]?
|
|
29
|
+
|
|
30
|
+
def deleted_ids=: (
|
|
31
|
+
::Array[Turbopuffer::Models::id]
|
|
32
|
+
) -> ::Array[Turbopuffer::Models::id]
|
|
33
|
+
|
|
34
|
+
attr_reader patched_ids: ::Array[Turbopuffer::Models::id]?
|
|
35
|
+
|
|
36
|
+
def patched_ids=: (
|
|
37
|
+
::Array[Turbopuffer::Models::id]
|
|
38
|
+
) -> ::Array[Turbopuffer::Models::id]
|
|
39
|
+
|
|
40
|
+
attr_reader performance: Turbopuffer::WritePerformance?
|
|
41
|
+
|
|
42
|
+
def performance=: (
|
|
43
|
+
Turbopuffer::WritePerformance
|
|
44
|
+
) -> Turbopuffer::WritePerformance
|
|
45
|
+
|
|
46
|
+
attr_reader rows_deleted: Integer?
|
|
47
|
+
|
|
48
|
+
def rows_deleted=: (Integer) -> Integer
|
|
49
|
+
|
|
50
|
+
attr_reader rows_patched: Integer?
|
|
51
|
+
|
|
52
|
+
def rows_patched=: (Integer) -> Integer
|
|
53
|
+
|
|
54
|
+
attr_reader rows_remaining: bool?
|
|
55
|
+
|
|
56
|
+
def rows_remaining=: (bool) -> bool
|
|
57
|
+
|
|
58
|
+
attr_reader rows_upserted: Integer?
|
|
59
|
+
|
|
60
|
+
def rows_upserted=: (Integer) -> Integer
|
|
61
|
+
|
|
62
|
+
attr_reader upserted_ids: ::Array[Turbopuffer::Models::id]?
|
|
63
|
+
|
|
64
|
+
def upserted_ids=: (
|
|
65
|
+
::Array[Turbopuffer::Models::id]
|
|
66
|
+
) -> ::Array[Turbopuffer::Models::id]
|
|
67
|
+
|
|
68
|
+
def initialize: (
|
|
69
|
+
billing: Turbopuffer::WriteBilling,
|
|
70
|
+
message: String,
|
|
71
|
+
rows_affected: Integer,
|
|
72
|
+
?deleted_ids: ::Array[Turbopuffer::Models::id],
|
|
73
|
+
?patched_ids: ::Array[Turbopuffer::Models::id],
|
|
74
|
+
?performance: Turbopuffer::WritePerformance,
|
|
75
|
+
?rows_deleted: Integer,
|
|
76
|
+
?rows_patched: Integer,
|
|
77
|
+
?rows_remaining: bool,
|
|
78
|
+
?rows_upserted: Integer,
|
|
79
|
+
?upserted_ids: ::Array[Turbopuffer::Models::id],
|
|
80
|
+
?status: :OK
|
|
81
|
+
) -> void
|
|
82
|
+
|
|
83
|
+
def to_hash: -> {
|
|
84
|
+
billing: Turbopuffer::WriteBilling,
|
|
85
|
+
message: String,
|
|
86
|
+
rows_affected: Integer,
|
|
87
|
+
status: :OK,
|
|
88
|
+
deleted_ids: ::Array[Turbopuffer::Models::id],
|
|
89
|
+
patched_ids: ::Array[Turbopuffer::Models::id],
|
|
90
|
+
performance: Turbopuffer::WritePerformance,
|
|
91
|
+
rows_deleted: Integer,
|
|
92
|
+
rows_patched: Integer,
|
|
93
|
+
rows_remaining: bool,
|
|
94
|
+
rows_upserted: Integer,
|
|
95
|
+
upserted_ids: ::Array[Turbopuffer::Models::id]
|
|
96
|
+
}
|
|
97
|
+
end
|
|
98
|
+
end
|
|
99
|
+
end
|
data/sig/turbopuffer/models.rbs
CHANGED
|
@@ -23,6 +23,10 @@ module Turbopuffer
|
|
|
23
23
|
|
|
24
24
|
class ContainsAnyTokenFilterParams = Turbopuffer::Models::ContainsAnyTokenFilterParams
|
|
25
25
|
|
|
26
|
+
module CopyFromNamespaceOperation = Turbopuffer::Models::CopyFromNamespaceOperation
|
|
27
|
+
|
|
28
|
+
module CopyFromNamespaceOperationResult = Turbopuffer::Models::CopyFromNamespaceOperationResult
|
|
29
|
+
|
|
26
30
|
module CopyFromNamespaceParams = Turbopuffer::Models::CopyFromNamespaceParams
|
|
27
31
|
|
|
28
32
|
class DecayParams = Turbopuffer::Models::DecayParams
|
|
@@ -41,6 +45,12 @@ module Turbopuffer
|
|
|
41
45
|
|
|
42
46
|
class FuzzyParams = Turbopuffer::Models::FuzzyParams
|
|
43
47
|
|
|
48
|
+
class HighlightConfigParams = Turbopuffer::Models::HighlightConfigParams
|
|
49
|
+
|
|
50
|
+
module HighlightFragmentBy = Turbopuffer::Models::HighlightFragmentBy
|
|
51
|
+
|
|
52
|
+
module HighlightOffsetUnits = Turbopuffer::Models::HighlightOffsetUnits
|
|
53
|
+
|
|
44
54
|
module ID = Turbopuffer::Models::ID
|
|
45
55
|
|
|
46
56
|
module IncludeAttributes = Turbopuffer::Models::IncludeAttributes
|
|
@@ -67,12 +77,16 @@ module Turbopuffer
|
|
|
67
77
|
|
|
68
78
|
class NamespaceMultiQueryParams = Turbopuffer::Models::NamespaceMultiQueryParams
|
|
69
79
|
|
|
80
|
+
class NamespacePollCopyFromParams = Turbopuffer::Models::NamespacePollCopyFromParams
|
|
81
|
+
|
|
70
82
|
class NamespaceQueryParams = Turbopuffer::Models::NamespaceQueryParams
|
|
71
83
|
|
|
72
84
|
class NamespaceRecallParams = Turbopuffer::Models::NamespaceRecallParams
|
|
73
85
|
|
|
74
86
|
class NamespaceSchemaParams = Turbopuffer::Models::NamespaceSchemaParams
|
|
75
87
|
|
|
88
|
+
class NamespaceStartCopyFromParams = Turbopuffer::Models::NamespaceStartCopyFromParams
|
|
89
|
+
|
|
76
90
|
class NamespaceSummary = Turbopuffer::Models::NamespaceSummary
|
|
77
91
|
|
|
78
92
|
class NamespaceUpdateMetadataParams = Turbopuffer::Models::NamespaceUpdateMetadataParams
|
|
@@ -81,18 +95,24 @@ module Turbopuffer
|
|
|
81
95
|
|
|
82
96
|
class NamespaceWriteParams = Turbopuffer::Models::NamespaceWriteParams
|
|
83
97
|
|
|
98
|
+
class OperationError = Turbopuffer::Models::OperationError
|
|
99
|
+
|
|
84
100
|
class PinningConfig = Turbopuffer::Models::PinningConfig
|
|
85
101
|
|
|
86
102
|
class QueryBilling = Turbopuffer::Models::QueryBilling
|
|
87
103
|
|
|
88
104
|
class QueryPerformance = Turbopuffer::Models::QueryPerformance
|
|
89
105
|
|
|
106
|
+
class RerankLimit = Turbopuffer::Models::RerankLimit
|
|
107
|
+
|
|
90
108
|
class Row = Turbopuffer::Models::Row
|
|
91
109
|
|
|
92
110
|
class RrfParams = Turbopuffer::Models::RrfParams
|
|
93
111
|
|
|
94
112
|
class SaturateParams = Turbopuffer::Models::SaturateParams
|
|
95
113
|
|
|
114
|
+
class ShardingConfig = Turbopuffer::Models::ShardingConfig
|
|
115
|
+
|
|
96
116
|
module SparseDistanceMetric = Turbopuffer::Models::SparseDistanceMetric
|
|
97
117
|
|
|
98
118
|
module Tokenizer = Turbopuffer::Models::Tokenizer
|
|
@@ -104,4 +124,6 @@ module Turbopuffer
|
|
|
104
124
|
class WriteBilling = Turbopuffer::Models::WriteBilling
|
|
105
125
|
|
|
106
126
|
class WritePerformance = Turbopuffer::Models::WritePerformance
|
|
127
|
+
|
|
128
|
+
class WriteResult = Turbopuffer::Models::WriteResult
|
|
107
129
|
end
|
|
@@ -24,6 +24,7 @@ module Turbopuffer
|
|
|
24
24
|
def explain_query: (
|
|
25
25
|
?namespace: String,
|
|
26
26
|
?aggregate_by: ::Hash[Symbol, top],
|
|
27
|
+
?compute_attributes: ::Hash[Symbol, top],
|
|
27
28
|
?consistency: Turbopuffer::NamespaceExplainQueryParams::Consistency,
|
|
28
29
|
?distance_metric: Turbopuffer::Models::distance_metric,
|
|
29
30
|
?exclude_attributes: ::Array[String],
|
|
@@ -31,6 +32,7 @@ module Turbopuffer
|
|
|
31
32
|
?group_by: ::Array[top],
|
|
32
33
|
?include_attributes: Turbopuffer::Models::include_attributes,
|
|
33
34
|
?limit: Turbopuffer::Models::NamespaceExplainQueryParams::limit,
|
|
35
|
+
?offset: Integer,
|
|
34
36
|
?rank_by: top,
|
|
35
37
|
?top_k: Integer,
|
|
36
38
|
?vector_encoding: Turbopuffer::Models::vector_encoding,
|
|
@@ -51,14 +53,23 @@ module Turbopuffer
|
|
|
51
53
|
queries: ::Array[Turbopuffer::NamespaceMultiQueryParams::Query],
|
|
52
54
|
?namespace: String,
|
|
53
55
|
?consistency: Turbopuffer::NamespaceMultiQueryParams::Consistency,
|
|
56
|
+
?limit: Turbopuffer::Models::NamespaceMultiQueryParams::limit,
|
|
57
|
+
?offset: Integer,
|
|
54
58
|
?rerank_by: top,
|
|
55
59
|
?vector_encoding: Turbopuffer::Models::vector_encoding,
|
|
56
60
|
?request_options: Turbopuffer::request_opts
|
|
57
61
|
) -> Turbopuffer::Models::NamespaceMultiQueryResponse
|
|
58
62
|
|
|
63
|
+
def poll_copy_from: (
|
|
64
|
+
String token,
|
|
65
|
+
?namespace: String,
|
|
66
|
+
?request_options: Turbopuffer::request_opts
|
|
67
|
+
) -> Turbopuffer::Models::copy_from_namespace_operation
|
|
68
|
+
|
|
59
69
|
def query: (
|
|
60
70
|
?namespace: String,
|
|
61
71
|
?aggregate_by: ::Hash[Symbol, top],
|
|
72
|
+
?compute_attributes: ::Hash[Symbol, top],
|
|
62
73
|
?consistency: Turbopuffer::NamespaceQueryParams::Consistency,
|
|
63
74
|
?distance_metric: Turbopuffer::Models::distance_metric,
|
|
64
75
|
?exclude_attributes: ::Array[String],
|
|
@@ -66,6 +77,7 @@ module Turbopuffer
|
|
|
66
77
|
?group_by: ::Array[top],
|
|
67
78
|
?include_attributes: Turbopuffer::Models::include_attributes,
|
|
68
79
|
?limit: Turbopuffer::Models::NamespaceQueryParams::limit,
|
|
80
|
+
?offset: Integer,
|
|
69
81
|
?rank_by: top,
|
|
70
82
|
?top_k: Integer,
|
|
71
83
|
?vector_encoding: Turbopuffer::Models::vector_encoding,
|
|
@@ -87,9 +99,19 @@ module Turbopuffer
|
|
|
87
99
|
?request_options: Turbopuffer::request_opts
|
|
88
100
|
) -> Turbopuffer::Models::namespace_schema_response
|
|
89
101
|
|
|
102
|
+
def start_copy_from: (
|
|
103
|
+
source_namespace: String,
|
|
104
|
+
?namespace: String,
|
|
105
|
+
?dest_encryption: Turbopuffer::Models::encryption,
|
|
106
|
+
?source_api_key: String,
|
|
107
|
+
?source_region: String,
|
|
108
|
+
?request_options: Turbopuffer::request_opts
|
|
109
|
+
) -> Turbopuffer::Models::NamespaceStartCopyFromResponse
|
|
110
|
+
|
|
90
111
|
def update_metadata: (
|
|
91
112
|
?namespace: String,
|
|
92
113
|
?pinning: Turbopuffer::Models::NamespaceMetadataPatch::pinning?,
|
|
114
|
+
?read_only: bool,
|
|
93
115
|
?request_options: Turbopuffer::request_opts
|
|
94
116
|
) -> Turbopuffer::NamespaceMetadata
|
|
95
117
|
|
|
@@ -117,6 +139,7 @@ module Turbopuffer
|
|
|
117
139
|
?patch_rows: ::Array[Turbopuffer::Row],
|
|
118
140
|
?return_affected_ids: bool,
|
|
119
141
|
?schema: ::Hash[Symbol, Turbopuffer::Models::attribute_schema],
|
|
142
|
+
?sharding: Turbopuffer::ShardingConfig,
|
|
120
143
|
?upsert_columns: Turbopuffer::Columns,
|
|
121
144
|
?upsert_condition: top,
|
|
122
145
|
?upsert_rows: ::Array[Turbopuffer::Row],
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: turbopuffer
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.5.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Turbopuffer
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-09-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|
|
@@ -83,6 +83,8 @@ files:
|
|
|
83
83
|
- lib/turbopuffer/models/columns.rb
|
|
84
84
|
- lib/turbopuffer/models/contains_all_tokens_filter_params.rb
|
|
85
85
|
- lib/turbopuffer/models/contains_any_token_filter_params.rb
|
|
86
|
+
- lib/turbopuffer/models/copy_from_namespace_operation.rb
|
|
87
|
+
- lib/turbopuffer/models/copy_from_namespace_operation_result.rb
|
|
86
88
|
- lib/turbopuffer/models/copy_from_namespace_params.rb
|
|
87
89
|
- lib/turbopuffer/models/decay_params.rb
|
|
88
90
|
- lib/turbopuffer/models/distance_metric.rb
|
|
@@ -92,6 +94,9 @@ files:
|
|
|
92
94
|
- lib/turbopuffer/models/full_text_search_config.rb
|
|
93
95
|
- lib/turbopuffer/models/fuzzy_max_edit_distance.rb
|
|
94
96
|
- lib/turbopuffer/models/fuzzy_params.rb
|
|
97
|
+
- lib/turbopuffer/models/highlight_config_params.rb
|
|
98
|
+
- lib/turbopuffer/models/highlight_fragment_by.rb
|
|
99
|
+
- lib/turbopuffer/models/highlight_offset_units.rb
|
|
95
100
|
- lib/turbopuffer/models/id.rb
|
|
96
101
|
- lib/turbopuffer/models/include_attributes.rb
|
|
97
102
|
- lib/turbopuffer/models/language.rb
|
|
@@ -111,30 +116,37 @@ files:
|
|
|
111
116
|
- lib/turbopuffer/models/namespace_metadata_patch.rb
|
|
112
117
|
- lib/turbopuffer/models/namespace_multi_query_params.rb
|
|
113
118
|
- lib/turbopuffer/models/namespace_multi_query_response.rb
|
|
119
|
+
- lib/turbopuffer/models/namespace_poll_copy_from_params.rb
|
|
114
120
|
- lib/turbopuffer/models/namespace_query_params.rb
|
|
115
121
|
- lib/turbopuffer/models/namespace_query_response.rb
|
|
116
122
|
- lib/turbopuffer/models/namespace_recall_params.rb
|
|
117
123
|
- lib/turbopuffer/models/namespace_recall_response.rb
|
|
118
124
|
- lib/turbopuffer/models/namespace_schema_params.rb
|
|
119
125
|
- lib/turbopuffer/models/namespace_schema_response.rb
|
|
126
|
+
- lib/turbopuffer/models/namespace_start_copy_from_params.rb
|
|
127
|
+
- lib/turbopuffer/models/namespace_start_copy_from_response.rb
|
|
120
128
|
- lib/turbopuffer/models/namespace_summary.rb
|
|
121
129
|
- lib/turbopuffer/models/namespace_update_metadata_params.rb
|
|
122
130
|
- lib/turbopuffer/models/namespace_update_schema_params.rb
|
|
123
131
|
- lib/turbopuffer/models/namespace_update_schema_response.rb
|
|
124
132
|
- lib/turbopuffer/models/namespace_write_params.rb
|
|
125
133
|
- lib/turbopuffer/models/namespace_write_response.rb
|
|
134
|
+
- lib/turbopuffer/models/operation_error.rb
|
|
126
135
|
- lib/turbopuffer/models/pinning_config.rb
|
|
127
136
|
- lib/turbopuffer/models/query_billing.rb
|
|
128
137
|
- lib/turbopuffer/models/query_performance.rb
|
|
138
|
+
- lib/turbopuffer/models/rerank_limit.rb
|
|
129
139
|
- lib/turbopuffer/models/row.rb
|
|
130
140
|
- lib/turbopuffer/models/rrf_params.rb
|
|
131
141
|
- lib/turbopuffer/models/saturate_params.rb
|
|
142
|
+
- lib/turbopuffer/models/sharding_config.rb
|
|
132
143
|
- lib/turbopuffer/models/sparse_distance_metric.rb
|
|
133
144
|
- lib/turbopuffer/models/tokenizer.rb
|
|
134
145
|
- lib/turbopuffer/models/vector.rb
|
|
135
146
|
- lib/turbopuffer/models/vector_encoding.rb
|
|
136
147
|
- lib/turbopuffer/models/write_billing.rb
|
|
137
148
|
- lib/turbopuffer/models/write_performance.rb
|
|
149
|
+
- lib/turbopuffer/models/write_result.rb
|
|
138
150
|
- lib/turbopuffer/namespace.rb
|
|
139
151
|
- lib/turbopuffer/request_options.rb
|
|
140
152
|
- lib/turbopuffer/resources/namespaces.rb
|
|
@@ -172,6 +184,8 @@ files:
|
|
|
172
184
|
- rbi/turbopuffer/models/columns.rbi
|
|
173
185
|
- rbi/turbopuffer/models/contains_all_tokens_filter_params.rbi
|
|
174
186
|
- rbi/turbopuffer/models/contains_any_token_filter_params.rbi
|
|
187
|
+
- rbi/turbopuffer/models/copy_from_namespace_operation.rbi
|
|
188
|
+
- rbi/turbopuffer/models/copy_from_namespace_operation_result.rbi
|
|
175
189
|
- rbi/turbopuffer/models/copy_from_namespace_params.rbi
|
|
176
190
|
- rbi/turbopuffer/models/decay_params.rbi
|
|
177
191
|
- rbi/turbopuffer/models/distance_metric.rbi
|
|
@@ -181,6 +195,9 @@ files:
|
|
|
181
195
|
- rbi/turbopuffer/models/full_text_search_config.rbi
|
|
182
196
|
- rbi/turbopuffer/models/fuzzy_max_edit_distance.rbi
|
|
183
197
|
- rbi/turbopuffer/models/fuzzy_params.rbi
|
|
198
|
+
- rbi/turbopuffer/models/highlight_config_params.rbi
|
|
199
|
+
- rbi/turbopuffer/models/highlight_fragment_by.rbi
|
|
200
|
+
- rbi/turbopuffer/models/highlight_offset_units.rbi
|
|
184
201
|
- rbi/turbopuffer/models/id.rbi
|
|
185
202
|
- rbi/turbopuffer/models/include_attributes.rbi
|
|
186
203
|
- rbi/turbopuffer/models/language.rbi
|
|
@@ -200,30 +217,37 @@ files:
|
|
|
200
217
|
- rbi/turbopuffer/models/namespace_metadata_patch.rbi
|
|
201
218
|
- rbi/turbopuffer/models/namespace_multi_query_params.rbi
|
|
202
219
|
- rbi/turbopuffer/models/namespace_multi_query_response.rbi
|
|
220
|
+
- rbi/turbopuffer/models/namespace_poll_copy_from_params.rbi
|
|
203
221
|
- rbi/turbopuffer/models/namespace_query_params.rbi
|
|
204
222
|
- rbi/turbopuffer/models/namespace_query_response.rbi
|
|
205
223
|
- rbi/turbopuffer/models/namespace_recall_params.rbi
|
|
206
224
|
- rbi/turbopuffer/models/namespace_recall_response.rbi
|
|
207
225
|
- rbi/turbopuffer/models/namespace_schema_params.rbi
|
|
208
226
|
- rbi/turbopuffer/models/namespace_schema_response.rbi
|
|
227
|
+
- rbi/turbopuffer/models/namespace_start_copy_from_params.rbi
|
|
228
|
+
- rbi/turbopuffer/models/namespace_start_copy_from_response.rbi
|
|
209
229
|
- rbi/turbopuffer/models/namespace_summary.rbi
|
|
210
230
|
- rbi/turbopuffer/models/namespace_update_metadata_params.rbi
|
|
211
231
|
- rbi/turbopuffer/models/namespace_update_schema_params.rbi
|
|
212
232
|
- rbi/turbopuffer/models/namespace_update_schema_response.rbi
|
|
213
233
|
- rbi/turbopuffer/models/namespace_write_params.rbi
|
|
214
234
|
- rbi/turbopuffer/models/namespace_write_response.rbi
|
|
235
|
+
- rbi/turbopuffer/models/operation_error.rbi
|
|
215
236
|
- rbi/turbopuffer/models/pinning_config.rbi
|
|
216
237
|
- rbi/turbopuffer/models/query_billing.rbi
|
|
217
238
|
- rbi/turbopuffer/models/query_performance.rbi
|
|
239
|
+
- rbi/turbopuffer/models/rerank_limit.rbi
|
|
218
240
|
- rbi/turbopuffer/models/row.rbi
|
|
219
241
|
- rbi/turbopuffer/models/rrf_params.rbi
|
|
220
242
|
- rbi/turbopuffer/models/saturate_params.rbi
|
|
243
|
+
- rbi/turbopuffer/models/sharding_config.rbi
|
|
221
244
|
- rbi/turbopuffer/models/sparse_distance_metric.rbi
|
|
222
245
|
- rbi/turbopuffer/models/tokenizer.rbi
|
|
223
246
|
- rbi/turbopuffer/models/vector.rbi
|
|
224
247
|
- rbi/turbopuffer/models/vector_encoding.rbi
|
|
225
248
|
- rbi/turbopuffer/models/write_billing.rbi
|
|
226
249
|
- rbi/turbopuffer/models/write_performance.rbi
|
|
250
|
+
- rbi/turbopuffer/models/write_result.rbi
|
|
227
251
|
- rbi/turbopuffer/namespace.rbi
|
|
228
252
|
- rbi/turbopuffer/request_options.rbi
|
|
229
253
|
- rbi/turbopuffer/resources/namespaces.rbi
|
|
@@ -260,6 +284,8 @@ files:
|
|
|
260
284
|
- sig/turbopuffer/models/columns.rbs
|
|
261
285
|
- sig/turbopuffer/models/contains_all_tokens_filter_params.rbs
|
|
262
286
|
- sig/turbopuffer/models/contains_any_token_filter_params.rbs
|
|
287
|
+
- sig/turbopuffer/models/copy_from_namespace_operation.rbs
|
|
288
|
+
- sig/turbopuffer/models/copy_from_namespace_operation_result.rbs
|
|
263
289
|
- sig/turbopuffer/models/copy_from_namespace_params.rbs
|
|
264
290
|
- sig/turbopuffer/models/decay_params.rbs
|
|
265
291
|
- sig/turbopuffer/models/distance_metric.rbs
|
|
@@ -269,6 +295,9 @@ files:
|
|
|
269
295
|
- sig/turbopuffer/models/full_text_search_config.rbs
|
|
270
296
|
- sig/turbopuffer/models/fuzzy_max_edit_distance.rbs
|
|
271
297
|
- sig/turbopuffer/models/fuzzy_params.rbs
|
|
298
|
+
- sig/turbopuffer/models/highlight_config_params.rbs
|
|
299
|
+
- sig/turbopuffer/models/highlight_fragment_by.rbs
|
|
300
|
+
- sig/turbopuffer/models/highlight_offset_units.rbs
|
|
272
301
|
- sig/turbopuffer/models/id.rbs
|
|
273
302
|
- sig/turbopuffer/models/include_attributes.rbs
|
|
274
303
|
- sig/turbopuffer/models/language.rbs
|
|
@@ -288,30 +317,37 @@ files:
|
|
|
288
317
|
- sig/turbopuffer/models/namespace_metadata_patch.rbs
|
|
289
318
|
- sig/turbopuffer/models/namespace_multi_query_params.rbs
|
|
290
319
|
- sig/turbopuffer/models/namespace_multi_query_response.rbs
|
|
320
|
+
- sig/turbopuffer/models/namespace_poll_copy_from_params.rbs
|
|
291
321
|
- sig/turbopuffer/models/namespace_query_params.rbs
|
|
292
322
|
- sig/turbopuffer/models/namespace_query_response.rbs
|
|
293
323
|
- sig/turbopuffer/models/namespace_recall_params.rbs
|
|
294
324
|
- sig/turbopuffer/models/namespace_recall_response.rbs
|
|
295
325
|
- sig/turbopuffer/models/namespace_schema_params.rbs
|
|
296
326
|
- sig/turbopuffer/models/namespace_schema_response.rbs
|
|
327
|
+
- sig/turbopuffer/models/namespace_start_copy_from_params.rbs
|
|
328
|
+
- sig/turbopuffer/models/namespace_start_copy_from_response.rbs
|
|
297
329
|
- sig/turbopuffer/models/namespace_summary.rbs
|
|
298
330
|
- sig/turbopuffer/models/namespace_update_metadata_params.rbs
|
|
299
331
|
- sig/turbopuffer/models/namespace_update_schema_params.rbs
|
|
300
332
|
- sig/turbopuffer/models/namespace_update_schema_response.rbs
|
|
301
333
|
- sig/turbopuffer/models/namespace_write_params.rbs
|
|
302
334
|
- sig/turbopuffer/models/namespace_write_response.rbs
|
|
335
|
+
- sig/turbopuffer/models/operation_error.rbs
|
|
303
336
|
- sig/turbopuffer/models/pinning_config.rbs
|
|
304
337
|
- sig/turbopuffer/models/query_billing.rbs
|
|
305
338
|
- sig/turbopuffer/models/query_performance.rbs
|
|
339
|
+
- sig/turbopuffer/models/rerank_limit.rbs
|
|
306
340
|
- sig/turbopuffer/models/row.rbs
|
|
307
341
|
- sig/turbopuffer/models/rrf_params.rbs
|
|
308
342
|
- sig/turbopuffer/models/saturate_params.rbs
|
|
343
|
+
- sig/turbopuffer/models/sharding_config.rbs
|
|
309
344
|
- sig/turbopuffer/models/sparse_distance_metric.rbs
|
|
310
345
|
- sig/turbopuffer/models/tokenizer.rbs
|
|
311
346
|
- sig/turbopuffer/models/vector.rbs
|
|
312
347
|
- sig/turbopuffer/models/vector_encoding.rbs
|
|
313
348
|
- sig/turbopuffer/models/write_billing.rbs
|
|
314
349
|
- sig/turbopuffer/models/write_performance.rbs
|
|
350
|
+
- sig/turbopuffer/models/write_result.rbs
|
|
315
351
|
- sig/turbopuffer/namespace.rbs
|
|
316
352
|
- sig/turbopuffer/request_options.rbs
|
|
317
353
|
- sig/turbopuffer/resources/namespaces.rbs
|