hyperstreamdb 0.1.1__tar.gz → 0.1.2__tar.gz

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.
Files changed (458) hide show
  1. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.github/workflows/release.yml +1 -1
  2. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.gitignore +1 -0
  3. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/Cargo.lock +1 -1
  4. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/Cargo.toml +7 -3
  5. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/PKG-INFO +1 -1
  6. hyperstreamdb-0.1.2/demo/01_basics.py +106 -0
  7. hyperstreamdb-0.1.2/demo/01_installation_and_basics.ipynb +719 -0
  8. hyperstreamdb-0.1.2/demo/02_rag_pipeline.ipynb +538 -0
  9. hyperstreamdb-0.1.2/demo/02_rag_pipeline.py +117 -0
  10. hyperstreamdb-0.1.2/demo/news_db/metadata/v1.metadata.json +1 -0
  11. hyperstreamdb-0.1.2/demo/verify_explain.py +59 -0
  12. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/docs/api_reference.md +25 -4
  13. hyperstreamdb-0.1.2/news_db/metadata/v1.metadata.json +1 -0
  14. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/pyproject.toml +1 -1
  15. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/python/hyperstreamdb/__init__.py +57 -6
  16. hyperstreamdb-0.1.2/rag_db/metadata/v1.metadata.json +1 -0
  17. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/cache.rs +1 -1
  18. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/ffi.rs +10 -10
  19. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/tokenizer.rs +1 -1
  20. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/maintenance.rs +9 -9
  21. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/manifest.rs +13 -13
  22. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/mod.rs +1 -0
  23. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/planner.rs +38 -1
  24. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/query.rs +2 -2
  25. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/reader.rs +79 -34
  26. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/sql/mod.rs +1 -1
  27. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/sql/optimizer.rs +3 -2
  28. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/sql/physical_plan.rs +7 -6
  29. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/table.rs +250 -22
  30. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/lib.rs +8 -0
  31. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/python_binding.rs +141 -8
  32. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/telemetry/tracing.rs +4 -2
  33. hyperstreamdb-0.1.2/test_explain.py +42 -0
  34. hyperstreamdb-0.1.2/test_smart_db_gpu_200000/metadata/version-hint.text +1 -0
  35. hyperstreamdb-0.1.2/test_smart_db_gpu_50000/metadata/version-hint.text +1 -0
  36. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_connector_ffi.rs +3 -2
  37. hyperstreamdb-0.1.1/demo/01_installation_and_basics.ipynb +0 -542
  38. hyperstreamdb-0.1.1/demo/02_rag_pipeline.ipynb +0 -268
  39. hyperstreamdb-0.1.1/demo/news_db/metadata/v1.metadata.json +0 -1
  40. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.gitattributes +0 -0
  41. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/constants/32b327793848e7d8 +0 -0
  42. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/constants/67b0a8ccf18bf5d2 +0 -0
  43. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/constants/84828557b4ee7be4 +0 -0
  44. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/033d249393293bc0/8e1e35c1a81e136d +0 -0
  45. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/049636c0c015cfc3/0ed63182b31492e2 +0 -0
  46. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/049636c0c015cfc3/5ac252de8b508dc4 +0 -0
  47. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/049636c0c015cfc3/c69672a5906e5344 +0 -0
  48. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/049636c0c015cfc3/fc828d7b270e79f1 +0 -0
  49. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/033d249393293bc0 +0 -0
  50. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/049636c0c015cfc3 +0 -0
  51. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/05c52c9dbdefb039 +0 -0
  52. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/0aa855aa286cc0d5 +0 -0
  53. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/0e93d521ad8ef297 +0 -0
  54. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/221ff8984f1afcd9 +0 -0
  55. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/225f7f5440d9a2a1 +0 -0
  56. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/2d4c1faa9e4a0819 +0 -0
  57. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/36599888c1042a48 +0 -0
  58. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/40704535438cf9f8 +0 -0
  59. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/41be53cbad6e8d92 +0 -0
  60. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/475ae2144fdf49f9 +0 -0
  61. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/4b0f3198ef3db3c2 +0 -0
  62. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/59ae5c10cefe5c60 +0 -0
  63. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/5ee4203c85e85823 +0 -0
  64. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/6110d1d2476ad899 +0 -0
  65. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/6fd0ebd83350bcd2 +0 -0
  66. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/785f986097e422f8 +0 -0
  67. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/7bf4a2cde59031b2 +0 -0
  68. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/91242aa0c25004e0 +0 -0
  69. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/9c035198139b2efc +0 -0
  70. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/a45fa4b659eeb9ab +0 -0
  71. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/a4f92d149856ac2c +0 -0
  72. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/b9d1eaf93992a2cc +0 -0
  73. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/cc4d031715368385 +0 -0
  74. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/d4df3c831314ef07 +0 -0
  75. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/de17b168cfeb515b +0 -0
  76. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/e5367d5f12d2042b +0 -0
  77. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/f2f8bcbc32cab849 +0 -0
  78. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/f84bb7f3b884e266 +0 -0
  79. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/fd7b8d1c000fde7f +0 -0
  80. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/05c52c9dbdefb039/99d15f32aec985fb +0 -0
  81. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/0aa855aa286cc0d5/5671237fbbf113b2 +0 -0
  82. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/0aa855aa286cc0d5/79c1573b2ffdb2ac +0 -0
  83. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/0aa855aa286cc0d5/84cf5a51ba1787b1 +0 -0
  84. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/0aa855aa286cc0d5/a0cb613faedd9a04 +0 -0
  85. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/0aa855aa286cc0d5/a4b1fb408c11860f +0 -0
  86. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/0aa855aa286cc0d5/f73051ec0a52ed7e +0 -0
  87. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/0e93d521ad8ef297/6723cf4071f8bc14 +0 -0
  88. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/221ff8984f1afcd9/fe081ddaa3a9a31b +0 -0
  89. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/225f7f5440d9a2a1/5e50886300e01e9d +0 -0
  90. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/2d4c1faa9e4a0819/99d15f32aec985fb +0 -0
  91. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/36599888c1042a48/fe081ddaa3a9a31b +0 -0
  92. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/40704535438cf9f8/8e72e999906e69af +0 -0
  93. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/41be53cbad6e8d92/3271a1944fa17f81 +0 -0
  94. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/41be53cbad6e8d92/bb49a0bb4dc1adbf +0 -0
  95. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/475ae2144fdf49f9/0cf5cb1ae98c56d8 +0 -0
  96. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/4b0f3198ef3db3c2/50d4726de6ad1864 +0 -0
  97. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/59ae5c10cefe5c60/c1f4a115e99a62f7 +0 -0
  98. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/5ee4203c85e85823/8e1e35c1a81e136d +0 -0
  99. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/6110d1d2476ad899/fe081ddaa3a9a31b +0 -0
  100. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/6fd0ebd83350bcd2/2fa72292e7a6b8bc +0 -0
  101. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/6fd0ebd83350bcd2/39e0e4d93040eb1c +0 -0
  102. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/6fd0ebd83350bcd2/a53f8d859d899871 +0 -0
  103. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/785f986097e422f8/99d15f32aec985fb +0 -0
  104. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/7bf4a2cde59031b2/0cf5cb1ae98c56d8 +0 -0
  105. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/91242aa0c25004e0/0cf5cb1ae98c56d8 +0 -0
  106. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/9c035198139b2efc/5e50886300e01e9d +0 -0
  107. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/a45fa4b659eeb9ab/563ec4e1d08d4158 +0 -0
  108. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/a4f92d149856ac2c/5e50886300e01e9d +0 -0
  109. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/b9d1eaf93992a2cc/e8bbe1e1d0cd639c +0 -0
  110. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/cc4d031715368385/0cf5cb1ae98c56d8 +0 -0
  111. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/d4df3c831314ef07/fe081ddaa3a9a31b +0 -0
  112. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/de17b168cfeb515b/fe081ddaa3a9a31b +0 -0
  113. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/e5367d5f12d2042b/fe081ddaa3a9a31b +0 -0
  114. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/f2f8bcbc32cab849/fe081ddaa3a9a31b +0 -0
  115. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/f84bb7f3b884e266/0cf5cb1ae98c56d8 +0 -0
  116. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/fd7b8d1c000fde7f/0cf5cb1ae98c56d8 +0 -0
  117. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/LICENSE-APACHE +0 -0
  118. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/LICENSE-MIT +0 -0
  119. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/README.md +0 -0
  120. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/RUN_COMPLIANCE_TESTS.sh +0 -0
  121. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/THIRDPARTY_NOTICES.md +0 -0
  122. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/benches/bench_table.rs +0 -0
  123. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/benches/performance.rs +0 -0
  124. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/benchmarks/competitive/benchmark_results/benchmark_charts.png +0 -0
  125. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/benchmarks/competitive/benchmark_results/benchmark_results.csv +0 -0
  126. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/benchmarks/competitive/benchmark_suite.py +0 -0
  127. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/benchmarks/competitive/requirements.txt +0 -0
  128. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/benchmarks/competitive/run_benchmarks.sh +0 -0
  129. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/benchmarks/profile_ingest.py +0 -0
  130. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/book.toml +0 -0
  131. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/build-connectors.sh +0 -0
  132. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/build.rs +0 -0
  133. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/build_out.txt +0 -0
  134. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/check_iceberg_compliance.py +0 -0
  135. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/clippy_output.txt +0 -0
  136. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/demo/.ipynb_checkpoints/01_installation_and_basics-checkpoint.ipynb +0 -0
  137. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/demo/news_db/metadata/version-hint.text +0 -0
  138. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/demo/rag_db/metadata/v1.metadata.json +0 -0
  139. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/demo/rag_db/metadata/v10.metadata.json +0 -0
  140. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/demo/rag_db/metadata/v4.metadata.json +0 -0
  141. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/demo/rag_db/metadata/v7.metadata.json +0 -0
  142. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/demo/rag_db/metadata/version-hint.text +0 -0
  143. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/demo/rag_hf_demo.py +0 -0
  144. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/demo/requirements.txt +0 -0
  145. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/docker/trino/catalog/hyperstreamdb.properties +0 -0
  146. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/docker/trino/catalog/iceberg.properties +0 -0
  147. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/docker-compose-minio-nessie.yml +0 -0
  148. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/docker-compose.yml +0 -0
  149. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/docs/BENCHMARKING.md +0 -0
  150. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/docs/COMPREHENSIVE_GUIDE.md +0 -0
  151. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/docs/GPU_SETUP_GUIDE.md +0 -0
  152. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/docs/ICEBERG_V2_V3_API.md +0 -0
  153. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/docs/PGVECTOR_SQL_GUIDE.md +0 -0
  154. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/docs/PYTHON_VECTOR_API.md +0 -0
  155. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/docs/VECTOR_CONFIGURATION.md +0 -0
  156. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/docs/architecture.md +0 -0
  157. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/docs/catalog_usage.md +0 -0
  158. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/docs/index.md +0 -0
  159. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/docs/integrations/README.md +0 -0
  160. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/docs/integrations/java_jni.md +0 -0
  161. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/docs/integrations/python.md +0 -0
  162. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/docs/integrations/spark.md +0 -0
  163. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/docs/integrations/trino.md +0 -0
  164. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/examples/catalog_usage.rs +0 -0
  165. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/examples/configs/glue.toml +0 -0
  166. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/examples/configs/hive.toml +0 -0
  167. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/examples/configs/nessie.toml +0 -0
  168. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/examples/configs/rest.toml +0 -0
  169. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/examples/configs/unity.toml +0 -0
  170. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/examples/pgvector_python_examples.py +0 -0
  171. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/examples/pgvector_sql_examples.sql +0 -0
  172. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/examples/python_distance_api_examples.py +0 -0
  173. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/examples/vector_index_types.py +0 -0
  174. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/fix_cache.patch +0 -0
  175. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/fix_nb.py +0 -0
  176. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/fix_schema.patch +0 -0
  177. {hyperstreamdb-0.1.1/test_ingestion_db → hyperstreamdb-0.1.2/news_db}/metadata/version-hint.text +0 -0
  178. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/proptest-regressions/core/index/gpu.txt +0 -0
  179. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/proptest-regressions/core/sql/vector_literal.txt +0 -0
  180. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/proptest-regressions/core/sql/vector_udf.txt +0 -0
  181. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/python/hyperstreamdb/embeddings.py +0 -0
  182. {hyperstreamdb-0.1.1/test_per_col_db → hyperstreamdb-0.1.2/rag_db}/metadata/version-hint.text +0 -0
  183. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/spark-hyperstream/.bloop/bloop.settings.json +0 -0
  184. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/spark-hyperstream/.bloop/spark-hyperstream-test.json +0 -0
  185. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/spark-hyperstream/.bloop/spark-hyperstream.json +0 -0
  186. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/spark-hyperstream/pom.xml +0 -0
  187. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/spark-hyperstream/src/main/java/com/hyperstreamdb/spark/DefaultSource.java +0 -0
  188. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/spark-hyperstream/src/main/java/com/hyperstreamdb/spark/HyperStreamPartition.java +0 -0
  189. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/spark-hyperstream/src/main/java/com/hyperstreamdb/spark/HyperStreamPartitionReader.java +0 -0
  190. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/spark-hyperstream/src/main/java/com/hyperstreamdb/spark/HyperStreamPartitionReaderFactory.java +0 -0
  191. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/spark-hyperstream/src/main/java/com/hyperstreamdb/spark/HyperStreamScanBuilder.java +0 -0
  192. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/spark-hyperstream/src/main/java/com/hyperstreamdb/spark/HyperStreamTable.java +0 -0
  193. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/bin/gateway.rs +0 -0
  194. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/bin/hdb.rs +0 -0
  195. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/bin/iceberg_rest.rs +0 -0
  196. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/bin/probe_datafusion.rs +0 -0
  197. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/bin/setup_test_data.rs +0 -0
  198. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/bin/verify_layered_indexing.rs +0 -0
  199. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/catalog/config.rs +0 -0
  200. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/catalog/glue.rs +0 -0
  201. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/catalog/hive.rs +0 -0
  202. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/catalog/jdbc.rs +0 -0
  203. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/catalog/mod.rs +0 -0
  204. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/catalog/nessie.rs +0 -0
  205. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/catalog/rest.rs +0 -0
  206. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/catalog/unity.rs +0 -0
  207. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/clustering.rs +0 -0
  208. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/compaction.rs +0 -0
  209. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/embeddings.rs +0 -0
  210. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/iceberg/iceberg_delete.rs +0 -0
  211. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/iceberg.rs +0 -0
  212. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/cuda/cosine_distance.cu +0 -0
  213. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/cuda/hamming_distance.cu +0 -0
  214. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/cuda/inner_product.cu +0 -0
  215. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/cuda/jaccard_distance.cu +0 -0
  216. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/cuda/kmeans_assignment.cu +0 -0
  217. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/cuda/l1_distance.cu +0 -0
  218. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/cuda/l2_distance.cu +0 -0
  219. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/distance.rs +0 -0
  220. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/gpu.rs +0 -0
  221. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/hnsw_ivf.rs +0 -0
  222. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/ivf.rs +0 -0
  223. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/memory.rs +0 -0
  224. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/mod.rs +0 -0
  225. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/mps/cosine_distance.metal +0 -0
  226. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/mps/hamming_distance.metal +0 -0
  227. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/mps/inner_product.metal +0 -0
  228. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/mps/jaccard_distance.metal +0 -0
  229. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/mps/kmeans_assignment.metal +0 -0
  230. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/mps/l1_distance.metal +0 -0
  231. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/mps/l2_distance.metal +0 -0
  232. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/opencl/cosine_distance.cl +0 -0
  233. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/opencl/hamming_distance.cl +0 -0
  234. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/opencl/inner_product.cl +0 -0
  235. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/opencl/jaccard_distance.cl +0 -0
  236. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/opencl/kmeans_assignment.cl +0 -0
  237. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/opencl/l1_distance.cl +0 -0
  238. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/opencl/l2_distance.cl +0 -0
  239. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/pq.rs +0 -0
  240. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/merge.rs +0 -0
  241. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/metadata.rs +0 -0
  242. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/nessie.rs +0 -0
  243. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/puffin.rs +0 -0
  244. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/segment.rs +0 -0
  245. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/sql/pgvector_rewriter.rs +0 -0
  246. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/sql/physical_plan/index_join.rs +0 -0
  247. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/sql/session.rs +0 -0
  248. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/sql/vector_literal.rs +0 -0
  249. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/sql/vector_operators.rs +0 -0
  250. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/sql/vector_udf.rs +0 -0
  251. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/storage.rs +0 -0
  252. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/table.rs.orig +0 -0
  253. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/wal.rs +0 -0
  254. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/enterprise/continuous_indexing.rs +0 -0
  255. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/enterprise/license.rs +0 -0
  256. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/enterprise/mod.rs +0 -0
  257. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/index.rs.old +0 -0
  258. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/python_distance.rs +0 -0
  259. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/python_gpu_context.rs +0 -0
  260. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/telemetry/metrics.rs +0 -0
  261. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/telemetry/mod.rs +0 -0
  262. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/task.md +0 -0
  263. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/test_admin_features.py +0 -0
  264. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/test_admin_table/metadata/v1.metadata.json +0 -0
  265. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/test_admin_table/metadata/v5.metadata.json +0 -0
  266. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/test_admin_table/metadata/version-hint.text +0 -0
  267. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/test_cascading_db/metadata/v2.metadata.json +0 -0
  268. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/test_cascading_db/metadata/version-hint.text +0 -0
  269. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/test_catalog.toml +0 -0
  270. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/test_compound_pk.py +0 -0
  271. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/test_docstrings.py +0 -0
  272. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/test_exports.py +0 -0
  273. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/test_ingestion_db/metadata/v1.metadata.json +0 -0
  274. {hyperstreamdb-0.1.1/test_smart_db_cpu_200000 → hyperstreamdb-0.1.2/test_ingestion_db}/metadata/version-hint.text +0 -0
  275. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/test_ingestion_db_cpu/metadata/v2.metadata.json +0 -0
  276. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/test_ingestion_db_cpu/metadata/version-hint.text +0 -0
  277. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/test_ingestion_db_gpu/metadata/v2.metadata.json +0 -0
  278. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/test_ingestion_db_gpu/metadata/version-hint.text +0 -0
  279. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/test_log.txt +0 -0
  280. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/test_per_col_db/metadata/v1.metadata.json +0 -0
  281. {hyperstreamdb-0.1.1/test_smart_db_cpu_50000 → hyperstreamdb-0.1.2/test_per_col_db}/metadata/version-hint.text +0 -0
  282. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/test_prefilter.py +0 -0
  283. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/test_python_ingest.py +0 -0
  284. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/test_smart_db_cpu_200000/metadata/v1.metadata.json +0 -0
  285. {hyperstreamdb-0.1.1/test_smart_db_gpu_200000 → hyperstreamdb-0.1.2/test_smart_db_cpu_200000}/metadata/version-hint.text +0 -0
  286. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/test_smart_db_cpu_50000/metadata/v1.metadata.json +0 -0
  287. {hyperstreamdb-0.1.1/test_smart_db_gpu_50000 → hyperstreamdb-0.1.2/test_smart_db_cpu_50000}/metadata/version-hint.text +0 -0
  288. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/test_smart_db_gpu_200000/metadata/v1.metadata.json +0 -0
  289. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/test_smart_db_gpu_50000/metadata/v1.metadata.json +0 -0
  290. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/all_types_index_test.rs +0 -0
  291. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/benchmarks/README.md +0 -0
  292. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/benchmarks/benchmark_vs_iceberg.py +0 -0
  293. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/benchmarks/common/__init__.py +0 -0
  294. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/benchmarks/common/index_verification.py +0 -0
  295. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/benchmarks/common/minio_setup.py +0 -0
  296. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/benchmarks/common/utils.py +0 -0
  297. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/benchmarks/hybrid/__init__.py +0 -0
  298. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/benchmarks/hybrid/test_scalar_plus_vector.py +0 -0
  299. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/benchmarks/index/test_index_build.py +0 -0
  300. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/benchmarks/requirements.txt +0 -0
  301. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/benchmarks/run_all.sh +0 -0
  302. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/benchmarks/table_format/README.md +0 -0
  303. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/benchmarks/table_format/__init__.py +0 -0
  304. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/benchmarks/table_format/test_vs_iceberg.py +0 -0
  305. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/benchmarks/vector_search/QDRANT_COMPARISON.md +0 -0
  306. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/benchmarks/vector_search/README.md +0 -0
  307. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/benchmarks/vector_search/__init__.py +0 -0
  308. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/benchmarks/vector_search/test_cold_read_latency.py +0 -0
  309. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/benchmarks/vector_search/test_parallel_search.py +0 -0
  310. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/benchmarks/vector_search/test_qdrant_direct_comparison.py +0 -0
  311. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/benchmarks/vector_search/test_vector_index_verification.py +0 -0
  312. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/benchmarks/vector_search/test_vs_qdrant.py +0 -0
  313. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/bin/generate_iceberg_manifests.rs +0 -0
  314. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/bin/verify_iceberg_read_check.rs +0 -0
  315. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/data/download_nyc_taxi.sh +0 -0
  316. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/data/generate_embeddings.py +0 -0
  317. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/data/generate_wikipedia.py +0 -0
  318. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/data/start_nessie.sh +0 -0
  319. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/datafusion_rust_test.rs +0 -0
  320. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/debug_murmur3.rs +0 -0
  321. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/fuzz_murmur3.rs +0 -0
  322. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/integration/test_boolean_index.py +0 -0
  323. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/integration/test_catalog.py +0 -0
  324. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/integration/test_concurrent_access.py +0 -0
  325. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/integration/test_core_integration.rs +0 -0
  326. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/integration/test_error_handling.py +0 -0
  327. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/integration/test_glue_catalog.py +0 -0
  328. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/integration/test_hnsw_ivf.py +0 -0
  329. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/integration/test_merge.py +0 -0
  330. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/integration/test_multi_cloud.py +0 -0
  331. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/integration/test_nyc_taxi.py +0 -0
  332. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/integration/test_profiling_micro.py +0 -0
  333. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/integration/test_query_planning.py +0 -0
  334. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/integration/test_rest_catalog.py +0 -0
  335. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/integration/test_schema_evolution.py +0 -0
  336. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/integration/test_selective_indexing.py +0 -0
  337. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/integration/test_sql.py +0 -0
  338. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/integration/test_vector_search.py +0 -0
  339. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/integration/test_views.py +0 -0
  340. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/integration/test_wal_compaction.py +0 -0
  341. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/integration/test_wal_durability.py +0 -0
  342. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/integration/test_wikipedia.py +0 -0
  343. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/integration/test_write_buffer.py +0 -0
  344. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/integration_test_hnsw_ivf_native.rs +0 -0
  345. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/performance/README.md +0 -0
  346. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/performance/test_benchmarks.py +0 -0
  347. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/performance/test_gpu_batch_benchmarks.py +0 -0
  348. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/prototype_merge.py +0 -0
  349. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/schema_evolution_test.rs +0 -0
  350. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_advanced_sql.rs +0 -0
  351. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_binary_vector_properties.py +0 -0
  352. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_catalog_factory.py +0 -0
  353. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_concurrency_robust.rs +0 -0
  354. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_connector_apis.py +0 -0
  355. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_connector_integration.py +0 -0
  356. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_context_backend_property.py +0 -0
  357. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_core_ingestion.rs +0 -0
  358. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_cross_engine_compat.py +0 -0
  359. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_data_types.rs +0 -0
  360. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_default_config.py +0 -0
  361. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_distance_properties.py +0 -0
  362. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_docstrings.py +0 -0
  363. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_durability_robust.rs +0 -0
  364. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_exports.py +0 -0
  365. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_gpu_kernel_availability_property.proptest-regressions +0 -0
  366. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_gpu_kernel_availability_property.rs +0 -0
  367. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_gpu_kmeans.py +0 -0
  368. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_hamming_distance_kernel.rs +0 -0
  369. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_hardware_parity.rs +0 -0
  370. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_hyperstream_mps.py +0 -0
  371. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_iceberg_python.py +0 -0
  372. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_ingestion_optimizations.py +0 -0
  373. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_inner_product_kernel.rs +0 -0
  374. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_jaccard_distance_kernel.rs +0 -0
  375. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_l1_distance_kernel.rs +0 -0
  376. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_merge_integration.rs +0 -0
  377. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_mmh3.py +0 -0
  378. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_mps_gpu.py +0 -0
  379. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_partitioning_advanced.rs +0 -0
  380. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_per_column_acceleration.py +0 -0
  381. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_performance_comparison.py +0 -0
  382. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_pgvector_minimal.rs +0 -0
  383. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_pgvector_operators_gpu.rs +0 -0
  384. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_pgvector_sql_integration.rs +0 -0
  385. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_puffin.rs +0 -0
  386. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_python_gpu_context.py +0 -0
  387. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_qdrant_install.py +0 -0
  388. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_smart_switching.py +0 -0
  389. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_splits.py +0 -0
  390. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_sql_udf_gpu_integration.rs +0 -0
  391. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_vector_consistency.rs +0 -0
  392. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/verify_catalog_commit.rs +0 -0
  393. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/verify_compliance.rs +0 -0
  394. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/verify_delete_correctness.rs +0 -0
  395. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/verify_iceberg_python_delete.sh +0 -0
  396. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/verify_iceberg_rest.sh +0 -0
  397. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/verify_iceberg_rest_create.sh +0 -0
  398. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/verify_iceberg_rest_delete.sh +0 -0
  399. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/verify_iceberg_rest_remove_index.sh +0 -0
  400. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/verify_iceberg_rest_update.sh +0 -0
  401. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/verify_metadata_creation.rs +0 -0
  402. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/verify_mor_reads.rs +0 -0
  403. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/verify_mor_writes.rs +0 -0
  404. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/verify_partition_transforms.rs +0 -0
  405. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/verify_partitioned_writes.rs +0 -0
  406. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/verify_puffin_index.sh +0 -0
  407. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/verify_rest_updates.sh +0 -0
  408. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/verify_schema_compat.rs +0 -0
  409. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/trino-config/.DS_Store +0 -0
  410. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/trino-config/catalog/glue_catalog.properties +0 -0
  411. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/trino-config/catalog/hyperstreamdb.properties +0 -0
  412. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/trino-config/catalog/iceberg.properties +0 -0
  413. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/trino-config/catalog/memory.properties +0 -0
  414. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/trino-config/catalog/postgres.properties +0 -0
  415. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/trino-config/config.properties +0 -0
  416. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/trino-config/entrypoint.sh +0 -0
  417. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/trino-config/jvm.config +0 -0
  418. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/trino-config/node.properties +0 -0
  419. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/trino-config.zip +0 -0
  420. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/trino-hyperstream/pom.xml +0 -0
  421. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBColumnHandle.java +0 -0
  422. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBConnectorFactory.java +0 -0
  423. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBMetadata.java +0 -0
  424. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBPageSource.java +0 -0
  425. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBPageSourceProvider.java +0 -0
  426. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBPlugin.java +0 -0
  427. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBSplit.java +0 -0
  428. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBSplitManager.java +0 -0
  429. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBTableHandle.java +0 -0
  430. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/update_schema_patch.py +0 -0
  431. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/update_schema_patch2.py +0 -0
  432. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/vendor/hnsw_rs/.gitignore +0 -0
  433. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/vendor/hnsw_rs/Cargo.toml +0 -0
  434. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/vendor/hnsw_rs/LICENSE-APACHE +0 -0
  435. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/vendor/hnsw_rs/LICENSE-MIT +0 -0
  436. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/vendor/hnsw_rs/README.md +0 -0
  437. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/vendor/hnsw_rs/examples/ann-glove/ann-glove25-angular.rs +0 -0
  438. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/vendor/hnsw_rs/examples/ann-glove/annhdf5.rs +0 -0
  439. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/vendor/hnsw_rs/examples/ann-mnist/ann-mnist-784-euclidean.rs +0 -0
  440. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/vendor/hnsw_rs/examples/ann-mnist/annhdf5.rs +0 -0
  441. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/vendor/hnsw_rs/examples/ann-sift1m/ann-sift1m-128-euclidean.rs +0 -0
  442. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/vendor/hnsw_rs/examples/ann-sift1m/annhdf5.rs +0 -0
  443. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/vendor/hnsw_rs/examples/deallocation_test.rs +0 -0
  444. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/vendor/hnsw_rs/examples/levensthein.rs +0 -0
  445. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/vendor/hnsw_rs/examples/random.rs +0 -0
  446. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/vendor/hnsw_rs/src/annhdf5.rs +0 -0
  447. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/vendor/hnsw_rs/src/api.rs +0 -0
  448. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/vendor/hnsw_rs/src/dist.rs +0 -0
  449. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/vendor/hnsw_rs/src/flatten.rs +0 -0
  450. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/vendor/hnsw_rs/src/hnsw.rs +0 -0
  451. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/vendor/hnsw_rs/src/hnswio.rs +0 -0
  452. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/vendor/hnsw_rs/src/lib.rs +0 -0
  453. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/vendor/hnsw_rs/src/libext.rs +0 -0
  454. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/vendor/hnsw_rs/src/prelude.rs +0 -0
  455. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/vendor/hnsw_rs/src/test.rs +0 -0
  456. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/verify_docstrings.py +0 -0
  457. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/verify_fluent_api.py +0 -0
  458. {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/verify_unified_ingest.py +0 -0
@@ -101,7 +101,7 @@ jobs:
101
101
  shared-key: "linux-x86_64"
102
102
  cache-targets: false
103
103
  - name: Install CUDA Toolkit
104
- uses: Jimver/cuda-toolkit@v0.2.30
104
+ uses: Jimver/cuda-toolkit@v0.2.35
105
105
  id: cuda-toolkit
106
106
  with:
107
107
  cuda: '12.1.0'
@@ -97,3 +97,4 @@ python/hyperstreamdb/*.so
97
97
  python/hyperstreamdb/*.pyd
98
98
  python/hyperstreamdb/*.dylib
99
99
  python/hyperstreamdb/*.dSYM/
100
+ groq_api_key.txt
@@ -3775,7 +3775,7 @@ dependencies = [
3775
3775
 
3776
3776
  [[package]]
3777
3777
  name = "hyperstreamdb"
3778
- version = "0.1.1"
3778
+ version = "0.1.2"
3779
3779
  dependencies = [
3780
3780
  "ahash 0.8.12",
3781
3781
  "anyhow",
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "hyperstreamdb"
3
- version = "0.1.1"
3
+ version = "0.1.2"
4
4
  edition = "2021"
5
5
  license = "MIT AND Apache-2.0"
6
6
  description = "HyperStreamDB - Serverless Index-Streaming Database with Overlay Indexing and Vector Search"
@@ -14,6 +14,10 @@ categories = ["database-implementations", "data-structures", "concurrency"]
14
14
  name = "hyperstreamdb"
15
15
  crate-type = ["cdylib", "rlib"]
16
16
 
17
+ [[test]]
18
+ name = "test_connector_ffi"
19
+ required-features = ["java"]
20
+
17
21
  [features]
18
22
  default = ["intel_gpu", "candle"]
19
23
  candle = []
@@ -67,7 +71,7 @@ opencl3 = { version = "0.9", optional = true } # Intel / OpenCL
67
71
 
68
72
  # indexing
69
73
  roaring = "0.10.2" # For scalar bitmaps
70
- hnsw_rs = { path = "vendor/hnsw_rs" } # For vector indexing
74
+ hnsw_rs = { version = "0.1.19", path = "vendor/hnsw_rs" } # For vector indexing
71
75
  # lance removed due to missing protoc
72
76
 
73
77
  # error handling
@@ -144,7 +148,7 @@ optional = true
144
148
  criterion = { version = "0.5", features = ["async_tokio"] }
145
149
  rand = "0.8"
146
150
  rand_distr = "0.4"
147
- hnsw_rs = { path = "vendor/hnsw_rs" }
151
+ hnsw_rs = { version = "0.1.19", path = "vendor/hnsw_rs" }
148
152
  tempfile = "3.10"
149
153
  proptest = "1.4"
150
154
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hyperstreamdb
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Classifier: Development Status :: 3 - Alpha
5
5
  Classifier: Intended Audience :: Developers
6
6
  Classifier: Programming Language :: Rust
@@ -0,0 +1,106 @@
1
+ import hyperstreamdb as hdb
2
+ import pandas as pd
3
+ import numpy as np
4
+
5
+ # Set pandas options to show full text in results
6
+ pd.set_option('display.max_colwidth', None)
7
+ pd.set_option('display.width', 1000)
8
+ pd.set_option('display.max_rows', 50)
9
+ import os
10
+ import shutil
11
+ from datasets import load_dataset
12
+ from sentence_transformers import SentenceTransformer
13
+ import warnings
14
+
15
+ # Suppress warnings
16
+ warnings.filterwarnings('ignore')
17
+
18
+ def run_demo():
19
+ print("=== HyperStreamDB Basics Demo ===")
20
+
21
+ # 1. Setup
22
+ db_path = "news_db"
23
+ if os.path.exists(db_path):
24
+ shutil.rmtree(db_path)
25
+
26
+ # Initialize the Intel GPU context (or CPU if not available)
27
+ # Note: If "intel" fails, fallback to CPU
28
+ try:
29
+ ctx = hdb.ComputeContext("intel")
30
+ print("Using Intel GPU context")
31
+ except Exception as e:
32
+ print(f"Intel GPU not available ({e}), using CPU")
33
+ ctx = None
34
+
35
+ # 2. Load Data
36
+ print("\nLoading AG News dataset...")
37
+ dataset = load_dataset("ag_news", split="test[:500]")
38
+ df = pd.DataFrame(dataset)
39
+ label_map = {0: "World", 1: "Sports", 2: "Business", 3: "Sci/Tech"}
40
+ df["category"] = df["label"].map(label_map)
41
+
42
+ # 3. Embedding
43
+ print(f"Embedding {len(df)} articles using all-MiniLM-L6-v2...")
44
+ model = SentenceTransformer("all-MiniLM-L6-v2")
45
+ embeddings = model.encode(df["text"].tolist())
46
+ df["embedding"] = [list(e) for e in embeddings]
47
+
48
+ # 4. Ingest into HyperStreamDB
49
+ print("\nIngesting into HyperStreamDB...")
50
+ table = hdb.Table(db_path, context=ctx)
51
+
52
+ # Enable Vector Indexing for the embedding column and Inverted Index for category
53
+ # Note: Use add_index_columns for multiple columns
54
+ table.add_index_columns(["embedding", "category", "text"])
55
+
56
+ table.write(df)
57
+ table.commit()
58
+ print("Ingestion complete.")
59
+
60
+ # 5. Scalar Filtering
61
+ print("\n--- Scalar Filtering ---")
62
+ # Using the fluent API: table.filter(expr).to_pandas()
63
+ # Or table.to_pandas(filter=expr)
64
+ sports_query = table.filter("category = 'Sports'")
65
+ sports_df = sports_query.to_pandas()
66
+ print(f"Found {len(sports_df)} sports articles.")
67
+ if len(sports_df) > 0:
68
+ print(sports_df[["category", "text"]].head())
69
+
70
+ # 6. Vector Search
71
+ print("\n--- Vector Search ---")
72
+ query_text = "Winning medals in international sports competitions"
73
+ query_embedding = list(model.encode(query_text))
74
+
75
+ # Using the fluent API: table.filter(vector_filter=...).to_pandas()
76
+ # Or table.to_pandas(vector_filter=...)
77
+ # The current API seems to prefer vector_filter as a dict or list in to_pandas
78
+
79
+ print(f"Searching for: '{query_text}'")
80
+ results = table.to_pandas(vector_filter=query_embedding, k=5)
81
+
82
+ if "_distance" in results.columns:
83
+ print(results[["category", "text", "_distance"]])
84
+ elif "distance" in results.columns:
85
+ print(results[["category", "text", "distance"]])
86
+ else:
87
+ print(results[["category", "text"]])
88
+
89
+ # 7. Hybrid Search
90
+ print("\n--- Hybrid Search (Sci/Tech + Vector) ---")
91
+ query_text = "What is the latest news in Artificial Intelligence?"
92
+ query_embedding = list(model.encode(query_text))
93
+ # Use Fluent API (as requested by user)
94
+ hybrid_results = (table.filter("category = 'Sci/Tech'")
95
+ .vector_search(query_embedding, k=5)
96
+ .to_pandas())
97
+ if not hybrid_results.empty:
98
+ cols = ["category", "text"]
99
+ if "_distance" in hybrid_results.columns: cols.append("_distance")
100
+ elif "distance" in hybrid_results.columns: cols.append("distance")
101
+ print(hybrid_results[cols].to_string())
102
+ else:
103
+ print("No results found for hybrid search.")
104
+
105
+ if __name__ == "__main__":
106
+ run_demo()