summaryrefslogtreecommitdiff
path: root/search.py
diff options
context:
space:
mode:
authorYour Name <you@example.com>2026-01-04 15:16:16 +0100
committerYour Name <you@example.com>2026-01-04 15:16:16 +0100
commit73ee9f6b9355c244e078e021797e4b37e87f8f3b (patch)
tree06095829df9cdac7dd4ec96cfe371ed20e3f3391 /search.py
parent3a98216eccf326cfd322478cbf791232d3390c61 (diff)
fixed edge case for python versionHEADmain
Diffstat (limited to 'search.py')
-rwxr-xr-xsearch.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/search.py b/search.py
index c370ffe..caf1567 100755
--- a/search.py
+++ b/search.py
@@ -3,8 +3,12 @@
3multi-agent deep research thingy 3multi-agent deep research thingy
4""" 4"""
5 5
6# SQLite workaround for ChromaDB on older systems
7__import__('pysqlite3')
8import sys
9sys.modules['sqlite3'] = sys.modules.pop('pysqlite3')
6 10
7import os, re, sys 11import os, re
8from dataclasses import dataclass, field 12from dataclasses import dataclass, field
9from pathlib import Path 13from pathlib import Path
10import torch 14import torch