Skip to content

Commit

Permalink
Remove vectorStore from experimental features
Browse files Browse the repository at this point in the history
  • Loading branch information
Strift committed Feb 8, 2025
1 parent beee346 commit df05f2e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 27 deletions.
14 changes: 2 additions & 12 deletions lib/src/results/experimental_features.dart
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,7 @@ part 'experimental_features.g.dart';
createToJson: false,
)
class ExperimentalFeatures {
@JsonKey(name: 'vectorStore')
final bool vectorStore;

const ExperimentalFeatures({
required this.vectorStore,
});
const ExperimentalFeatures();

factory ExperimentalFeatures.fromJson(Map<String, dynamic> src) {
return _$ExperimentalFeaturesFromJson(src);
Expand All @@ -29,12 +24,7 @@ class ExperimentalFeatures {
createFactory: false,
)
class UpdateExperimentalFeatures {
@JsonKey(name: 'vectorStore')
final bool? vectorStore;

const UpdateExperimentalFeatures({
this.vectorStore,
});
const UpdateExperimentalFeatures();

Map<String, dynamic> toJson() => _$UpdateExperimentalFeaturesToJson(this);
}
Expand Down
18 changes: 3 additions & 15 deletions lib/src/results/experimental_features.g.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit df05f2e

Please sign in to comment.