@kittycad/lib 3.2.4 → 3.2.5

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.
@@ -6692,6 +6692,23 @@ export interface OrgDatasetResultsPage {
6692
6692
  */
6693
6693
  next_page?: string;
6694
6694
  }
6695
+ export interface OrgDatasetSemanticSearchMatch {
6696
+ /**
6697
+ * {
6698
+ * "format": "int32",
6699
+ * "description": "Zero-based chunk ordinal in the conversion output."
6700
+ * }
6701
+ */
6702
+ chunk_index: number;
6703
+ /** Chunk text used for matching. */
6704
+ content: string;
6705
+ /** Matching conversion id. */
6706
+ conversion_id: Uuid;
6707
+ /** format:double, description:Cosine-similarity score in roughly [-1, 1]. */
6708
+ similarity: number;
6709
+ /** Source path for the conversion. */
6710
+ source_file_path: string;
6711
+ }
6695
6712
  export interface OrgDatasetSnapshotImage {
6696
6713
  /** title:String, format:byte, description:Base64-encoded image bytes. */
6697
6714
  data_base64: string;
@@ -9761,6 +9778,7 @@ export interface Models {
9761
9778
  OrgDatasetFileConversionSummary: OrgDatasetFileConversionSummary;
9762
9779
  OrgDatasetFileConversionSummaryResultsPage: OrgDatasetFileConversionSummaryResultsPage;
9763
9780
  OrgDatasetResultsPage: OrgDatasetResultsPage;
9781
+ OrgDatasetSemanticSearchMatch: OrgDatasetSemanticSearchMatch;
9764
9782
  OrgDatasetSnapshotImage: OrgDatasetSnapshotImage;
9765
9783
  OrgDatasetSource: OrgDatasetSource;
9766
9784
  OrgDatasetStatus: OrgDatasetStatus;