kosha (कोश) — a treasury of your repo and environment context for coding agents. FTS5 + vector search + call graph, no LLMs required.
Project description
kosha
kosha (कोश) — persistent knowledge of your codebase and installed packages for humans and AI coding assistants.
FTS5 + vector search + call graph, merged with RRF. Each result includes the snippet, callers, callees, and PageRank. No LLMs required.
Install
kosha is a dev dependency — it indexes at development time so AI coding assistants can search it.
uv add --dev kosha
One-time project setup — installs SKILL.md so every agent picks up the
skill automatically:
Kosha(install_skill=True) # writes .agents/skills/kosha/ and .claude/skills/kosha/
Sync
Once per session; subsequent calls are incremental (only changed files and new versions re-indexed).
k = Kosha()
k.sync(pkgs=['fastcore', 'litesearch'])
syncing files [Path('/Users/71293/code/personal/orgs/kosha/kosha/cli.py'), Path('/Users/71293/code/personal/orgs/kosha/kosha/core.py'), Path('/Users/71293/code/personal/orgs/kosha/kosha/graph.py'), Path('/Users/71293/code/personal/orgs/kosha/kosha/skill.py')] .....
parse files from /Users/71293/code/personal/orgs/kosha: 100%|██████████| 4/4 [00:00<00:00, 60.67it/s]
removed 55 outdated chunks from code store.
adding 8 new/updated chunks to code store...
{'changed': 8, 'same': 205, 'removed': 94}
synced repo
loading pkgs ['fastcore', 'litesearch'] ...
Updating packages: 0%| | 0/2 [00:00<?, ?pkg/s]
updating pkg: fastcore ...
Updating packages: 100%|██████████| 2/2 [00:00<00:00, 3.86pkg/s]
package {'name': 'fastcore', 'version': '1.12.47'} already loaded.
updating pkg: litesearch ...
package {'name': 'litesearch', 'version': '0.0.29'} already loaded.
loading code graph for packages: 100%|██████████| 2/2 [00:02<00:00, 1.42s/pkg]
[None, None, <kosha.graph.CodeGraph object>]
k.status()
{'files': 3,
'packages': 182,
'graph_nodes': 85874,
'stale_files': 0,
'stale_pkgs': {}}
Re-run k.sync() after uv add, version bumps, or significant code
changes. If stale_files > 0 or stale_pkgs is non-empty, sync before
querying.
Use k.sync(force_graph=True) to rebuild the call graph on an existing
DB without re-embedding — useful after a kosha update that changes graph
logic.
1 — Check before implementing
Before writing any new function, verify it doesn’t already exist in a dependency.
results = k.env_context('atomic write temp file permissions', limit=5)
for r in results:
print(r['metadata']['mod_name'])
print(' ', r['content'].splitlines()[0])
print()
setuptools._core_metadata.write_pkg_info
def write_pkg_info(self, base_dir):
requests.utils.atomic_open
def atomic_open(filename):
jupyter_server.services.contents.fileio.FileManagerMixin
class FileManagerMixin(LoggingConfigurable, Configurable):
anyio._core._tempfile.SpooledTemporaryFile.write
async def write(self: SpooledTemporaryFile[bytes], b: ReadableBuffer) -> int: ...
jupyter_server.services.contents.fileio.FileManagerMixin
class FileManagerMixin(LoggingConfigurable, Configurable):
Package names in the query are auto-detected as filters. package:,
path:, type: tokens narrow further:
k.env_context('package:fastcore path:xtras atomic save', limit=8)
Need more info on a package? Call pkg_url to get its repo/docs
URL, then use websearch for changelogs, API docs, or migration guides:
from kosha.core import pkg_url
pkg_url('litesearch')
'https://github.com/Karthik777/litesearch'
2 — Find existing patterns
Any task that adds or modifies behaviour. Run before touching files.
results = k.context('search code embeddings', limit=6, graph=True)
for r in results:
m = r['metadata']
print(f"{m['mod_name']} L{m.get('lineno','?')} "
f"pr={r.get('pagerank',0):.4f} callers={list(r.get('callers',[]))[:2]}")
kosha.core.repo_context L364 pr=0.0002 callers=['kosha.graph.context', 'kosha.core.Kosha']
litesearch.core.vec_search L42 pr=0.0004 callers=['litesearch.core.Table']
kosha.core.env_context L333 pr=0.0002 callers=['kosha.graph.context', 'kosha.core.Kosha']
litesearch.core.vec_search L42 pr=0.0004 callers=['litesearch.core.Table']
kosha.core.pkg_context L397 pr=0.0001 callers=['kosha.graph.task_context', 'kosha.core.Kosha']
chonkie.handshakes.pinecone.PineconeHandshake.search L201 pr=0.0000 callers=['chonkie.chunker.slumber.SlumberChunker._extract_index_from_text', 'chonkie.handshakes.elastic.ElasticHandshake.search']
pagerank = blast radius — higher means more things depend on it, touch
carefully.
3 — Understand a node
Who calls this? What does it call? What are its peers?
info = k.ni('fastcore.basics.merge')
print('pagerank:', info.get('pagerank', 0))
print('callers: ', list(info.get('callers', []))[:5])
print('callees: ', list(info.get('callees', []))[:5])
print('co_dispatched:', list(info.get('co_dispatched', []))[:5])
pagerank: 3e-05
callers: ['fastcore.script.call_parse._f', 'fastcore.script.call_parse._f', 'fastcore.script.call_parse._f', 'fastcore.script.call_parse._f', 'fastcore.script.call_parse._f']
callees: ['fastcore.basics.NS.__iter__', 'fastcore.nbio.Notebook.__iter__', 'fastcore.xtras.SaveReturn.__iter__', 'fastcore.xml.FT.__iter__', 'fastcore.docscrape.NumpyDocString.__iter__']
co_dispatched: []
co_dispatched lists sibling functions registered together (route
groups, handler tables, plugin lists) — the pattern to follow when
adding a new one.
4 — Find where to add new code
pts = k.where_to_add('add dynamic ast parsing for patched functions', limit=3)
for p in pts:
co = ', '.join(p['co_dispatched'][:3])
print(f"{p['path']}:{p['insert_after']} ({p['node']})")
if co: print(f' peers: {co}')
/Users/71293/code/personal/orgs/kosha/kosha/graph.py:130 (kosha.graph._patch_edges)
Triage — scan many results quickly
compact=True strips full code bodies and returns slim dicts for fast
scanning.
hits = k.context('database search filter package:litesearch', limit=10,repo=False, compact=True)
for r in hits:
sig = r.get('sig', '')
doc = (r.get('docstring') or '')[:60]
print(f"{r['mod_name']} L{r.get('lineno','?')}")
if sig: print(f' {sig}')
if doc: print(f' # {doc}')
litesearch.core.search L94
def search(self: Database, # database connection
# Search the litesearch store with fts and vector search combi
litesearch.core.vec_search L42
def vec_search(self: Table,
litesearch.core.vec_search L42
def vec_search(self: Table,
# Vector similarity search on any table with an embedding colu
litesearch.core.database L75
def database(pth_or_uri:str=':memory:', # the database name or URL
litesearch.core.database L75
def database(pth_or_uri:str=':memory:', # the database name or URL
# Set up a database connection and load usearch extensions.
litesearch.cli.main L21
def main():
litesearch.data.pre L250
def pre(q:str, # query to be passed for fts search
# Preprocess the query for fts search.
litesearch.core.search L94
def search(self: Database, # database connection
litesearch.data.pre L240
def pre(q:str, # query to be passed for fts search
litesearch.data.clean L218
def clean(q:str # query to be passed for fts search
Public API surface
api = k.public_api('fastcore', limit=12)
for e in api:
name = e.get('mod_name', '')
doc = (e.get('docstring') or '')[:55]
print(f"{name}" + (f' # {doc}' if doc else ''))
fastcore.foundation.cycle
fastcore.foundation.product
fastcore.foundation.flatmap
fastcore.foundation.unique
fastcore.foundation.val2idx
fastcore.foundation.range
fastcore.foundation.enumerate
fastcore.foundation.renumerate
fastcore.foundation.split
fastcore.foundation.splitlines
fastcore.foundation.map
fastcore.foundation.groupby
Graph navigation — paths and dependency layers
Trace how nodes connect, find shortest call paths, and walk dependency layers.
from fastcore.all import L
k.graphdb.t.graph_edges(where='callee like "%litesearch%"')
[{'id': 153331,
'caller': 'litesearch.core.Database',
'callee': 'litesearch.core.query',
'kind': 'patch',
'confidence': 0.9},
{'id': 153332,
'caller': 'litesearch.core.Database',
'callee': 'litesearch.core.get_store',
'kind': 'patch',
'confidence': 0.9},
{'id': 153333,
'caller': 'litesearch.core.Table',
'callee': 'litesearch.core.vec_search',
'kind': 'patch',
'confidence': 0.9},
{'id': 153334,
'caller': 'litesearch.core.Database',
'callee': 'litesearch.core.search',
'kind': 'patch',
'confidence': 0.9},
{'id': 153335,
'caller': 'litesearch.data.PdfDocument',
'callee': 'litesearch.data.pdf_texts',
'kind': 'patch',
'confidence': 0.9},
{'id': 153336,
'caller': 'litesearch.data.PdfDocument',
'callee': 'litesearch.data.pdf_links',
'kind': 'patch',
'confidence': 0.9},
{'id': 153337,
'caller': 'litesearch.data.PdfDocument',
'callee': 'litesearch.data.pdf_images',
'kind': 'patch',
'confidence': 0.9},
{'id': 153338,
'caller': 'litesearch.data.PdfDocument',
'callee': 'litesearch.data.pdf_markdown',
'kind': 'patch',
'confidence': 0.9},
{'id': 153339,
'caller': 'litesearch.data.PdfDocument',
'callee': 'litesearch.data.pdf_tables',
'kind': 'patch',
'confidence': 0.9},
{'id': 153340,
'caller': 'litesearch.data.PdfDocument',
'callee': 'litesearch.data.pdf_spans',
'kind': 'patch',
'confidence': 0.9},
{'id': 153341,
'caller': 'litesearch.data.PdfDocument',
'callee': 'litesearch.data.pdf_chunks',
'kind': 'patch',
'confidence': 0.9},
{'id': 153342,
'caller': 'litesearch.data.pdf_chunks',
'callee': 'litesearch.data.chunk_markdown',
'kind': 'delegates',
'confidence': 0.85},
{'id': 153343,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.pyparse',
'kind': 'delegates',
'confidence': 0.85},
{'id': 153344,
'caller': 'litesearch.data.pkg2files',
'callee': 'litesearch.data.globtastic',
'kind': 'delegates',
'confidence': 0.85},
{'id': 153345,
'caller': 'litesearch.data.dir2files',
'callee': 'litesearch.data.globtastic',
'kind': 'delegates',
'confidence': 0.85},
{'id': 153346,
'caller': 'litesearch.data.dir2chunks',
'callee': 'litesearch.data.dir2files',
'kind': 'delegates',
'confidence': 0.85},
{'id': 187455,
'caller': 'litesearch.cli.install',
'callee': 'litesearch.data.mv_skill_md',
'kind': 'static',
'confidence': 1.0},
{'id': 187457,
'caller': 'litesearch.cli.main',
'callee': 'litesearch.cli.CMDS',
'kind': 'static',
'confidence': 1.0},
{'id': 187458,
'caller': 'litesearch.core._dtype_suffix',
'callee': 'litesearch.core._dtype_suffixes',
'kind': 'static',
'confidence': 1.0},
{'id': 187466,
'caller': 'litesearch.core.get_store',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 187471,
'caller': 'litesearch.core.vec_search',
'callee': 'litesearch.core._dtype_suffix',
'kind': 'static',
'confidence': 1.0},
{'id': 187474,
'caller': 'litesearch.core.database',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 187481,
'caller': 'litesearch.core.search',
'callee': 'litesearch.core.rrf_merge',
'kind': 'static',
'confidence': 1.0},
{'id': 187512,
'caller': 'litesearch.data.pdf_chunks',
'callee': 'litesearch.data.pdf_markdown',
'kind': 'static',
'confidence': 1.0},
{'id': 187513,
'caller': 'litesearch.data.pdf_chunks',
'callee': 'litesearch.data.chunk_markdown',
'kind': 'static',
'confidence': 1.0},
{'id': 187517,
'caller': 'litesearch.data.pdf_chunks.genexpr.0',
'callee': 'litesearch.data.chunk_markdown',
'kind': 'static',
'confidence': 1.0},
{'id': 187523,
'caller': 'litesearch.data.pyparse',
'callee': 'litesearch.data.pyparse.is_allowed',
'kind': 'static',
'confidence': 1.0},
{'id': 187524,
'caller': 'litesearch.data.pyparse',
'callee': 'litesearch.data.pyparse.n2c',
'kind': 'static',
'confidence': 1.0},
{'id': 187529,
'caller': 'litesearch.data.pyparse.n2c',
'callee': 'litesearch.data.pyparse.meta',
'kind': 'static',
'confidence': 1.0},
{'id': 187531,
'caller': 'litesearch.data.pyparse.is_allowed',
'callee': 'litesearch.data.pyparse.is_p_mod',
'kind': 'static',
'confidence': 1.0},
{'id': 187532,
'caller': 'litesearch.data.pyparse.is_allowed',
'callee': 'litesearch.data.pyparse.is_assign',
'kind': 'static',
'confidence': 1.0},
{'id': 187533,
'caller': 'litesearch.data.pyparse.is_allowed',
'callee': 'litesearch.data.pyparse.is_mod',
'kind': 'static',
'confidence': 1.0},
{'id': 187535,
'caller': 'litesearch.data.ipynb_parse.lambda.0',
'callee': 'litesearch.data.ipynb_parse.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 187536,
'caller': 'litesearch.data.ipynb_parse',
'callee': 'litesearch.data.ipynb_parse.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 187540,
'caller': 'litesearch.data.non_py_sigs.lambda.0',
'callee': 'litesearch.data.non_py_sigs.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 187541,
'caller': 'litesearch.data.non_py_sigs',
'callee': 'litesearch.data.non_py_sigs.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 187547,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.chunk_markdown',
'kind': 'static',
'confidence': 1.0},
{'id': 187548,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.ipynb_parse',
'kind': 'static',
'confidence': 1.0},
{'id': 187551,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.chunk_texts',
'kind': 'static',
'confidence': 1.0},
{'id': 187552,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.pyparse',
'kind': 'static',
'confidence': 1.0},
{'id': 187553,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.non_py_sigs',
'kind': 'static',
'confidence': 1.0},
{'id': 187555,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.file_parse.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 187557,
'caller': 'litesearch.data.file_parse.lambda.0',
'callee': 'litesearch.data.file_parse.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 187558,
'caller': 'litesearch.data.file_parse.lambda.1',
'callee': 'litesearch.data.file_parse.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 187562,
'caller': 'litesearch.data.pkg2files',
'callee': 'litesearch.data.spec',
'kind': 'static',
'confidence': 1.0},
{'id': 187571,
'caller': 'litesearch.data.pkg2chunks',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 187572,
'caller': 'litesearch.data.pkg2chunks',
'callee': 'litesearch.data.pkg2files',
'kind': 'static',
'confidence': 1.0},
{'id': 187574,
'caller': 'litesearch.data.pkg2chunks',
'callee': 'litesearch.data.file_parse',
'kind': 'static',
'confidence': 1.0},
{'id': 187579,
'caller': 'litesearch.data.dir2chunks',
'callee': 'litesearch.data.dir2files',
'kind': 'static',
'confidence': 1.0},
{'id': 187581,
'caller': 'litesearch.data.dir2chunks',
'callee': 'litesearch.data.file_parse',
'kind': 'static',
'confidence': 1.0},
{'id': 187586,
'caller': 'litesearch.data.installed_packages',
'callee': 'litesearch.data.repo_root',
'kind': 'static',
'confidence': 1.0},
{'id': 187588,
'caller': 'litesearch.data.installed_packages',
'callee': 'litesearch.data.spec',
'kind': 'static',
'confidence': 1.0},
{'id': 187590,
'caller': 'litesearch.data.pre',
'callee': 'litesearch.data.add_wc',
'kind': 'static',
'confidence': 1.0},
{'id': 187591,
'caller': 'litesearch.data.pre',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 187592,
'caller': 'litesearch.data.pre',
'callee': 'litesearch.data.mk_wider',
'kind': 'static',
'confidence': 1.0},
{'id': 187593,
'caller': 'litesearch.data.pre',
'callee': 'litesearch.data.clean',
'kind': 'static',
'confidence': 1.0},
{'id': 187596,
'caller': 'litesearch.data.images_to_pdf',
'callee': 'litesearch.data.png_det',
'kind': 'static',
'confidence': 1.0},
{'id': 187597,
'caller': 'litesearch.data.images_to_pdf',
'callee': 'litesearch.data.img2png',
'kind': 'static',
'confidence': 1.0},
{'id': 187598,
'caller': 'litesearch.data.images_to_pdf.listcomp.0',
'callee': 'litesearch.data.img2png',
'kind': 'static',
'confidence': 1.0},
{'id': 187599,
'caller': 'litesearch.data.images_to_pdf.listcomp.0',
'callee': 'litesearch.data.png_det',
'kind': 'static',
'confidence': 1.0},
{'id': 187600,
'caller': 'litesearch.data.mv_skill_md',
'callee': 'litesearch.data.repo_root',
'kind': 'static',
'confidence': 1.0},
{'id': 187606,
'caller': 'litesearch.utils.FastEncode.__init__',
'callee': 'litesearch.utils.download_model',
'kind': 'static',
'confidence': 1.0},
{'id': 187607,
'caller': 'litesearch.utils.FastEncode.__init__',
'callee': 'litesearch.utils.model',
'kind': 'static',
'confidence': 1.0},
{'id': 187608,
'caller': 'litesearch.utils.FastEncode.__init__',
'callee': 'litesearch.utils.FastEncode._load_enc',
'kind': 'static',
'confidence': 1.0},
{'id': 187614,
'caller': 'litesearch.utils.FastEncode._load_enc',
'callee': 'litesearch.utils.FastEncode._load_tok',
'kind': 'static',
'confidence': 1.0},
{'id': 187616,
'caller': 'litesearch.utils.FastEncode._load_enc',
'callee': 'litesearch.utils.FastEncode._maybe_quantize',
'kind': 'static',
'confidence': 1.0},
{'id': 187617,
'caller': 'litesearch.utils.FastEncode._load_enc',
'callee': 'litesearch.utils.download_model',
'kind': 'static',
'confidence': 1.0},
{'id': 187621,
'caller': 'litesearch.utils.FastEncode._load_tok',
'callee': 'litesearch.utils.download_model',
'kind': 'static',
'confidence': 1.0},
{'id': 187623,
'caller': 'litesearch.utils.FastEncode._encode_batch',
'callee': 'litesearch.utils.FastEncode._mp',
'kind': 'static',
'confidence': 1.0},
{'id': 187624,
'caller': 'litesearch.utils.FastEncode._encode_batch',
'callee': 'litesearch.utils.FastEncode._enc',
'kind': 'static',
'confidence': 1.0},
{'id': 187625,
'caller': 'litesearch.utils.FastEncode._encode_batch',
'callee': 'litesearch.utils.FastEncode._load_enc',
'kind': 'static',
'confidence': 1.0},
{'id': 187629,
'caller': 'litesearch.utils.FastEncode.encode',
'callee': 'litesearch.utils.FastEncode._encode_batch',
'kind': 'static',
'confidence': 1.0},
{'id': 187630,
'caller': 'litesearch.utils.FastEncode.encode',
'callee': 'litesearch.utils.FastEncode._load_enc',
'kind': 'static',
'confidence': 1.0},
{'id': 187631,
'caller': 'litesearch.utils.FastEncode.encode',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 187632,
'caller': 'litesearch.utils.FastEncode.encode.lambda.0',
'callee': 'litesearch.utils.FastEncode._encode_batch',
'kind': 'static',
'confidence': 1.0},
{'id': 187633,
'caller': 'litesearch.utils.FastEncode.encode.lambda.0',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 187634,
'caller': 'litesearch.utils.FastEncode.encode_document',
'callee': 'litesearch.utils.FastEncode.encode',
'kind': 'static',
'confidence': 1.0},
{'id': 187635,
'caller': 'litesearch.utils.FastEncode.encode_document',
'callee': 'litesearch.utils.FastEncode.__init__',
'kind': 'static',
'confidence': 1.0},
{'id': 187636,
'caller': 'litesearch.utils.FastEncode.encode_document',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 187638,
'caller': 'litesearch.utils.FastEncode.encode_document.lambda.0',
'callee': 'litesearch.utils.FastEncode.__init__',
'kind': 'static',
'confidence': 1.0},
{'id': 187639,
'caller': 'litesearch.utils.FastEncode.encode_query',
'callee': 'litesearch.utils.FastEncode.encode',
'kind': 'static',
'confidence': 1.0},
{'id': 187640,
'caller': 'litesearch.utils.FastEncode.encode_query',
'callee': 'litesearch.utils.FastEncode.__init__',
'kind': 'static',
'confidence': 1.0},
{'id': 187641,
'caller': 'litesearch.utils.FastEncode.encode_query',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 187643,
'caller': 'litesearch.utils.FastEncode.encode_query.lambda.0',
'callee': 'litesearch.utils.FastEncode.__init__',
'kind': 'static',
'confidence': 1.0},
{'id': 187644,
'caller': 'litesearch.utils.download_model',
'callee': 'litesearch.utils.model',
'kind': 'static',
'confidence': 1.0},
{'id': 187648,
'caller': 'litesearch.utils.FastEncodeImage.__init__',
'callee': 'litesearch.utils.model',
'kind': 'static',
'confidence': 1.0},
{'id': 187650,
'caller': 'litesearch.utils.FastEncodeImage.__init__',
'callee': 'litesearch.utils.download_model',
'kind': 'static',
'confidence': 1.0},
{'id': 187651,
'caller': 'litesearch.utils.FastEncodeImage.__init__',
'callee': 'litesearch.utils.FastEncodeImage._load_enc',
'kind': 'static',
'confidence': 1.0},
{'id': 187652,
'caller': 'litesearch.utils.FastEncodeImage.__init__',
'callee': 'litesearch.utils.FastEncodeImage._load_processor',
'kind': 'static',
'confidence': 1.0},
{'id': 187654,
'caller': 'litesearch.utils.FastEncodeImage._load_enc',
'callee': 'litesearch.utils.download_model',
'kind': 'static',
'confidence': 1.0},
{'id': 187660,
'caller': 'litesearch.utils.FastEncodeImage._encode_batch',
'callee': 'litesearch.utils.FastEncodeImage._preprocess',
'kind': 'static',
'confidence': 1.0},
{'id': 187661,
'caller': 'litesearch.utils.FastEncodeImage._encode_batch',
'callee': 'litesearch.utils.FastEncodeImage._load_enc',
'kind': 'static',
'confidence': 1.0},
{'id': 187663,
'caller': 'litesearch.utils.FastEncodeImage._encode_batch',
'callee': 'litesearch.utils.FastEncodeImage._to_pil',
'kind': 'static',
'confidence': 1.0},
{'id': 187667,
'caller': 'litesearch.utils.FastEncodeImage.embed',
'callee': 'litesearch.utils.FastEncodeImage._load_enc',
'kind': 'static',
'confidence': 1.0},
{'id': 187668,
'caller': 'litesearch.utils.FastEncodeImage.embed',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 187669,
'caller': 'litesearch.utils.FastEncodeImage.embed',
'callee': 'litesearch.utils.FastEncodeImage._encode_batch',
'kind': 'static',
'confidence': 1.0},
{'id': 187670,
'caller': 'litesearch.utils.FastEncodeImage.embed.lambda.0',
'callee': 'litesearch.utils.FastEncodeImage._encode_batch',
'kind': 'static',
'confidence': 1.0},
{'id': 187671,
'caller': 'litesearch.utils.FastEncodeImage.embed.lambda.0',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 187673,
'caller': 'litesearch.utils.FastEncodeMultimodal.__init__',
'callee': 'litesearch.utils.FastEncodeImage.__init__',
'kind': 'static',
'confidence': 1.0},
{'id': 187675,
'caller': 'litesearch.utils.FastEncodeMultimodal.__init__',
'callee': 'litesearch.utils.download_model',
'kind': 'static',
'confidence': 1.0},
{'id': 187676,
'caller': 'litesearch.utils.FastEncodeMultimodal.__init__',
'callee': 'litesearch.utils.FastEncodeImage',
'kind': 'static',
'confidence': 1.0},
{'id': 187677,
'caller': 'litesearch.utils.FastEncodeMultimodal.__init__',
'callee': 'litesearch.utils.model',
'kind': 'static',
'confidence': 1.0},
{'id': 187678,
'caller': 'litesearch.utils.FastEncodeMultimodal.__init__',
'callee': 'litesearch.utils.FastEncode.__init__',
'kind': 'static',
'confidence': 1.0},
{'id': 187679,
'caller': 'litesearch.utils.FastEncodeMultimodal.__init__',
'callee': 'litesearch.utils.FastEncode',
'kind': 'static',
'confidence': 1.0},
{'id': 187681,
'caller': 'litesearch.utils.FastEncodeMultimodal.encode_text',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 187682,
'caller': 'litesearch.utils.FastEncodeMultimodal.encode_text',
'callee': 'litesearch.utils.FastEncode.encode',
'kind': 'static',
'confidence': 1.0},
{'id': 187683,
'caller': 'litesearch.utils.FastEncodeMultimodal.encode_image',
'callee': 'litesearch.utils.FastEncodeImage.embed',
'kind': 'static',
'confidence': 1.0},
{'id': 187684,
'caller': 'litesearch.utils.FastEncodeMultimodal.encode_image',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 187685,
'caller': 'litesearch.utils.encode_pdf_texts',
'callee': 'litesearch.data.pdf_chunks',
'kind': 'static',
'confidence': 1.0},
{'id': 187686,
'caller': 'litesearch.utils.encode_pdf_texts',
'callee': 'litesearch.utils.FastEncode.encode_document',
'kind': 'static',
'confidence': 1.0},
{'id': 187687,
'caller': 'litesearch.utils.encode_pdf_texts',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 187690,
'caller': 'litesearch.utils.encode_pdf_images',
'callee': 'litesearch.utils.FastEncodeImage.embed',
'kind': 'static',
'confidence': 1.0},
{'id': 206327,
'caller': 'litesearch.cli.install',
'callee': 'litesearch.data.mv_skill_md',
'kind': 'static',
'confidence': 1.0},
{'id': 206328,
'caller': 'litesearch.cli.main',
'callee': 'litesearch.cli.CMDS',
'kind': 'static',
'confidence': 1.0},
{'id': 206329,
'caller': 'litesearch.core._dtype_suffix',
'callee': 'litesearch.core._dtype_suffixes',
'kind': 'static',
'confidence': 1.0},
{'id': 206338,
'caller': 'litesearch.core.get_store',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 206340,
'caller': 'litesearch.core.vec_search',
'callee': 'litesearch.core._dtype_suffix',
'kind': 'static',
'confidence': 1.0},
{'id': 206347,
'caller': 'litesearch.core.database',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 206352,
'caller': 'litesearch.core.search',
'callee': 'litesearch.core.rrf_merge',
'kind': 'static',
'confidence': 1.0},
{'id': 206384,
'caller': 'litesearch.data.pdf_chunks',
'callee': 'litesearch.data.chunk_markdown',
'kind': 'static',
'confidence': 1.0},
{'id': 206387,
'caller': 'litesearch.data.pdf_chunks',
'callee': 'litesearch.data.pdf_markdown',
'kind': 'static',
'confidence': 1.0},
{'id': 206388,
'caller': 'litesearch.data.pdf_chunks.genexpr.0',
'callee': 'litesearch.data.chunk_markdown',
'kind': 'static',
'confidence': 1.0},
{'id': 206395,
'caller': 'litesearch.data.pyparse',
'callee': 'litesearch.data.pyparse.is_allowed',
'kind': 'static',
'confidence': 1.0},
{'id': 206396,
'caller': 'litesearch.data.pyparse',
'callee': 'litesearch.data.pyparse.n2c',
'kind': 'static',
'confidence': 1.0},
{'id': 206401,
'caller': 'litesearch.data.pyparse.n2c',
'callee': 'litesearch.data.pyparse.meta',
'kind': 'static',
'confidence': 1.0},
{'id': 206402,
'caller': 'litesearch.data.pyparse.is_allowed',
'callee': 'litesearch.data.pyparse.is_p_mod',
'kind': 'static',
'confidence': 1.0},
{'id': 206403,
'caller': 'litesearch.data.pyparse.is_allowed',
'callee': 'litesearch.data.pyparse.is_mod',
'kind': 'static',
'confidence': 1.0},
{'id': 206404,
'caller': 'litesearch.data.pyparse.is_allowed',
'callee': 'litesearch.data.pyparse.is_assign',
'kind': 'static',
'confidence': 1.0},
{'id': 206406,
'caller': 'litesearch.data.ipynb_parse.lambda.0',
'callee': 'litesearch.data.ipynb_parse.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 206409,
'caller': 'litesearch.data.ipynb_parse',
'callee': 'litesearch.data.ipynb_parse.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 206411,
'caller': 'litesearch.data.non_py_sigs.lambda.0',
'callee': 'litesearch.data.non_py_sigs.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 206413,
'caller': 'litesearch.data.non_py_sigs',
'callee': 'litesearch.data.non_py_sigs.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 206418,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.chunk_markdown',
'kind': 'static',
'confidence': 1.0},
{'id': 206419,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.chunk_texts',
'kind': 'static',
'confidence': 1.0},
{'id': 206420,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.non_py_sigs',
'kind': 'static',
'confidence': 1.0},
{'id': 206423,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.file_parse.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 206425,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.ipynb_parse',
'kind': 'static',
'confidence': 1.0},
{'id': 206426,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.pyparse',
'kind': 'static',
'confidence': 1.0},
{'id': 206428,
'caller': 'litesearch.data.file_parse.lambda.0',
'callee': 'litesearch.data.file_parse.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 206429,
'caller': 'litesearch.data.file_parse.lambda.1',
'callee': 'litesearch.data.file_parse.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 206434,
'caller': 'litesearch.data.pkg2files',
'callee': 'litesearch.data.spec',
'kind': 'static',
'confidence': 1.0},
{'id': 206440,
'caller': 'litesearch.data.pkg2chunks',
'callee': 'litesearch.data.file_parse',
'kind': 'static',
'confidence': 1.0},
{'id': 206443,
'caller': 'litesearch.data.pkg2chunks',
'callee': 'litesearch.data.pkg2files',
'kind': 'static',
'confidence': 1.0},
{'id': 206444,
'caller': 'litesearch.data.pkg2chunks',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 206447,
'caller': 'litesearch.data.dir2chunks',
'callee': 'litesearch.data.file_parse',
'kind': 'static',
'confidence': 1.0},
{'id': 206450,
'caller': 'litesearch.data.dir2chunks',
'callee': 'litesearch.data.dir2files',
'kind': 'static',
'confidence': 1.0},
{'id': 206453,
'caller': 'litesearch.data.installed_packages',
'callee': 'litesearch.data.spec',
'kind': 'static',
'confidence': 1.0},
{'id': 206454,
'caller': 'litesearch.data.installed_packages',
'callee': 'litesearch.data.repo_root',
'kind': 'static',
'confidence': 1.0},
{'id': 206461,
'caller': 'litesearch.data.pre',
'callee': 'litesearch.data.mk_wider',
'kind': 'static',
'confidence': 1.0},
{'id': 206462,
'caller': 'litesearch.data.pre',
'callee': 'litesearch.data.add_wc',
'kind': 'static',
'confidence': 1.0},
{'id': 206463,
'caller': 'litesearch.data.pre',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 206464,
'caller': 'litesearch.data.pre',
'callee': 'litesearch.data.clean',
'kind': 'static',
'confidence': 1.0},
{'id': 206467,
'caller': 'litesearch.data.images_to_pdf',
'callee': 'litesearch.data.img2png',
'kind': 'static',
'confidence': 1.0},
{'id': 206468,
'caller': 'litesearch.data.images_to_pdf',
'callee': 'litesearch.data.png_det',
'kind': 'static',
'confidence': 1.0},
{'id': 206469,
'caller': 'litesearch.data.images_to_pdf.listcomp.0',
'callee': 'litesearch.data.png_det',
'kind': 'static',
'confidence': 1.0},
{'id': 206470,
'caller': 'litesearch.data.images_to_pdf.listcomp.0',
'callee': 'litesearch.data.img2png',
'kind': 'static',
'confidence': 1.0},
{'id': 206471,
'caller': 'litesearch.data.mv_skill_md',
'callee': 'litesearch.data.repo_root',
'kind': 'static',
'confidence': 1.0},
{'id': 206476,
'caller': 'litesearch.utils.FastEncode.__init__',
'callee': 'litesearch.utils.FastEncode._load_enc',
'kind': 'static',
'confidence': 1.0},
{'id': 206477,
'caller': 'litesearch.utils.FastEncode.__init__',
'callee': 'litesearch.utils.model',
'kind': 'static',
'confidence': 1.0},
{'id': 206479,
'caller': 'litesearch.utils.FastEncode.__init__',
'callee': 'litesearch.utils.download_model',
'kind': 'static',
'confidence': 1.0},
{'id': 206485,
'caller': 'litesearch.utils.FastEncode._load_enc',
'callee': 'litesearch.utils.FastEncode._load_tok',
'kind': 'static',
'confidence': 1.0},
{'id': 206487,
'caller': 'litesearch.utils.FastEncode._load_enc',
'callee': 'litesearch.utils.download_model',
'kind': 'static',
'confidence': 1.0},
{'id': 206489,
'caller': 'litesearch.utils.FastEncode._load_enc',
'callee': 'litesearch.utils.FastEncode._maybe_quantize',
'kind': 'static',
'confidence': 1.0},
{'id': 206490,
'caller': 'litesearch.utils.FastEncode._load_tok',
'callee': 'litesearch.utils.download_model',
'kind': 'static',
'confidence': 1.0},
{'id': 206494,
'caller': 'litesearch.utils.FastEncode._encode_batch',
'callee': 'litesearch.utils.FastEncode._mp',
'kind': 'static',
'confidence': 1.0},
{'id': 206495,
'caller': 'litesearch.utils.FastEncode._encode_batch',
'callee': 'litesearch.utils.FastEncode._load_enc',
'kind': 'static',
'confidence': 1.0},
{'id': 206496,
'caller': 'litesearch.utils.FastEncode._encode_batch',
'callee': 'litesearch.utils.FastEncode._enc',
'kind': 'static',
'confidence': 1.0},
{'id': 206498,
'caller': 'litesearch.utils.FastEncode.encode',
'callee': 'litesearch.utils.FastEncode._encode_batch',
'kind': 'static',
'confidence': 1.0},
{'id': 206499,
'caller': 'litesearch.utils.FastEncode.encode',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 206502,
'caller': 'litesearch.utils.FastEncode.encode',
'callee': 'litesearch.utils.FastEncode._load_enc',
'kind': 'static',
'confidence': 1.0},
{'id': 206503,
'caller': 'litesearch.utils.FastEncode.encode.lambda.0',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 206504,
'caller': 'litesearch.utils.FastEncode.encode.lambda.0',
'callee': 'litesearch.utils.FastEncode._encode_batch',
'kind': 'static',
'confidence': 1.0},
{'id': 206506,
'caller': 'litesearch.utils.FastEncode.encode_document',
'callee': 'litesearch.utils.FastEncode.__init__',
'kind': 'static',
'confidence': 1.0},
{'id': 206507,
'caller': 'litesearch.utils.FastEncode.encode_document',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 206508,
'caller': 'litesearch.utils.FastEncode.encode_document',
'callee': 'litesearch.utils.FastEncode.encode',
'kind': 'static',
'confidence': 1.0},
{'id': 206509,
'caller': 'litesearch.utils.FastEncode.encode_document.lambda.0',
'callee': 'litesearch.utils.FastEncode.__init__',
'kind': 'static',
'confidence': 1.0},
{'id': 206511,
'caller': 'litesearch.utils.FastEncode.encode_query',
'callee': 'litesearch.utils.FastEncode.__init__',
'kind': 'static',
'confidence': 1.0},
{'id': 206512,
'caller': 'litesearch.utils.FastEncode.encode_query',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 206513,
'caller': 'litesearch.utils.FastEncode.encode_query',
'callee': 'litesearch.utils.FastEncode.encode',
'kind': 'static',
'confidence': 1.0},
{'id': 206514,
'caller': 'litesearch.utils.FastEncode.encode_query.lambda.0',
'callee': 'litesearch.utils.FastEncode.__init__',
'kind': 'static',
'confidence': 1.0},
{'id': 206515,
'caller': 'litesearch.utils.download_model',
'callee': 'litesearch.utils.model',
'kind': 'static',
'confidence': 1.0},
{'id': 206519,
'caller': 'litesearch.utils.FastEncodeImage.__init__',
'callee': 'litesearch.utils.FastEncodeImage._load_enc',
'kind': 'static',
'confidence': 1.0},
{'id': 206520,
'caller': 'litesearch.utils.FastEncodeImage.__init__',
'callee': 'litesearch.utils.model',
'kind': 'static',
'confidence': 1.0},
{'id': 206521,
'caller': 'litesearch.utils.FastEncodeImage.__init__',
'callee': 'litesearch.utils.download_model',
'kind': 'static',
'confidence': 1.0},
{'id': 206522,
'caller': 'litesearch.utils.FastEncodeImage.__init__',
'callee': 'litesearch.utils.FastEncodeImage._load_processor',
'kind': 'static',
'confidence': 1.0},
{'id': 206526,
'caller': 'litesearch.utils.FastEncodeImage._load_enc',
'callee': 'litesearch.utils.download_model',
'kind': 'static',
'confidence': 1.0},
{'id': 206531,
'caller': 'litesearch.utils.FastEncodeImage._encode_batch',
'callee': 'litesearch.utils.FastEncodeImage._load_enc',
'kind': 'static',
'confidence': 1.0},
{'id': 206533,
'caller': 'litesearch.utils.FastEncodeImage._encode_batch',
'callee': 'litesearch.utils.FastEncodeImage._preprocess',
'kind': 'static',
'confidence': 1.0},
{'id': 206534,
'caller': 'litesearch.utils.FastEncodeImage._encode_batch',
'callee': 'litesearch.utils.FastEncodeImage._to_pil',
'kind': 'static',
'confidence': 1.0},
{'id': 206536,
'caller': 'litesearch.utils.FastEncodeImage.embed',
'callee': 'litesearch.utils.FastEncodeImage._load_enc',
'kind': 'static',
'confidence': 1.0},
{'id': 206537,
'caller': 'litesearch.utils.FastEncodeImage.embed',
'callee': 'litesearch.utils.FastEncodeImage._encode_batch',
'kind': 'static',
'confidence': 1.0},
{'id': 206538,
'caller': 'litesearch.utils.FastEncodeImage.embed',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 206541,
'caller': 'litesearch.utils.FastEncodeImage.embed.lambda.0',
'callee': 'litesearch.utils.FastEncodeImage._encode_batch',
'kind': 'static',
'confidence': 1.0},
{'id': 206542,
'caller': 'litesearch.utils.FastEncodeImage.embed.lambda.0',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 206545,
'caller': 'litesearch.utils.FastEncodeMultimodal.__init__',
'callee': 'litesearch.utils.FastEncodeImage',
'kind': 'static',
'confidence': 1.0},
{'id': 206546,
'caller': 'litesearch.utils.FastEncodeMultimodal.__init__',
'callee': 'litesearch.utils.model',
'kind': 'static',
'confidence': 1.0},
{'id': 206547,
'caller': 'litesearch.utils.FastEncodeMultimodal.__init__',
'callee': 'litesearch.utils.FastEncodeImage.__init__',
'kind': 'static',
'confidence': 1.0},
{'id': 206549,
'caller': 'litesearch.utils.FastEncodeMultimodal.__init__',
'callee': 'litesearch.utils.download_model',
'kind': 'static',
'confidence': 1.0},
{'id': 206550,
'caller': 'litesearch.utils.FastEncodeMultimodal.__init__',
'callee': 'litesearch.utils.FastEncode.__init__',
'kind': 'static',
'confidence': 1.0},
{'id': 206551,
'caller': 'litesearch.utils.FastEncodeMultimodal.__init__',
'callee': 'litesearch.utils.FastEncode',
'kind': 'static',
'confidence': 1.0},
{'id': 206552,
'caller': 'litesearch.utils.FastEncodeMultimodal.encode_text',
'callee': 'litesearch.utils.FastEncode.encode',
'kind': 'static',
'confidence': 1.0},
{'id': 206553,
'caller': 'litesearch.utils.FastEncodeMultimodal.encode_text',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 206554,
'caller': 'litesearch.utils.FastEncodeMultimodal.encode_image',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 206555,
'caller': 'litesearch.utils.FastEncodeMultimodal.encode_image',
'callee': 'litesearch.utils.FastEncodeImage.embed',
'kind': 'static',
'confidence': 1.0},
{'id': 206557,
'caller': 'litesearch.utils.encode_pdf_texts',
'callee': 'litesearch.utils.FastEncode.encode_document',
'kind': 'static',
'confidence': 1.0},
{'id': 206558,
'caller': 'litesearch.utils.encode_pdf_texts',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 206559,
'caller': 'litesearch.utils.encode_pdf_texts',
'callee': 'litesearch.data.pdf_chunks',
'kind': 'static',
'confidence': 1.0},
{'id': 206560,
'caller': 'litesearch.utils.encode_pdf_images',
'callee': 'litesearch.utils.FastEncodeImage.embed',
'kind': 'static',
'confidence': 1.0},
{'id': 233441,
'caller': 'litesearch.cli.install',
'callee': 'litesearch.data.mv_skill_md',
'kind': 'static',
'confidence': 1.0},
{'id': 233442,
'caller': 'litesearch.cli.main',
'callee': 'litesearch.cli.CMDS',
'kind': 'static',
'confidence': 1.0},
{'id': 233443,
'caller': 'litesearch.core._dtype_suffix',
'callee': 'litesearch.core._dtype_suffixes',
'kind': 'static',
'confidence': 1.0},
{'id': 233451,
'caller': 'litesearch.core.get_store',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 233454,
'caller': 'litesearch.core.vec_search',
'callee': 'litesearch.core._dtype_suffix',
'kind': 'static',
'confidence': 1.0},
{'id': 233459,
'caller': 'litesearch.core.database',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 233465,
'caller': 'litesearch.core.search',
'callee': 'litesearch.core.rrf_merge',
'kind': 'static',
'confidence': 1.0},
{'id': 233497,
'caller': 'litesearch.data.pdf_chunks',
'callee': 'litesearch.data.chunk_markdown',
'kind': 'static',
'confidence': 1.0},
{'id': 233499,
'caller': 'litesearch.data.pdf_chunks',
'callee': 'litesearch.data.pdf_markdown',
'kind': 'static',
'confidence': 1.0},
{'id': 233502,
'caller': 'litesearch.data.pdf_chunks.genexpr.0',
'callee': 'litesearch.data.chunk_markdown',
'kind': 'static',
'confidence': 1.0},
{'id': 233509,
'caller': 'litesearch.data.pyparse',
'callee': 'litesearch.data.pyparse.is_allowed',
'kind': 'static',
'confidence': 1.0},
{'id': 233511,
'caller': 'litesearch.data.pyparse',
'callee': 'litesearch.data.pyparse.n2c',
'kind': 'static',
'confidence': 1.0},
{'id': 233514,
'caller': 'litesearch.data.pyparse.n2c',
'callee': 'litesearch.data.pyparse.meta',
'kind': 'static',
'confidence': 1.0},
{'id': 233516,
'caller': 'litesearch.data.pyparse.is_allowed',
'callee': 'litesearch.data.pyparse.is_mod',
'kind': 'static',
'confidence': 1.0},
{'id': 233517,
'caller': 'litesearch.data.pyparse.is_allowed',
'callee': 'litesearch.data.pyparse.is_assign',
'kind': 'static',
'confidence': 1.0},
{'id': 233518,
'caller': 'litesearch.data.pyparse.is_allowed',
'callee': 'litesearch.data.pyparse.is_p_mod',
'kind': 'static',
'confidence': 1.0},
{'id': 233520,
'caller': 'litesearch.data.ipynb_parse.lambda.0',
'callee': 'litesearch.data.ipynb_parse.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 233522,
'caller': 'litesearch.data.ipynb_parse',
'callee': 'litesearch.data.ipynb_parse.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 233525,
'caller': 'litesearch.data.non_py_sigs.lambda.0',
'callee': 'litesearch.data.non_py_sigs.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 233526,
'caller': 'litesearch.data.non_py_sigs',
'callee': 'litesearch.data.non_py_sigs.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 233531,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.pyparse',
'kind': 'static',
'confidence': 1.0},
{'id': 233532,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.ipynb_parse',
'kind': 'static',
'confidence': 1.0},
{'id': 233534,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.non_py_sigs',
'kind': 'static',
'confidence': 1.0},
{'id': 233535,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.chunk_markdown',
'kind': 'static',
'confidence': 1.0},
{'id': 233537,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.chunk_texts',
'kind': 'static',
'confidence': 1.0},
{'id': 233538,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.file_parse.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 233542,
'caller': 'litesearch.data.file_parse.lambda.0',
'callee': 'litesearch.data.file_parse.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 233543,
'caller': 'litesearch.data.file_parse.lambda.1',
'callee': 'litesearch.data.file_parse.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 233545,
'caller': 'litesearch.data.pkg2files',
'callee': 'litesearch.data.spec',
'kind': 'static',
'confidence': 1.0},
{'id': 233553,
'caller': 'litesearch.data.pkg2chunks',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 233554,
'caller': 'litesearch.data.pkg2chunks',
'callee': 'litesearch.data.pkg2files',
'kind': 'static',
'confidence': 1.0},
{'id': 233556,
'caller': 'litesearch.data.pkg2chunks',
'callee': 'litesearch.data.file_parse',
'kind': 'static',
'confidence': 1.0},
{'id': 233562,
'caller': 'litesearch.data.dir2chunks',
'callee': 'litesearch.data.file_parse',
'kind': 'static',
'confidence': 1.0},
{'id': 233564,
'caller': 'litesearch.data.dir2chunks',
'callee': 'litesearch.data.dir2files',
'kind': 'static',
'confidence': 1.0},
{'id': 233567,
'caller': 'litesearch.data.installed_packages',
'callee': 'litesearch.data.spec',
'kind': 'static',
'confidence': 1.0},
{'id': 233573,
'caller': 'litesearch.data.installed_packages',
'callee': 'litesearch.data.repo_root',
'kind': 'static',
'confidence': 1.0},
{'id': 233575,
'caller': 'litesearch.data.pre',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 233576,
'caller': 'litesearch.data.pre',
'callee': 'litesearch.data.add_wc',
'kind': 'static',
'confidence': 1.0},
{'id': 233577,
'caller': 'litesearch.data.pre',
'callee': 'litesearch.data.mk_wider',
'kind': 'static',
'confidence': 1.0},
{'id': 233578,
'caller': 'litesearch.data.pre',
'callee': 'litesearch.data.clean',
'kind': 'static',
'confidence': 1.0},
{'id': 233581,
'caller': 'litesearch.data.images_to_pdf',
'callee': 'litesearch.data.png_det',
'kind': 'static',
'confidence': 1.0},
{'id': 233582,
'caller': 'litesearch.data.images_to_pdf',
'callee': 'litesearch.data.img2png',
'kind': 'static',
'confidence': 1.0},
{'id': 233583,
'caller': 'litesearch.data.images_to_pdf.listcomp.0',
'callee': 'litesearch.data.png_det',
'kind': 'static',
'confidence': 1.0},
{'id': 233584,
'caller': 'litesearch.data.images_to_pdf.listcomp.0',
'callee': 'litesearch.data.img2png',
'kind': 'static',
'confidence': 1.0},
{'id': 233585,
'caller': 'litesearch.data.mv_skill_md',
'callee': 'litesearch.data.repo_root',
'kind': 'static',
'confidence': 1.0},
{'id': 233591,
'caller': 'litesearch.utils.FastEncode.__init__',
'callee': 'litesearch.utils.model',
'kind': 'static',
'confidence': 1.0},
{'id': 233592,
'caller': 'litesearch.utils.FastEncode.__init__',
'callee': 'litesearch.utils.download_model',
'kind': 'static',
'confidence': 1.0},
{'id': 233595,
'caller': 'litesearch.utils.FastEncode.__init__',
'callee': 'litesearch.utils.FastEncode._load_enc',
'kind': 'static',
'confidence': 1.0},
{'id': 233600,
'caller': 'litesearch.utils.FastEncode._load_enc',
'callee': 'litesearch.utils.FastEncode._load_tok',
'kind': 'static',
'confidence': 1.0},
{'id': 233601,
'caller': 'litesearch.utils.FastEncode._load_enc',
'callee': 'litesearch.utils.download_model',
'kind': 'static',
'confidence': 1.0},
{'id': 233603,
'caller': 'litesearch.utils.FastEncode._load_enc',
'callee': 'litesearch.utils.FastEncode._maybe_quantize',
'kind': 'static',
'confidence': 1.0},
{'id': 233604,
'caller': 'litesearch.utils.FastEncode._load_tok',
'callee': 'litesearch.utils.download_model',
'kind': 'static',
'confidence': 1.0},
{'id': 233608,
'caller': 'litesearch.utils.FastEncode._encode_batch',
'callee': 'litesearch.utils.FastEncode._load_enc',
'kind': 'static',
'confidence': 1.0},
{'id': 233609,
'caller': 'litesearch.utils.FastEncode._encode_batch',
'callee': 'litesearch.utils.FastEncode._mp',
'kind': 'static',
'confidence': 1.0},
{'id': 233610,
'caller': 'litesearch.utils.FastEncode._encode_batch',
'callee': 'litesearch.utils.FastEncode._enc',
'kind': 'static',
'confidence': 1.0},
{'id': 233612,
'caller': 'litesearch.utils.FastEncode.encode',
'callee': 'litesearch.utils.FastEncode._encode_batch',
'kind': 'static',
'confidence': 1.0},
{'id': 233613,
'caller': 'litesearch.utils.FastEncode.encode',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 233614,
'caller': 'litesearch.utils.FastEncode.encode',
'callee': 'litesearch.utils.FastEncode._load_enc',
'kind': 'static',
'confidence': 1.0},
{'id': 233617,
'caller': 'litesearch.utils.FastEncode.encode.lambda.0',
'callee': 'litesearch.utils.FastEncode._encode_batch',
'kind': 'static',
'confidence': 1.0},
{'id': 233618,
'caller': 'litesearch.utils.FastEncode.encode.lambda.0',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 233619,
'caller': 'litesearch.utils.FastEncode.encode_document',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 233621,
'caller': 'litesearch.utils.FastEncode.encode_document',
'callee': 'litesearch.utils.FastEncode.encode',
'kind': 'static',
'confidence': 1.0},
{'id': 233622,
'caller': 'litesearch.utils.FastEncode.encode_document',
'callee': 'litesearch.utils.FastEncode.__init__',
'kind': 'static',
'confidence': 1.0},
{'id': 233623,
'caller': 'litesearch.utils.FastEncode.encode_document.lambda.0',
'callee': 'litesearch.utils.FastEncode.__init__',
'kind': 'static',
'confidence': 1.0},
{'id': 233624,
'caller': 'litesearch.utils.FastEncode.encode_query',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 233626,
'caller': 'litesearch.utils.FastEncode.encode_query',
'callee': 'litesearch.utils.FastEncode.encode',
'kind': 'static',
'confidence': 1.0},
{'id': 233627,
'caller': 'litesearch.utils.FastEncode.encode_query',
'callee': 'litesearch.utils.FastEncode.__init__',
'kind': 'static',
'confidence': 1.0},
{'id': 233628,
'caller': 'litesearch.utils.FastEncode.encode_query.lambda.0',
'callee': 'litesearch.utils.FastEncode.__init__',
'kind': 'static',
'confidence': 1.0},
{'id': 233629,
'caller': 'litesearch.utils.download_model',
'callee': 'litesearch.utils.model',
'kind': 'static',
'confidence': 1.0},
{'id': 233633,
'caller': 'litesearch.utils.FastEncodeImage.__init__',
'callee': 'litesearch.utils.model',
'kind': 'static',
'confidence': 1.0},
{'id': 233634,
'caller': 'litesearch.utils.FastEncodeImage.__init__',
'callee': 'litesearch.utils.FastEncodeImage._load_enc',
'kind': 'static',
'confidence': 1.0},
{'id': 233635,
'caller': 'litesearch.utils.FastEncodeImage.__init__',
'callee': 'litesearch.utils.download_model',
'kind': 'static',
'confidence': 1.0},
{'id': 233637,
'caller': 'litesearch.utils.FastEncodeImage.__init__',
'callee': 'litesearch.utils.FastEncodeImage._load_processor',
'kind': 'static',
'confidence': 1.0},
{'id': 233639,
'caller': 'litesearch.utils.FastEncodeImage._load_enc',
'callee': 'litesearch.utils.download_model',
'kind': 'static',
'confidence': 1.0},
{'id': 233645,
'caller': 'litesearch.utils.FastEncodeImage._encode_batch',
'callee': 'litesearch.utils.FastEncodeImage._to_pil',
'kind': 'static',
'confidence': 1.0},
{'id': 233646,
'caller': 'litesearch.utils.FastEncodeImage._encode_batch',
'callee': 'litesearch.utils.FastEncodeImage._preprocess',
'kind': 'static',
'confidence': 1.0},
{'id': 233647,
'caller': 'litesearch.utils.FastEncodeImage._encode_batch',
'callee': 'litesearch.utils.FastEncodeImage._load_enc',
'kind': 'static',
'confidence': 1.0},
{'id': 233650,
'caller': 'litesearch.utils.FastEncodeImage.embed',
'callee': 'litesearch.utils.FastEncodeImage._encode_batch',
'kind': 'static',
'confidence': 1.0},
{'id': 233651,
'caller': 'litesearch.utils.FastEncodeImage.embed',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 233652,
'caller': 'litesearch.utils.FastEncodeImage.embed',
'callee': 'litesearch.utils.FastEncodeImage._load_enc',
'kind': 'static',
'confidence': 1.0},
{'id': 233655,
'caller': 'litesearch.utils.FastEncodeImage.embed.lambda.0',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 233656,
'caller': 'litesearch.utils.FastEncodeImage.embed.lambda.0',
'callee': 'litesearch.utils.FastEncodeImage._encode_batch',
'kind': 'static',
'confidence': 1.0},
{'id': 233659,
'caller': 'litesearch.utils.FastEncodeMultimodal.__init__',
'callee': 'litesearch.utils.model',
'kind': 'static',
'confidence': 1.0},
{'id': 233660,
'caller': 'litesearch.utils.FastEncodeMultimodal.__init__',
'callee': 'litesearch.utils.FastEncode',
'kind': 'static',
'confidence': 1.0},
{'id': 233661,
'caller': 'litesearch.utils.FastEncodeMultimodal.__init__',
'callee': 'litesearch.utils.download_model',
'kind': 'static',
'confidence': 1.0},
{'id': 233663,
'caller': 'litesearch.utils.FastEncodeMultimodal.__init__',
'callee': 'litesearch.utils.FastEncodeImage',
'kind': 'static',
'confidence': 1.0},
{'id': 233664,
'caller': 'litesearch.utils.FastEncodeMultimodal.__init__',
'callee': 'litesearch.utils.FastEncode.__init__',
'kind': 'static',
'confidence': 1.0},
{'id': 233665,
'caller': 'litesearch.utils.FastEncodeMultimodal.__init__',
'callee': 'litesearch.utils.FastEncodeImage.__init__',
'kind': 'static',
'confidence': 1.0},
{'id': 233666,
'caller': 'litesearch.utils.FastEncodeMultimodal.encode_text',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 233667,
'caller': 'litesearch.utils.FastEncodeMultimodal.encode_text',
'callee': 'litesearch.utils.FastEncode.encode',
'kind': 'static',
'confidence': 1.0},
{'id': 233668,
'caller': 'litesearch.utils.FastEncodeMultimodal.encode_image',
'callee': 'litesearch.utils.FastEncodeImage.embed',
'kind': 'static',
'confidence': 1.0},
{'id': 233669,
'caller': 'litesearch.utils.FastEncodeMultimodal.encode_image',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 233670,
'caller': 'litesearch.utils.encode_pdf_texts',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 233671,
'caller': 'litesearch.utils.encode_pdf_texts',
'callee': 'litesearch.data.pdf_chunks',
'kind': 'static',
'confidence': 1.0},
{'id': 233672,
'caller': 'litesearch.utils.encode_pdf_texts',
'callee': 'litesearch.utils.FastEncode.encode_document',
'kind': 'static',
'confidence': 1.0},
{'id': 233674,
'caller': 'litesearch.utils.encode_pdf_images',
'callee': 'litesearch.utils.FastEncodeImage.embed',
'kind': 'static',
'confidence': 1.0},
{'id': 333985,
'caller': 'litesearch.cli.install',
'callee': 'litesearch.data.mv_skill_md',
'kind': 'static',
'confidence': 1.0},
{'id': 333986,
'caller': 'litesearch.cli.main',
'callee': 'litesearch.cli.CMDS',
'kind': 'static',
'confidence': 1.0},
{'id': 333987,
'caller': 'litesearch.core._dtype_suffix',
'callee': 'litesearch.core._dtype_suffixes',
'kind': 'static',
'confidence': 1.0},
{'id': 333997,
'caller': 'litesearch.core.get_store',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 333999,
'caller': 'litesearch.core.vec_search',
'callee': 'litesearch.core._dtype_suffix',
'kind': 'static',
'confidence': 1.0},
{'id': 334006,
'caller': 'litesearch.core.database',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 334010,
'caller': 'litesearch.core.search',
'callee': 'litesearch.core.rrf_merge',
'kind': 'static',
'confidence': 1.0},
{'id': 334041,
'caller': 'litesearch.data.pdf_chunks',
'callee': 'litesearch.data.chunk_markdown',
'kind': 'static',
'confidence': 1.0},
{'id': 334043,
'caller': 'litesearch.data.pdf_chunks',
'callee': 'litesearch.data.pdf_markdown',
'kind': 'static',
'confidence': 1.0},
{'id': 334046,
'caller': 'litesearch.data.pdf_chunks.genexpr.0',
'callee': 'litesearch.data.chunk_markdown',
'kind': 'static',
'confidence': 1.0},
{'id': 334052,
'caller': 'litesearch.data.pyparse',
'callee': 'litesearch.data.pyparse.n2c',
'kind': 'static',
'confidence': 1.0},
{'id': 334054,
'caller': 'litesearch.data.pyparse',
'callee': 'litesearch.data.pyparse.is_allowed',
'kind': 'static',
'confidence': 1.0},
{'id': 334058,
'caller': 'litesearch.data.pyparse.n2c',
'callee': 'litesearch.data.pyparse.meta',
'kind': 'static',
'confidence': 1.0},
{'id': 334060,
'caller': 'litesearch.data.pyparse.is_allowed',
'callee': 'litesearch.data.pyparse.is_p_mod',
'kind': 'static',
'confidence': 1.0},
{'id': 334061,
'caller': 'litesearch.data.pyparse.is_allowed',
'callee': 'litesearch.data.pyparse.is_mod',
'kind': 'static',
'confidence': 1.0},
{'id': 334062,
'caller': 'litesearch.data.pyparse.is_allowed',
'callee': 'litesearch.data.pyparse.is_assign',
'kind': 'static',
'confidence': 1.0},
{'id': 334064,
'caller': 'litesearch.data.ipynb_parse.lambda.0',
'callee': 'litesearch.data.ipynb_parse.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 334067,
'caller': 'litesearch.data.ipynb_parse',
'callee': 'litesearch.data.ipynb_parse.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 334069,
'caller': 'litesearch.data.non_py_sigs.lambda.0',
'callee': 'litesearch.data.non_py_sigs.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 334072,
'caller': 'litesearch.data.non_py_sigs',
'callee': 'litesearch.data.non_py_sigs.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 334077,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.ipynb_parse',
'kind': 'static',
'confidence': 1.0},
{'id': 334079,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.file_parse.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 334081,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.pyparse',
'kind': 'static',
'confidence': 1.0},
{'id': 334082,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.chunk_markdown',
'kind': 'static',
'confidence': 1.0},
{'id': 334083,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.non_py_sigs',
'kind': 'static',
'confidence': 1.0},
{'id': 334084,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.chunk_texts',
'kind': 'static',
'confidence': 1.0},
{'id': 334086,
'caller': 'litesearch.data.file_parse.lambda.0',
'callee': 'litesearch.data.file_parse.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 334087,
'caller': 'litesearch.data.file_parse.lambda.1',
'callee': 'litesearch.data.file_parse.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 334089,
'caller': 'litesearch.data.pkg2files',
'callee': 'litesearch.data.spec',
'kind': 'static',
'confidence': 1.0},
{'id': 334097,
'caller': 'litesearch.data.pkg2chunks',
'callee': 'litesearch.data.file_parse',
'kind': 'static',
'confidence': 1.0},
{'id': 334099,
'caller': 'litesearch.data.pkg2chunks',
'callee': 'litesearch.data.pkg2files',
'kind': 'static',
'confidence': 1.0},
{'id': 334102,
'caller': 'litesearch.data.pkg2chunks',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 334105,
'caller': 'litesearch.data.dir2chunks',
'callee': 'litesearch.data.file_parse',
'kind': 'static',
'confidence': 1.0},
{'id': 334106,
'caller': 'litesearch.data.dir2chunks',
'callee': 'litesearch.data.dir2files',
'kind': 'static',
'confidence': 1.0},
{'id': 334112,
'caller': 'litesearch.data.installed_packages',
'callee': 'litesearch.data.repo_root',
'kind': 'static',
'confidence': 1.0},
{'id': 334117,
'caller': 'litesearch.data.installed_packages',
'callee': 'litesearch.data.spec',
'kind': 'static',
'confidence': 1.0},
{'id': 334119,
'caller': 'litesearch.data.pre',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 334120,
'caller': 'litesearch.data.pre',
'callee': 'litesearch.data.clean',
'kind': 'static',
'confidence': 1.0},
{'id': 334121,
'caller': 'litesearch.data.pre',
'callee': 'litesearch.data.add_wc',
'kind': 'static',
'confidence': 1.0},
{'id': 334122,
'caller': 'litesearch.data.pre',
'callee': 'litesearch.data.mk_wider',
'kind': 'static',
'confidence': 1.0},
{'id': 334125,
'caller': 'litesearch.data.images_to_pdf',
'callee': 'litesearch.data.img2png',
'kind': 'static',
'confidence': 1.0},
{'id': 334126,
'caller': 'litesearch.data.images_to_pdf',
'callee': 'litesearch.data.png_det',
'kind': 'static',
'confidence': 1.0},
{'id': 334127,
'caller': 'litesearch.data.images_to_pdf.listcomp.0',
'callee': 'litesearch.data.img2png',
'kind': 'static',
'confidence': 1.0},
{'id': 334128,
'caller': 'litesearch.data.images_to_pdf.listcomp.0',
'callee': 'litesearch.data.png_det',
'kind': 'static',
'confidence': 1.0},
{'id': 334129,
'caller': 'litesearch.data.mv_skill_md',
'callee': 'litesearch.data.repo_root',
'kind': 'static',
'confidence': 1.0},
{'id': 334134,
'caller': 'litesearch.utils.FastEncode.__init__',
'callee': 'litesearch.utils.model',
'kind': 'static',
'confidence': 1.0},
{'id': 334135,
'caller': 'litesearch.utils.FastEncode.__init__',
'callee': 'litesearch.utils.download_model',
'kind': 'static',
'confidence': 1.0},
{'id': 334139,
'caller': 'litesearch.utils.FastEncode.__init__',
'callee': 'litesearch.utils.FastEncode._load_enc',
'kind': 'static',
'confidence': 1.0},
{'id': 334143,
'caller': 'litesearch.utils.FastEncode._load_enc',
'callee': 'litesearch.utils.FastEncode._maybe_quantize',
'kind': 'static',
'confidence': 1.0},
{'id': 334145,
'caller': 'litesearch.utils.FastEncode._load_enc',
'callee': 'litesearch.utils.FastEncode._load_tok',
'kind': 'static',
'confidence': 1.0},
{'id': 334147,
'caller': 'litesearch.utils.FastEncode._load_enc',
'callee': 'litesearch.utils.download_model',
'kind': 'static',
'confidence': 1.0},
{'id': 334150,
'caller': 'litesearch.utils.FastEncode._load_tok',
'callee': 'litesearch.utils.download_model',
'kind': 'static',
'confidence': 1.0},
{'id': 334152,
'caller': 'litesearch.utils.FastEncode._encode_batch',
'callee': 'litesearch.utils.FastEncode._mp',
'kind': 'static',
'confidence': 1.0},
{'id': 334153,
'caller': 'litesearch.utils.FastEncode._encode_batch',
'callee': 'litesearch.utils.FastEncode._enc',
'kind': 'static',
'confidence': 1.0},
{'id': 334154,
'caller': 'litesearch.utils.FastEncode._encode_batch',
'callee': 'litesearch.utils.FastEncode._load_enc',
'kind': 'static',
'confidence': 1.0},
{'id': 334155,
'caller': 'litesearch.utils.FastEncode.encode',
'callee': 'litesearch.utils.FastEncode._load_enc',
'kind': 'static',
'confidence': 1.0},
{'id': 334158,
'caller': 'litesearch.utils.FastEncode.encode',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 334159,
'caller': 'litesearch.utils.FastEncode.encode',
'callee': 'litesearch.utils.FastEncode._encode_batch',
'kind': 'static',
'confidence': 1.0},
{'id': 334161,
'caller': 'litesearch.utils.FastEncode.encode.lambda.0',
'callee': 'litesearch.utils.FastEncode._encode_batch',
'kind': 'static',
'confidence': 1.0},
{'id': 334162,
'caller': 'litesearch.utils.FastEncode.encode.lambda.0',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 334163,
'caller': 'litesearch.utils.FastEncode.encode_document',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 334164,
'caller': 'litesearch.utils.FastEncode.encode_document',
'callee': 'litesearch.utils.FastEncode.encode',
'kind': 'static',
'confidence': 1.0},
{'id': 334165,
'caller': 'litesearch.utils.FastEncode.encode_document',
'callee': 'litesearch.utils.FastEncode.__init__',
'kind': 'static',
'confidence': 1.0},
{'id': 334167,
'caller': 'litesearch.utils.FastEncode.encode_document.lambda.0',
'callee': 'litesearch.utils.FastEncode.__init__',
'kind': 'static',
'confidence': 1.0},
{'id': 334168,
'caller': 'litesearch.utils.FastEncode.encode_query',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 334169,
'caller': 'litesearch.utils.FastEncode.encode_query',
'callee': 'litesearch.utils.FastEncode.encode',
'kind': 'static',
'confidence': 1.0},
{'id': 334170,
'caller': 'litesearch.utils.FastEncode.encode_query',
'callee': 'litesearch.utils.FastEncode.__init__',
'kind': 'static',
'confidence': 1.0},
{'id': 334172,
'caller': 'litesearch.utils.FastEncode.encode_query.lambda.0',
'callee': 'litesearch.utils.FastEncode.__init__',
'kind': 'static',
'confidence': 1.0},
{'id': 334173,
'caller': 'litesearch.utils.download_model',
'callee': 'litesearch.utils.model',
'kind': 'static',
'confidence': 1.0},
{'id': 334177,
'caller': 'litesearch.utils.FastEncodeImage.__init__',
'callee': 'litesearch.utils.download_model',
'kind': 'static',
'confidence': 1.0},
{'id': 334179,
'caller': 'litesearch.utils.FastEncodeImage.__init__',
'callee': 'litesearch.utils.FastEncodeImage._load_enc',
'kind': 'static',
'confidence': 1.0},
{'id': 334180,
'caller': 'litesearch.utils.FastEncodeImage.__init__',
'callee': 'litesearch.utils.FastEncodeImage._load_processor',
'kind': 'static',
'confidence': 1.0},
{'id': 334182,
'caller': 'litesearch.utils.FastEncodeImage.__init__',
'callee': 'litesearch.utils.model',
'kind': 'static',
'confidence': 1.0},
{'id': 334184,
'caller': 'litesearch.utils.FastEncodeImage._load_enc',
'callee': 'litesearch.utils.download_model',
'kind': 'static',
'confidence': 1.0},
{'id': 334189,
'caller': 'litesearch.utils.FastEncodeImage._encode_batch',
'callee': 'litesearch.utils.FastEncodeImage._preprocess',
'kind': 'static',
'confidence': 1.0},
{'id': 334190,
'caller': 'litesearch.utils.FastEncodeImage._encode_batch',
'callee': 'litesearch.utils.FastEncodeImage._to_pil',
'kind': 'static',
'confidence': 1.0},
{'id': 334192,
'caller': 'litesearch.utils.FastEncodeImage._encode_batch',
'callee': 'litesearch.utils.FastEncodeImage._load_enc',
'kind': 'static',
'confidence': 1.0},
{'id': 334195,
'caller': 'litesearch.utils.FastEncodeImage.embed',
'callee': 'litesearch.utils.FastEncodeImage._encode_batch',
'kind': 'static',
'confidence': 1.0},
{'id': 334196,
'caller': 'litesearch.utils.FastEncodeImage.embed',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 334197,
'caller': 'litesearch.utils.FastEncodeImage.embed',
'callee': 'litesearch.utils.FastEncodeImage._load_enc',
'kind': 'static',
'confidence': 1.0},
{'id': 334199,
'caller': 'litesearch.utils.FastEncodeImage.embed.lambda.0',
'callee': 'litesearch.utils.FastEncodeImage._encode_batch',
'kind': 'static',
'confidence': 1.0},
{'id': 334200,
'caller': 'litesearch.utils.FastEncodeImage.embed.lambda.0',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 334202,
'caller': 'litesearch.utils.FastEncodeMultimodal.__init__',
'callee': 'litesearch.utils.FastEncodeImage',
'kind': 'static',
'confidence': 1.0},
{'id': 334203,
'caller': 'litesearch.utils.FastEncodeMultimodal.__init__',
'callee': 'litesearch.utils.model',
'kind': 'static',
'confidence': 1.0},
{'id': 334204,
'caller': 'litesearch.utils.FastEncodeMultimodal.__init__',
'callee': 'litesearch.utils.FastEncodeImage.__init__',
'kind': 'static',
'confidence': 1.0},
{'id': 334205,
'caller': 'litesearch.utils.FastEncodeMultimodal.__init__',
'callee': 'litesearch.utils.download_model',
'kind': 'static',
'confidence': 1.0},
{'id': 334207,
'caller': 'litesearch.utils.FastEncodeMultimodal.__init__',
'callee': 'litesearch.utils.FastEncode',
'kind': 'static',
'confidence': 1.0},
{'id': 334208,
'caller': 'litesearch.utils.FastEncodeMultimodal.__init__',
'callee': 'litesearch.utils.FastEncode.__init__',
'kind': 'static',
'confidence': 1.0},
{'id': 334210,
'caller': 'litesearch.utils.FastEncodeMultimodal.encode_text',
'callee': 'litesearch.utils.FastEncode.encode',
'kind': 'static',
'confidence': 1.0},
{'id': 334211,
'caller': 'litesearch.utils.FastEncodeMultimodal.encode_text',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 334212,
'caller': 'litesearch.utils.FastEncodeMultimodal.encode_image',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 334213,
'caller': 'litesearch.utils.FastEncodeMultimodal.encode_image',
'callee': 'litesearch.utils.FastEncodeImage.embed',
'kind': 'static',
'confidence': 1.0},
{'id': 334214,
'caller': 'litesearch.utils.encode_pdf_texts',
'callee': 'litesearch.utils.FastEncode.encode_document',
'kind': 'static',
'confidence': 1.0},
{'id': 334215,
'caller': 'litesearch.utils.encode_pdf_texts',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 334217,
'caller': 'litesearch.utils.encode_pdf_texts',
'callee': 'litesearch.data.pdf_chunks',
'kind': 'static',
'confidence': 1.0},
{'id': 334218,
'caller': 'litesearch.utils.encode_pdf_images',
'callee': 'litesearch.utils.FastEncodeImage.embed',
'kind': 'static',
'confidence': 1.0},
{'id': 340038,
'caller': 'litesearch.cli.install',
'callee': 'litesearch.data.mv_skill_md',
'kind': 'static',
'confidence': 1.0},
{'id': 340039,
'caller': 'litesearch.cli.main',
'callee': 'litesearch.cli.CMDS',
'kind': 'static',
'confidence': 1.0},
{'id': 340040,
'caller': 'litesearch.core._dtype_suffix',
'callee': 'litesearch.core._dtype_suffixes',
'kind': 'static',
'confidence': 1.0},
{'id': 340048,
'caller': 'litesearch.core.get_store',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 340053,
'caller': 'litesearch.core.vec_search',
'callee': 'litesearch.core._dtype_suffix',
'kind': 'static',
'confidence': 1.0},
{'id': 340056,
'caller': 'litesearch.core.database',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 340063,
'caller': 'litesearch.core.search',
'callee': 'litesearch.core.rrf_merge',
'kind': 'static',
'confidence': 1.0},
{'id': 340095,
'caller': 'litesearch.data.pdf_chunks',
'callee': 'litesearch.data.pdf_markdown',
'kind': 'static',
'confidence': 1.0},
{'id': 340098,
'caller': 'litesearch.data.pdf_chunks',
'callee': 'litesearch.data.chunk_markdown',
'kind': 'static',
'confidence': 1.0},
{'id': 340099,
'caller': 'litesearch.data.pdf_chunks.genexpr.0',
'callee': 'litesearch.data.chunk_markdown',
'kind': 'static',
'confidence': 1.0},
{'id': 340105,
'caller': 'litesearch.data.pyparse',
'callee': 'litesearch.data.pyparse.n2c',
'kind': 'static',
'confidence': 1.0},
{'id': 340107,
'caller': 'litesearch.data.pyparse',
'callee': 'litesearch.data.pyparse.is_allowed',
'kind': 'static',
'confidence': 1.0},
{'id': 340112,
'caller': 'litesearch.data.pyparse.n2c',
'callee': 'litesearch.data.pyparse.meta',
'kind': 'static',
'confidence': 1.0},
{'id': 340113,
'caller': 'litesearch.data.pyparse.is_allowed',
'callee': 'litesearch.data.pyparse.is_p_mod',
'kind': 'static',
'confidence': 1.0},
{'id': 340114,
'caller': 'litesearch.data.pyparse.is_allowed',
'callee': 'litesearch.data.pyparse.is_assign',
'kind': 'static',
'confidence': 1.0},
{'id': 340115,
'caller': 'litesearch.data.pyparse.is_allowed',
'callee': 'litesearch.data.pyparse.is_mod',
'kind': 'static',
'confidence': 1.0},
{'id': 340117,
'caller': 'litesearch.data.ipynb_parse.lambda.0',
'callee': 'litesearch.data.ipynb_parse.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 340118,
'caller': 'litesearch.data.ipynb_parse',
'callee': 'litesearch.data.ipynb_parse.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 340122,
'caller': 'litesearch.data.non_py_sigs.lambda.0',
'callee': 'litesearch.data.non_py_sigs.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 340123,
'caller': 'litesearch.data.non_py_sigs',
'callee': 'litesearch.data.non_py_sigs.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 340129,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.file_parse.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 340131,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.chunk_markdown',
'kind': 'static',
'confidence': 1.0},
{'id': 340132,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.chunk_texts',
'kind': 'static',
'confidence': 1.0},
{'id': 340133,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.non_py_sigs',
'kind': 'static',
'confidence': 1.0},
{'id': 340136,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.pyparse',
'kind': 'static',
'confidence': 1.0},
{'id': 340137,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.ipynb_parse',
'kind': 'static',
'confidence': 1.0},
{'id': 340139,
'caller': 'litesearch.data.file_parse.lambda.0',
'callee': 'litesearch.data.file_parse.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 340140,
'caller': 'litesearch.data.file_parse.lambda.1',
'callee': 'litesearch.data.file_parse.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 340145,
'caller': 'litesearch.data.pkg2files',
'callee': 'litesearch.data.spec',
'kind': 'static',
'confidence': 1.0},
{'id': 340150,
'caller': 'litesearch.data.pkg2chunks',
'callee': 'litesearch.data.file_parse',
'kind': 'static',
'confidence': 1.0},
{'id': 340151,
'caller': 'litesearch.data.pkg2chunks',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 340152,
'caller': 'litesearch.data.pkg2chunks',
'callee': 'litesearch.data.pkg2files',
'kind': 'static',
'confidence': 1.0},
{'id': 340158,
'caller': 'litesearch.data.dir2chunks',
'callee': 'litesearch.data.file_parse',
'kind': 'static',
'confidence': 1.0},
{'id': 340161,
'caller': 'litesearch.data.dir2chunks',
'callee': 'litesearch.data.dir2files',
'kind': 'static',
'confidence': 1.0},
{'id': 340164,
'caller': 'litesearch.data.installed_packages',
'callee': 'litesearch.data.repo_root',
'kind': 'static',
'confidence': 1.0},
{'id': 340169,
'caller': 'litesearch.data.installed_packages',
'callee': 'litesearch.data.spec',
'kind': 'static',
'confidence': 1.0},
{'id': 340172,
'caller': 'litesearch.data.pre',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 340173,
'caller': 'litesearch.data.pre',
'callee': 'litesearch.data.mk_wider',
'kind': 'static',
'confidence': 1.0},
{'id': 340174,
'caller': 'litesearch.data.pre',
'callee': 'litesearch.data.add_wc',
'kind': 'static',
'confidence': 1.0},
{'id': 340175,
'caller': 'litesearch.data.pre',
'callee': 'litesearch.data.clean',
'kind': 'static',
'confidence': 1.0},
{'id': 340178,
'caller': 'litesearch.data.images_to_pdf',
'callee': 'litesearch.data.img2png',
'kind': 'static',
'confidence': 1.0},
{'id': 340179,
'caller': 'litesearch.data.images_to_pdf',
'callee': 'litesearch.data.png_det',
'kind': 'static',
'confidence': 1.0},
{'id': 340180,
'caller': 'litesearch.data.images_to_pdf.listcomp.0',
'callee': 'litesearch.data.img2png',
'kind': 'static',
'confidence': 1.0},
{'id': 340181,
'caller': 'litesearch.data.images_to_pdf.listcomp.0',
'callee': 'litesearch.data.png_det',
'kind': 'static',
'confidence': 1.0},
{'id': 340182,
'caller': 'litesearch.data.mv_skill_md',
'callee': 'litesearch.data.repo_root',
'kind': 'static',
'confidence': 1.0},
{'id': 340187,
'caller': 'litesearch.utils.FastEncode.__init__',
'callee': 'litesearch.utils.FastEncode._load_enc',
'kind': 'static',
'confidence': 1.0},
{'id': 340188,
'caller': 'litesearch.utils.FastEncode.__init__',
'callee': 'litesearch.utils.download_model',
'kind': 'static',
'confidence': 1.0},
{'id': 340192,
'caller': 'litesearch.utils.FastEncode.__init__',
'callee': 'litesearch.utils.model',
'kind': 'static',
'confidence': 1.0},
{'id': 340196,
'caller': 'litesearch.utils.FastEncode._load_enc',
'callee': 'litesearch.utils.FastEncode._load_tok',
'kind': 'static',
'confidence': 1.0},
{'id': 340198,
'caller': 'litesearch.utils.FastEncode._load_enc',
'callee': 'litesearch.utils.download_model',
'kind': 'static',
'confidence': 1.0},
{'id': 340200,
'caller': 'litesearch.utils.FastEncode._load_enc',
'callee': 'litesearch.utils.FastEncode._maybe_quantize',
'kind': 'static',
'confidence': 1.0},
{'id': 340201,
'caller': 'litesearch.utils.FastEncode._load_tok',
'callee': 'litesearch.utils.download_model',
'kind': 'static',
'confidence': 1.0},
{'id': 340205,
'caller': 'litesearch.utils.FastEncode._encode_batch',
'callee': 'litesearch.utils.FastEncode._load_enc',
'kind': 'static',
'confidence': 1.0},
{'id': 340206,
'caller': 'litesearch.utils.FastEncode._encode_batch',
'callee': 'litesearch.utils.FastEncode._enc',
'kind': 'static',
'confidence': 1.0},
{'id': 340207,
'caller': 'litesearch.utils.FastEncode._encode_batch',
'callee': 'litesearch.utils.FastEncode._mp',
'kind': 'static',
'confidence': 1.0},
{'id': 340208,
'caller': 'litesearch.utils.FastEncode.encode',
'callee': 'litesearch.utils.FastEncode._load_enc',
'kind': 'static',
'confidence': 1.0},
{'id': 340211,
'caller': 'litesearch.utils.FastEncode.encode',
'callee': 'litesearch.utils.FastEncode._encode_batch',
'kind': 'static',
'confidence': 1.0},
{'id': 340213,
'caller': 'litesearch.utils.FastEncode.encode',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 340214,
'caller': 'litesearch.utils.FastEncode.encode.lambda.0',
'callee': 'litesearch.utils.FastEncode._encode_batch',
'kind': 'static',
'confidence': 1.0},
{'id': 340215,
'caller': 'litesearch.utils.FastEncode.encode.lambda.0',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 340216,
'caller': 'litesearch.utils.FastEncode.encode_document',
'callee': 'litesearch.utils.FastEncode.encode',
'kind': 'static',
'confidence': 1.0},
{'id': 340217,
'caller': 'litesearch.utils.FastEncode.encode_document',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 340218,
'caller': 'litesearch.utils.FastEncode.encode_document',
'callee': 'litesearch.utils.FastEncode.__init__',
'kind': 'static',
'confidence': 1.0},
{'id': 340220,
'caller': 'litesearch.utils.FastEncode.encode_document.lambda.0',
'callee': 'litesearch.utils.FastEncode.__init__',
'kind': 'static',
'confidence': 1.0},
{'id': 340221,
'caller': 'litesearch.utils.FastEncode.encode_query',
'callee': 'litesearch.utils.FastEncode.encode',
'kind': 'static',
'confidence': 1.0},
{'id': 340222,
'caller': 'litesearch.utils.FastEncode.encode_query',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 340223,
'caller': 'litesearch.utils.FastEncode.encode_query',
'callee': 'litesearch.utils.FastEncode.__init__',
'kind': 'static',
'confidence': 1.0},
{'id': 340225,
'caller': 'litesearch.utils.FastEncode.encode_query.lambda.0',
'callee': 'litesearch.utils.FastEncode.__init__',
'kind': 'static',
'confidence': 1.0},
{'id': 340228,
'caller': 'litesearch.utils.download_model',
'callee': 'litesearch.utils.model',
'kind': 'static',
'confidence': 1.0},
{'id': 340231,
'caller': 'litesearch.utils.FastEncodeImage.__init__',
'callee': 'litesearch.utils.FastEncodeImage._load_enc',
'kind': 'static',
'confidence': 1.0},
{'id': 340232,
'caller': 'litesearch.utils.FastEncodeImage.__init__',
'callee': 'litesearch.utils.download_model',
'kind': 'static',
'confidence': 1.0},
{'id': 340233,
'caller': 'litesearch.utils.FastEncodeImage.__init__',
'callee': 'litesearch.utils.FastEncodeImage._load_processor',
'kind': 'static',
'confidence': 1.0},
{'id': 340235,
'caller': 'litesearch.utils.FastEncodeImage.__init__',
'callee': 'litesearch.utils.model',
'kind': 'static',
'confidence': 1.0},
{'id': 340236,
'caller': 'litesearch.utils.FastEncodeImage._load_enc',
'callee': 'litesearch.utils.download_model',
'kind': 'static',
'confidence': 1.0},
{'id': 340242,
'caller': 'litesearch.utils.FastEncodeImage._encode_batch',
'callee': 'litesearch.utils.FastEncodeImage._load_enc',
'kind': 'static',
'confidence': 1.0},
{'id': 340244,
'caller': 'litesearch.utils.FastEncodeImage._encode_batch',
'callee': 'litesearch.utils.FastEncodeImage._preprocess',
'kind': 'static',
'confidence': 1.0},
{'id': 340245,
'caller': 'litesearch.utils.FastEncodeImage._encode_batch',
'callee': 'litesearch.utils.FastEncodeImage._to_pil',
'kind': 'static',
'confidence': 1.0},
{'id': 340246,
'caller': 'litesearch.utils.FastEncodeImage.embed',
'callee': 'litesearch.utils.FastEncodeImage._load_enc',
'kind': 'static',
'confidence': 1.0},
{'id': 340249,
'caller': 'litesearch.utils.FastEncodeImage.embed',
'callee': 'litesearch.utils.FastEncodeImage._encode_batch',
'kind': 'static',
'confidence': 1.0},
{'id': 340251,
'caller': 'litesearch.utils.FastEncodeImage.embed',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 340252,
'caller': 'litesearch.utils.FastEncodeImage.embed.lambda.0',
'callee': 'litesearch.utils.FastEncodeImage._encode_batch',
'kind': 'static',
'confidence': 1.0},
{'id': 340253,
'caller': 'litesearch.utils.FastEncodeImage.embed.lambda.0',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 340255,
'caller': 'litesearch.utils.FastEncodeMultimodal.__init__',
'callee': 'litesearch.utils.download_model',
'kind': 'static',
'confidence': 1.0},
{'id': 340257,
'caller': 'litesearch.utils.FastEncodeMultimodal.__init__',
'callee': 'litesearch.utils.FastEncode.__init__',
'kind': 'static',
'confidence': 1.0},
{'id': 340258,
'caller': 'litesearch.utils.FastEncodeMultimodal.__init__',
'callee': 'litesearch.utils.FastEncode',
'kind': 'static',
'confidence': 1.0},
{'id': 340259,
'caller': 'litesearch.utils.FastEncodeMultimodal.__init__',
'callee': 'litesearch.utils.FastEncodeImage',
'kind': 'static',
'confidence': 1.0},
{'id': 340261,
'caller': 'litesearch.utils.FastEncodeMultimodal.__init__',
'callee': 'litesearch.utils.FastEncodeImage.__init__',
'kind': 'static',
'confidence': 1.0},
{'id': 340262,
'caller': 'litesearch.utils.FastEncodeMultimodal.__init__',
'callee': 'litesearch.utils.model',
'kind': 'static',
'confidence': 1.0},
{'id': 340263,
'caller': 'litesearch.utils.FastEncodeMultimodal.encode_text',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 340264,
'caller': 'litesearch.utils.FastEncodeMultimodal.encode_text',
'callee': 'litesearch.utils.FastEncode.encode',
'kind': 'static',
'confidence': 1.0},
{'id': 340265,
'caller': 'litesearch.utils.FastEncodeMultimodal.encode_image',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 340266,
'caller': 'litesearch.utils.FastEncodeMultimodal.encode_image',
'callee': 'litesearch.utils.FastEncodeImage.embed',
'kind': 'static',
'confidence': 1.0},
{'id': 340267,
'caller': 'litesearch.utils.encode_pdf_texts',
'callee': 'litesearch.utils.FastEncode.encode_document',
'kind': 'static',
'confidence': 1.0},
{'id': 340268,
'caller': 'litesearch.utils.encode_pdf_texts',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 340269,
'caller': 'litesearch.utils.encode_pdf_texts',
'callee': 'litesearch.data.pdf_chunks',
'kind': 'static',
'confidence': 1.0},
{'id': 340272,
'caller': 'litesearch.utils.encode_pdf_images',
'callee': 'litesearch.utils.FastEncodeImage.embed',
'kind': 'static',
'confidence': 1.0},
{'id': 346090,
'caller': 'litesearch.cli.install',
'callee': 'litesearch.data.mv_skill_md',
'kind': 'static',
'confidence': 1.0},
{'id': 346092,
'caller': 'litesearch.cli.main',
'callee': 'litesearch.cli.CMDS',
'kind': 'static',
'confidence': 1.0},
{'id': 346093,
'caller': 'litesearch.core._dtype_suffix',
'callee': 'litesearch.core._dtype_suffixes',
'kind': 'static',
'confidence': 1.0},
{'id': 346102,
'caller': 'litesearch.core.get_store',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 346107,
'caller': 'litesearch.core.vec_search',
'callee': 'litesearch.core._dtype_suffix',
'kind': 'static',
'confidence': 1.0},
{'id': 346109,
'caller': 'litesearch.core.database',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 346113,
'caller': 'litesearch.core.search',
'callee': 'litesearch.core.rrf_merge',
'kind': 'static',
'confidence': 1.0},
{'id': 346146,
'caller': 'litesearch.data.pdf_chunks',
'callee': 'litesearch.data.chunk_markdown',
'kind': 'static',
'confidence': 1.0},
{'id': 346150,
'caller': 'litesearch.data.pdf_chunks',
'callee': 'litesearch.data.pdf_markdown',
'kind': 'static',
'confidence': 1.0},
{'id': 346152,
'caller': 'litesearch.data.pdf_chunks.genexpr.0',
'callee': 'litesearch.data.chunk_markdown',
'kind': 'static',
'confidence': 1.0},
{'id': 346158,
'caller': 'litesearch.data.pyparse',
'callee': 'litesearch.data.pyparse.is_allowed',
'kind': 'static',
'confidence': 1.0},
{'id': 346159,
'caller': 'litesearch.data.pyparse',
'callee': 'litesearch.data.pyparse.n2c',
'kind': 'static',
'confidence': 1.0},
{'id': 346164,
'caller': 'litesearch.data.pyparse.n2c',
'callee': 'litesearch.data.pyparse.meta',
'kind': 'static',
'confidence': 1.0},
{'id': 346166,
'caller': 'litesearch.data.pyparse.is_allowed',
'callee': 'litesearch.data.pyparse.is_assign',
'kind': 'static',
'confidence': 1.0},
{'id': 346167,
'caller': 'litesearch.data.pyparse.is_allowed',
'callee': 'litesearch.data.pyparse.is_p_mod',
'kind': 'static',
'confidence': 1.0},
{'id': 346168,
'caller': 'litesearch.data.pyparse.is_allowed',
'callee': 'litesearch.data.pyparse.is_mod',
'kind': 'static',
'confidence': 1.0},
{'id': 346170,
'caller': 'litesearch.data.ipynb_parse.lambda.0',
'callee': 'litesearch.data.ipynb_parse.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 346172,
'caller': 'litesearch.data.ipynb_parse',
'callee': 'litesearch.data.ipynb_parse.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 346175,
'caller': 'litesearch.data.non_py_sigs.lambda.0',
'callee': 'litesearch.data.non_py_sigs.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 346178,
'caller': 'litesearch.data.non_py_sigs',
'callee': 'litesearch.data.non_py_sigs.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 346184,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.chunk_markdown',
'kind': 'static',
'confidence': 1.0},
{'id': 346185,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.chunk_texts',
'kind': 'static',
'confidence': 1.0},
{'id': 346186,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.pyparse',
'kind': 'static',
'confidence': 1.0},
{'id': 346187,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.ipynb_parse',
'kind': 'static',
'confidence': 1.0},
{'id': 346188,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.non_py_sigs',
'kind': 'static',
'confidence': 1.0},
{'id': 346190,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.file_parse.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 346192,
'caller': 'litesearch.data.file_parse.lambda.0',
'callee': 'litesearch.data.file_parse.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 346193,
'caller': 'litesearch.data.file_parse.lambda.1',
'callee': 'litesearch.data.file_parse.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 346195,
'caller': 'litesearch.data.pkg2files',
'callee': 'litesearch.data.spec',
'kind': 'static',
'confidence': 1.0},
{'id': 346206,
'caller': 'litesearch.data.pkg2chunks',
'callee': 'litesearch.data.file_parse',
'kind': 'static',
'confidence': 1.0},
{'id': 346207,
'caller': 'litesearch.data.pkg2chunks',
'callee': 'litesearch.data.pkg2files',
'kind': 'static',
'confidence': 1.0},
{'id': 346208,
'caller': 'litesearch.data.pkg2chunks',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 346211,
'caller': 'litesearch.data.dir2chunks',
'callee': 'litesearch.data.dir2files',
'kind': 'static',
'confidence': 1.0},
{'id': 346213,
'caller': 'litesearch.data.dir2chunks',
'callee': 'litesearch.data.file_parse',
'kind': 'static',
'confidence': 1.0},
{'id': 346219,
'caller': 'litesearch.data.installed_packages',
'callee': 'litesearch.data.repo_root',
'kind': 'static',
'confidence': 1.0},
{'id': 346221,
'caller': 'litesearch.data.installed_packages',
'callee': 'litesearch.data.spec',
'kind': 'static',
'confidence': 1.0},
{'id': 346225,
'caller': 'litesearch.data.pre',
'callee': 'litesearch.data.mk_wider',
'kind': 'static',
'confidence': 1.0},
{'id': 346226,
'caller': 'litesearch.data.pre',
'callee': 'litesearch.data.clean',
'kind': 'static',
'confidence': 1.0},
{'id': 346227,
'caller': 'litesearch.data.pre',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 346228,
'caller': 'litesearch.data.pre',
'callee': 'litesearch.data.add_wc',
'kind': 'static',
'confidence': 1.0},
{'id': 346231,
'caller': 'litesearch.data.images_to_pdf',
'callee': 'litesearch.data.img2png',
'kind': 'static',
'confidence': 1.0},
{'id': 346232,
'caller': 'litesearch.data.images_to_pdf',
'callee': 'litesearch.data.png_det',
'kind': 'static',
'confidence': 1.0},
{'id': 346233,
'caller': 'litesearch.data.images_to_pdf.listcomp.0',
'callee': 'litesearch.data.png_det',
'kind': 'static',
'confidence': 1.0},
{'id': 346234,
'caller': 'litesearch.data.images_to_pdf.listcomp.0',
'callee': 'litesearch.data.img2png',
'kind': 'static',
'confidence': 1.0},
{'id': 346236,
'caller': 'litesearch.data.mv_skill_md',
'callee': 'litesearch.data.repo_root',
'kind': 'static',
'confidence': 1.0},
{'id': 346242,
'caller': 'litesearch.utils.FastEncode.__init__',
'callee': 'litesearch.utils.model',
'kind': 'static',
'confidence': 1.0},
{'id': 346243,
'caller': 'litesearch.utils.FastEncode.__init__',
'callee': 'litesearch.utils.FastEncode._load_enc',
'kind': 'static',
'confidence': 1.0},
{'id': 346244,
'caller': 'litesearch.utils.FastEncode.__init__',
'callee': 'litesearch.utils.download_model',
'kind': 'static',
'confidence': 1.0},
{'id': 346249,
'caller': 'litesearch.utils.FastEncode._load_enc',
'callee': 'litesearch.utils.FastEncode._maybe_quantize',
'kind': 'static',
'confidence': 1.0},
{'id': 346250,
'caller': 'litesearch.utils.FastEncode._load_enc',
'callee': 'litesearch.utils.FastEncode._load_tok',
'kind': 'static',
'confidence': 1.0},
{'id': 346252,
'caller': 'litesearch.utils.FastEncode._load_enc',
'callee': 'litesearch.utils.download_model',
'kind': 'static',
'confidence': 1.0},
{'id': 346256,
'caller': 'litesearch.utils.FastEncode._load_tok',
'callee': 'litesearch.utils.download_model',
'kind': 'static',
'confidence': 1.0},
{'id': 346258,
'caller': 'litesearch.utils.FastEncode._encode_batch',
'callee': 'litesearch.utils.FastEncode._enc',
'kind': 'static',
'confidence': 1.0},
{'id': 346259,
'caller': 'litesearch.utils.FastEncode._encode_batch',
'callee': 'litesearch.utils.FastEncode._load_enc',
'kind': 'static',
'confidence': 1.0},
{'id': 346260,
'caller': 'litesearch.utils.FastEncode._encode_batch',
'callee': 'litesearch.utils.FastEncode._mp',
'kind': 'static',
'confidence': 1.0},
{'id': 346263,
'caller': 'litesearch.utils.FastEncode.encode',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 346264,
'caller': 'litesearch.utils.FastEncode.encode',
'callee': 'litesearch.utils.FastEncode._encode_batch',
'kind': 'static',
'confidence': 1.0},
{'id': 346266,
'caller': 'litesearch.utils.FastEncode.encode',
'callee': 'litesearch.utils.FastEncode._load_enc',
'kind': 'static',
'confidence': 1.0},
{'id': 346267,
'caller': 'litesearch.utils.FastEncode.encode.lambda.0',
'callee': 'litesearch.utils.FastEncode._encode_batch',
'kind': 'static',
'confidence': 1.0},
{'id': 346268,
'caller': 'litesearch.utils.FastEncode.encode.lambda.0',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 346269,
'caller': 'litesearch.utils.FastEncode.encode_document',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 346270,
'caller': 'litesearch.utils.FastEncode.encode_document',
'callee': 'litesearch.utils.FastEncode.__init__',
'kind': 'static',
'confidence': 1.0},
{'id': 346271,
'caller': 'litesearch.utils.FastEncode.encode_document',
'callee': 'litesearch.utils.FastEncode.encode',
'kind': 'static',
'confidence': 1.0},
{'id': 346273,
'caller': 'litesearch.utils.FastEncode.encode_document.lambda.0',
'callee': 'litesearch.utils.FastEncode.__init__',
'kind': 'static',
'confidence': 1.0},
{'id': 346274,
'caller': 'litesearch.utils.FastEncode.encode_query',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 346275,
'caller': 'litesearch.utils.FastEncode.encode_query',
'callee': 'litesearch.utils.FastEncode.__init__',
'kind': 'static',
'confidence': 1.0},
{'id': 346276,
'caller': 'litesearch.utils.FastEncode.encode_query',
'callee': 'litesearch.utils.FastEncode.encode',
'kind': 'static',
'confidence': 1.0},
{'id': 346278,
'caller': 'litesearch.utils.FastEncode.encode_query.lambda.0',
'callee': 'litesearch.utils.FastEncode.__init__',
'kind': 'static',
'confidence': 1.0},
{'id': 346279,
'caller': 'litesearch.utils.download_model',
'callee': 'litesearch.utils.model',
'kind': 'static',
'confidence': 1.0},
{'id': 346284,
'caller': 'litesearch.utils.FastEncodeImage.__init__',
'callee': 'litesearch.utils.model',
'kind': 'static',
'confidence': 1.0},
{'id': 346285,
'caller': 'litesearch.utils.FastEncodeImage.__init__',
'callee': 'litesearch.utils.FastEncodeImage._load_enc',
'kind': 'static',
'confidence': 1.0},
{'id': 346286,
'caller': 'litesearch.utils.FastEncodeImage.__init__',
'callee': 'litesearch.utils.download_model',
'kind': 'static',
'confidence': 1.0},
{'id': 346287,
'caller': 'litesearch.utils.FastEncodeImage.__init__',
'callee': 'litesearch.utils.FastEncodeImage._load_processor',
'kind': 'static',
'confidence': 1.0},
{'id': 346290,
'caller': 'litesearch.utils.FastEncodeImage._load_enc',
'callee': 'litesearch.utils.download_model',
'kind': 'static',
'confidence': 1.0},
{'id': 346295,
'caller': 'litesearch.utils.FastEncodeImage._encode_batch',
'callee': 'litesearch.utils.FastEncodeImage._load_enc',
'kind': 'static',
'confidence': 1.0},
{'id': 346296,
'caller': 'litesearch.utils.FastEncodeImage._encode_batch',
'callee': 'litesearch.utils.FastEncodeImage._to_pil',
'kind': 'static',
'confidence': 1.0},
{'id': 346297,
'caller': 'litesearch.utils.FastEncodeImage._encode_batch',
'callee': 'litesearch.utils.FastEncodeImage._preprocess',
'kind': 'static',
'confidence': 1.0},
{'id': 346300,
'caller': 'litesearch.utils.FastEncodeImage.embed',
'callee': 'litesearch.utils.FastEncodeImage._load_enc',
'kind': 'static',
'confidence': 1.0},
{'id': 346302,
'caller': 'litesearch.utils.FastEncodeImage.embed',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 346304,
'caller': 'litesearch.utils.FastEncodeImage.embed',
'callee': 'litesearch.utils.FastEncodeImage._encode_batch',
'kind': 'static',
'confidence': 1.0},
{'id': 346305,
'caller': 'litesearch.utils.FastEncodeImage.embed.lambda.0',
'callee': 'litesearch.utils.FastEncodeImage._encode_batch',
'kind': 'static',
'confidence': 1.0},
{'id': 346306,
'caller': 'litesearch.utils.FastEncodeImage.embed.lambda.0',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 346309,
'caller': 'litesearch.utils.FastEncodeMultimodal.__init__',
'callee': 'litesearch.utils.FastEncode',
'kind': 'static',
'confidence': 1.0},
{'id': 346310,
'caller': 'litesearch.utils.FastEncodeMultimodal.__init__',
'callee': 'litesearch.utils.model',
'kind': 'static',
'confidence': 1.0},
{'id': 346311,
'caller': 'litesearch.utils.FastEncodeMultimodal.__init__',
'callee': 'litesearch.utils.FastEncodeImage',
'kind': 'static',
'confidence': 1.0},
{'id': 346312,
'caller': 'litesearch.utils.FastEncodeMultimodal.__init__',
'callee': 'litesearch.utils.FastEncode.__init__',
'kind': 'static',
'confidence': 1.0},
{'id': 346313,
'caller': 'litesearch.utils.FastEncodeMultimodal.__init__',
'callee': 'litesearch.utils.FastEncodeImage.__init__',
'kind': 'static',
'confidence': 1.0},
{'id': 346314,
'caller': 'litesearch.utils.FastEncodeMultimodal.__init__',
'callee': 'litesearch.utils.download_model',
'kind': 'static',
'confidence': 1.0},
{'id': 346316,
'caller': 'litesearch.utils.FastEncodeMultimodal.encode_text',
'callee': 'litesearch.utils.FastEncode.encode',
'kind': 'static',
'confidence': 1.0},
{'id': 346317,
'caller': 'litesearch.utils.FastEncodeMultimodal.encode_text',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 346318,
'caller': 'litesearch.utils.FastEncodeMultimodal.encode_image',
'callee': 'litesearch.utils.FastEncodeImage.embed',
'kind': 'static',
'confidence': 1.0},
{'id': 346319,
'caller': 'litesearch.utils.FastEncodeMultimodal.encode_image',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 346320,
'caller': 'litesearch.utils.encode_pdf_texts',
'callee': 'litesearch.data.pdf_chunks',
'kind': 'static',
'confidence': 1.0},
{'id': 346321,
'caller': 'litesearch.utils.encode_pdf_texts',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 346322,
'caller': 'litesearch.utils.encode_pdf_texts',
'callee': 'litesearch.utils.FastEncode.encode_document',
'kind': 'static',
'confidence': 1.0},
{'id': 346325,
'caller': 'litesearch.utils.encode_pdf_images',
'callee': 'litesearch.utils.FastEncodeImage.embed',
'kind': 'static',
'confidence': 1.0},
{'id': 357962,
'caller': 'litesearch.cli.install',
'callee': 'litesearch.data.mv_skill_md',
'kind': 'static',
'confidence': 1.0},
{'id': 357964,
'caller': 'litesearch.cli.main',
'callee': 'litesearch.cli.CMDS',
'kind': 'static',
'confidence': 1.0},
{'id': 357965,
'caller': 'litesearch.core._dtype_suffix',
'callee': 'litesearch.core._dtype_suffixes',
'kind': 'static',
'confidence': 1.0},
{'id': 357974,
'caller': 'litesearch.core.get_store',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 357978,
'caller': 'litesearch.core.vec_search',
'callee': 'litesearch.core._dtype_suffix',
'kind': 'static',
'confidence': 1.0},
{'id': 357981,
'caller': 'litesearch.core.database',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 357986,
'caller': 'litesearch.core.search',
'callee': 'litesearch.core.rrf_merge',
'kind': 'static',
'confidence': 1.0},
{'id': 358018,
'caller': 'litesearch.data.pdf_chunks',
'callee': 'litesearch.data.chunk_markdown',
'kind': 'static',
'confidence': 1.0},
{'id': 358022,
'caller': 'litesearch.data.pdf_chunks',
'callee': 'litesearch.data.pdf_markdown',
'kind': 'static',
'confidence': 1.0},
{'id': 358024,
'caller': 'litesearch.data.pdf_chunks.genexpr.0',
'callee': 'litesearch.data.chunk_markdown',
'kind': 'static',
'confidence': 1.0},
{'id': 358032,
'caller': 'litesearch.data.pyparse',
'callee': 'litesearch.data.pyparse.is_allowed',
'kind': 'static',
'confidence': 1.0},
{'id': 358033,
'caller': 'litesearch.data.pyparse',
'callee': 'litesearch.data.pyparse.n2c',
'kind': 'static',
'confidence': 1.0},
{'id': 358037,
'caller': 'litesearch.data.pyparse.n2c',
'callee': 'litesearch.data.pyparse.meta',
'kind': 'static',
'confidence': 1.0},
{'id': 358038,
'caller': 'litesearch.data.pyparse.is_allowed',
'callee': 'litesearch.data.pyparse.is_p_mod',
'kind': 'static',
'confidence': 1.0},
{'id': 358039,
'caller': 'litesearch.data.pyparse.is_allowed',
'callee': 'litesearch.data.pyparse.is_assign',
'kind': 'static',
'confidence': 1.0},
{'id': 358040,
'caller': 'litesearch.data.pyparse.is_allowed',
'callee': 'litesearch.data.pyparse.is_mod',
'kind': 'static',
'confidence': 1.0},
{'id': 358042,
'caller': 'litesearch.data.ipynb_parse.lambda.0',
'callee': 'litesearch.data.ipynb_parse.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 358044,
'caller': 'litesearch.data.ipynb_parse',
'callee': 'litesearch.data.ipynb_parse.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 358047,
'caller': 'litesearch.data.non_py_sigs.lambda.0',
'callee': 'litesearch.data.non_py_sigs.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 358050,
'caller': 'litesearch.data.non_py_sigs',
'callee': 'litesearch.data.non_py_sigs.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 358053,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.non_py_sigs',
'kind': 'static',
'confidence': 1.0},
{'id': 358054,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.file_parse.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 358055,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.chunk_texts',
'kind': 'static',
'confidence': 1.0},
{'id': 358057,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.chunk_markdown',
'kind': 'static',
'confidence': 1.0},
{'id': 358060,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.ipynb_parse',
'kind': 'static',
'confidence': 1.0},
{'id': 358062,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.pyparse',
'kind': 'static',
'confidence': 1.0},
{'id': 358064,
'caller': 'litesearch.data.file_parse.lambda.0',
'callee': 'litesearch.data.file_parse.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 358065,
'caller': 'litesearch.data.file_parse.lambda.1',
'callee': 'litesearch.data.file_parse.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 358070,
'caller': 'litesearch.data.pkg2files',
'callee': 'litesearch.data.spec',
'kind': 'static',
'confidence': 1.0},
{'id': 358076,
'caller': 'litesearch.data.pkg2chunks',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 358078,
'caller': 'litesearch.data.pkg2chunks',
'callee': 'litesearch.data.file_parse',
'kind': 'static',
'confidence': 1.0},
{'id': 358080,
'caller': 'litesearch.data.pkg2chunks',
'callee': 'litesearch.data.pkg2files',
'kind': 'static',
'confidence': 1.0},
{'id': 358085,
'caller': 'litesearch.data.dir2chunks',
'callee': 'litesearch.data.dir2files',
'kind': 'static',
'confidence': 1.0},
{'id': 358086,
'caller': 'litesearch.data.dir2chunks',
'callee': 'litesearch.data.file_parse',
'kind': 'static',
'confidence': 1.0},
{'id': 358093,
'caller': 'litesearch.data.installed_packages',
'callee': 'litesearch.data.spec',
'kind': 'static',
'confidence': 1.0},
{'id': 358095,
'caller': 'litesearch.data.installed_packages',
'callee': 'litesearch.data.repo_root',
'kind': 'static',
'confidence': 1.0},
{'id': 358097,
'caller': 'litesearch.data.pre',
'callee': 'litesearch.data.mk_wider',
'kind': 'static',
'confidence': 1.0},
{'id': 358098,
'caller': 'litesearch.data.pre',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 358099,
'caller': 'litesearch.data.pre',
'callee': 'litesearch.data.add_wc',
'kind': 'static',
'confidence': 1.0},
{'id': 358100,
'caller': 'litesearch.data.pre',
'callee': 'litesearch.data.clean',
'kind': 'static',
'confidence': 1.0},
{'id': 358103,
'caller': 'litesearch.data.images_to_pdf',
'callee': 'litesearch.data.png_det',
'kind': 'static',
'confidence': 1.0},
{'id': 358104,
'caller': 'litesearch.data.images_to_pdf',
'callee': 'litesearch.data.img2png',
'kind': 'static',
'confidence': 1.0},
{'id': 358105,
'caller': 'litesearch.data.images_to_pdf.listcomp.0',
'callee': 'litesearch.data.png_det',
'kind': 'static',
'confidence': 1.0},
{'id': 358106,
'caller': 'litesearch.data.images_to_pdf.listcomp.0',
'callee': 'litesearch.data.img2png',
'kind': 'static',
'confidence': 1.0},
{'id': 358107,
'caller': 'litesearch.data.mv_skill_md',
'callee': 'litesearch.data.repo_root',
'kind': 'static',
'confidence': 1.0},
{'id': 358112,
'caller': 'litesearch.utils.FastEncode.__init__',
'callee': 'litesearch.utils.FastEncode._load_enc',
'kind': 'static',
'confidence': 1.0},
{'id': 358114,
'caller': 'litesearch.utils.FastEncode.__init__',
'callee': 'litesearch.utils.download_model',
'kind': 'static',
'confidence': 1.0},
{'id': 358117,
'caller': 'litesearch.utils.FastEncode.__init__',
'callee': 'litesearch.utils.model',
'kind': 'static',
'confidence': 1.0},
{'id': 358121,
'caller': 'litesearch.utils.FastEncode._load_enc',
'callee': 'litesearch.utils.FastEncode._load_tok',
'kind': 'static',
'confidence': 1.0},
{'id': 358123,
'caller': 'litesearch.utils.FastEncode._load_enc',
'callee': 'litesearch.utils.download_model',
'kind': 'static',
'confidence': 1.0},
{'id': 358125,
'caller': 'litesearch.utils.FastEncode._load_enc',
'callee': 'litesearch.utils.FastEncode._maybe_quantize',
'kind': 'static',
'confidence': 1.0},
{'id': 358128,
'caller': 'litesearch.utils.FastEncode._load_tok',
'callee': 'litesearch.utils.download_model',
'kind': 'static',
'confidence': 1.0},
{'id': 358130,
'caller': 'litesearch.utils.FastEncode._encode_batch',
'callee': 'litesearch.utils.FastEncode._enc',
'kind': 'static',
'confidence': 1.0},
{'id': 358131,
'caller': 'litesearch.utils.FastEncode._encode_batch',
'callee': 'litesearch.utils.FastEncode._load_enc',
'kind': 'static',
'confidence': 1.0},
{'id': 358132,
'caller': 'litesearch.utils.FastEncode._encode_batch',
'callee': 'litesearch.utils.FastEncode._mp',
'kind': 'static',
'confidence': 1.0},
{'id': 358133,
'caller': 'litesearch.utils.FastEncode.encode',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 358134,
'caller': 'litesearch.utils.FastEncode.encode',
'callee': 'litesearch.utils.FastEncode._encode_batch',
'kind': 'static',
'confidence': 1.0},
{'id': 358136,
'caller': 'litesearch.utils.FastEncode.encode',
'callee': 'litesearch.utils.FastEncode._load_enc',
'kind': 'static',
'confidence': 1.0},
{'id': 358139,
'caller': 'litesearch.utils.FastEncode.encode.lambda.0',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 358140,
'caller': 'litesearch.utils.FastEncode.encode.lambda.0',
'callee': 'litesearch.utils.FastEncode._encode_batch',
'kind': 'static',
'confidence': 1.0},
{'id': 358142,
'caller': 'litesearch.utils.FastEncode.encode_document',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 358143,
'caller': 'litesearch.utils.FastEncode.encode_document',
'callee': 'litesearch.utils.FastEncode.encode',
'kind': 'static',
'confidence': 1.0},
{'id': 358144,
'caller': 'litesearch.utils.FastEncode.encode_document',
'callee': 'litesearch.utils.FastEncode.__init__',
'kind': 'static',
'confidence': 1.0},
{'id': 358145,
'caller': 'litesearch.utils.FastEncode.encode_document.lambda.0',
'callee': 'litesearch.utils.FastEncode.__init__',
'kind': 'static',
'confidence': 1.0},
{'id': 358147,
'caller': 'litesearch.utils.FastEncode.encode_query',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 358148,
'caller': 'litesearch.utils.FastEncode.encode_query',
'callee': 'litesearch.utils.FastEncode.encode',
'kind': 'static',
'confidence': 1.0},
{'id': 358149,
'caller': 'litesearch.utils.FastEncode.encode_query',
'callee': 'litesearch.utils.FastEncode.__init__',
'kind': 'static',
'confidence': 1.0},
{'id': 358150,
'caller': 'litesearch.utils.FastEncode.encode_query.lambda.0',
'callee': 'litesearch.utils.FastEncode.__init__',
'kind': 'static',
'confidence': 1.0},
{'id': 358152,
'caller': 'litesearch.utils.download_model',
'callee': 'litesearch.utils.model',
'kind': 'static',
'confidence': 1.0},
{'id': 358156,
'caller': 'litesearch.utils.FastEncodeImage.__init__',
'callee': 'litesearch.utils.download_model',
'kind': 'static',
'confidence': 1.0},
{'id': 358158,
'caller': 'litesearch.utils.FastEncodeImage.__init__',
'callee': 'litesearch.utils.FastEncodeImage._load_processor',
'kind': 'static',
'confidence': 1.0},
{'id': 358159,
'caller': 'litesearch.utils.FastEncodeImage.__init__',
'callee': 'litesearch.utils.FastEncodeImage._load_enc',
'kind': 'static',
'confidence': 1.0},
{'id': 358160,
'caller': 'litesearch.utils.FastEncodeImage.__init__',
'callee': 'litesearch.utils.model',
'kind': 'static',
'confidence': 1.0},
{'id': 358162,
'caller': 'litesearch.utils.FastEncodeImage._load_enc',
'callee': 'litesearch.utils.download_model',
'kind': 'static',
'confidence': 1.0},
{'id': 358168,
'caller': 'litesearch.utils.FastEncodeImage._encode_batch',
'callee': 'litesearch.utils.FastEncodeImage._preprocess',
'kind': 'static',
'confidence': 1.0},
{'id': 358169,
'caller': 'litesearch.utils.FastEncodeImage._encode_batch',
'callee': 'litesearch.utils.FastEncodeImage._load_enc',
'kind': 'static',
'confidence': 1.0},
{'id': 358170,
'caller': 'litesearch.utils.FastEncodeImage._encode_batch',
'callee': 'litesearch.utils.FastEncodeImage._to_pil',
'kind': 'static',
'confidence': 1.0},
{'id': 358171,
'caller': 'litesearch.utils.FastEncodeImage.embed',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 358173,
'caller': 'litesearch.utils.FastEncodeImage.embed',
'callee': 'litesearch.utils.FastEncodeImage._encode_batch',
'kind': 'static',
'confidence': 1.0},
{'id': 358176,
'caller': 'litesearch.utils.FastEncodeImage.embed',
'callee': 'litesearch.utils.FastEncodeImage._load_enc',
'kind': 'static',
'confidence': 1.0},
{'id': 358177,
'caller': 'litesearch.utils.FastEncodeImage.embed.lambda.0',
'callee': 'litesearch.utils.FastEncodeImage._encode_batch',
'kind': 'static',
'confidence': 1.0},
{'id': 358178,
'caller': 'litesearch.utils.FastEncodeImage.embed.lambda.0',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 358180,
'caller': 'litesearch.utils.FastEncodeMultimodal.__init__',
'callee': 'litesearch.utils.download_model',
'kind': 'static',
'confidence': 1.0},
{'id': 358183,
'caller': 'litesearch.utils.FastEncodeMultimodal.__init__',
'callee': 'litesearch.utils.model',
'kind': 'static',
'confidence': 1.0},
{'id': 358184,
'caller': 'litesearch.utils.FastEncodeMultimodal.__init__',
'callee': 'litesearch.utils.FastEncodeImage',
'kind': 'static',
'confidence': 1.0},
{'id': 358185,
'caller': 'litesearch.utils.FastEncodeMultimodal.__init__',
'callee': 'litesearch.utils.FastEncode',
'kind': 'static',
'confidence': 1.0},
{'id': 358186,
'caller': 'litesearch.utils.FastEncodeMultimodal.__init__',
'callee': 'litesearch.utils.FastEncode.__init__',
'kind': 'static',
'confidence': 1.0},
{'id': 358187,
'caller': 'litesearch.utils.FastEncodeMultimodal.__init__',
'callee': 'litesearch.utils.FastEncodeImage.__init__',
'kind': 'static',
'confidence': 1.0},
{'id': 358188,
'caller': 'litesearch.utils.FastEncodeMultimodal.encode_text',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 358189,
'caller': 'litesearch.utils.FastEncodeMultimodal.encode_text',
'callee': 'litesearch.utils.FastEncode.encode',
'kind': 'static',
'confidence': 1.0},
{'id': 358190,
'caller': 'litesearch.utils.FastEncodeMultimodal.encode_image',
'callee': 'litesearch.utils.FastEncodeImage.embed',
'kind': 'static',
'confidence': 1.0},
{'id': 358191,
'caller': 'litesearch.utils.FastEncodeMultimodal.encode_image',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 358193,
'caller': 'litesearch.utils.encode_pdf_texts',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 358194,
'caller': 'litesearch.utils.encode_pdf_texts',
'callee': 'litesearch.data.pdf_chunks',
'kind': 'static',
'confidence': 1.0},
{'id': 358195,
'caller': 'litesearch.utils.encode_pdf_texts',
'callee': 'litesearch.utils.FastEncode.encode_document',
'kind': 'static',
'confidence': 1.0},
{'id': 358197,
'caller': 'litesearch.utils.encode_pdf_images',
'callee': 'litesearch.utils.FastEncodeImage.embed',
'kind': 'static',
'confidence': 1.0},
{'id': 364018,
'caller': 'litesearch.cli.install',
'callee': 'litesearch.data.mv_skill_md',
'kind': 'static',
'confidence': 1.0},
{'id': 364020,
'caller': 'litesearch.cli.main',
'callee': 'litesearch.cli.CMDS',
'kind': 'static',
'confidence': 1.0},
{'id': 364021,
'caller': 'litesearch.core._dtype_suffix',
'callee': 'litesearch.core._dtype_suffixes',
'kind': 'static',
'confidence': 1.0},
{'id': 364029,
'caller': 'litesearch.core.get_store',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 364035,
'caller': 'litesearch.core.vec_search',
'callee': 'litesearch.core._dtype_suffix',
'kind': 'static',
'confidence': 1.0},
{'id': 364038,
'caller': 'litesearch.core.database',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 364043,
'caller': 'litesearch.core.search',
'callee': 'litesearch.core.rrf_merge',
'kind': 'static',
'confidence': 1.0},
{'id': 364075,
'caller': 'litesearch.data.pdf_chunks',
'callee': 'litesearch.data.pdf_markdown',
'kind': 'static',
'confidence': 1.0},
{'id': 364076,
'caller': 'litesearch.data.pdf_chunks',
'callee': 'litesearch.data.chunk_markdown',
'kind': 'static',
'confidence': 1.0},
{'id': 364080,
'caller': 'litesearch.data.pdf_chunks.genexpr.0',
'callee': 'litesearch.data.chunk_markdown',
'kind': 'static',
'confidence': 1.0},
{'id': 364086,
'caller': 'litesearch.data.pyparse',
'callee': 'litesearch.data.pyparse.is_allowed',
'kind': 'static',
'confidence': 1.0},
{'id': 364087,
'caller': 'litesearch.data.pyparse',
'callee': 'litesearch.data.pyparse.n2c',
'kind': 'static',
'confidence': 1.0},
{'id': 364092,
'caller': 'litesearch.data.pyparse.n2c',
'callee': 'litesearch.data.pyparse.meta',
'kind': 'static',
'confidence': 1.0},
{'id': 364094,
'caller': 'litesearch.data.pyparse.is_allowed',
'callee': 'litesearch.data.pyparse.is_p_mod',
'kind': 'static',
'confidence': 1.0},
{'id': 364095,
'caller': 'litesearch.data.pyparse.is_allowed',
'callee': 'litesearch.data.pyparse.is_assign',
'kind': 'static',
'confidence': 1.0},
{'id': 364096,
'caller': 'litesearch.data.pyparse.is_allowed',
'callee': 'litesearch.data.pyparse.is_mod',
'kind': 'static',
'confidence': 1.0},
{'id': 364098,
'caller': 'litesearch.data.ipynb_parse.lambda.0',
'callee': 'litesearch.data.ipynb_parse.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 364101,
'caller': 'litesearch.data.ipynb_parse',
'callee': 'litesearch.data.ipynb_parse.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 364103,
'caller': 'litesearch.data.non_py_sigs.lambda.0',
'callee': 'litesearch.data.non_py_sigs.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 364104,
'caller': 'litesearch.data.non_py_sigs',
'callee': 'litesearch.data.non_py_sigs.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 364110,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.pyparse',
'kind': 'static',
'confidence': 1.0},
{'id': 364111,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.chunk_texts',
'kind': 'static',
'confidence': 1.0},
{'id': 364113,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.chunk_markdown',
'kind': 'static',
'confidence': 1.0},
{'id': 364114,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.ipynb_parse',
'kind': 'static',
'confidence': 1.0},
{'id': 364115,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.non_py_sigs',
'kind': 'static',
'confidence': 1.0},
{'id': 364117,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.file_parse.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 364120,
'caller': 'litesearch.data.file_parse.lambda.0',
'callee': 'litesearch.data.file_parse.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 364121,
'caller': 'litesearch.data.file_parse.lambda.1',
'callee': 'litesearch.data.file_parse.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 364123,
'caller': 'litesearch.data.pkg2files',
'callee': 'litesearch.data.spec',
'kind': 'static',
'confidence': 1.0},
{'id': 364131,
'caller': 'litesearch.data.pkg2chunks',
'callee': 'litesearch.data.pkg2files',
'kind': 'static',
'confidence': 1.0},
{'id': 364132,
'caller': 'litesearch.data.pkg2chunks',
'callee': 'litesearch.data.file_parse',
'kind': 'static',
'confidence': 1.0},
{'id': 364133,
'caller': 'litesearch.data.pkg2chunks',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 364140,
'caller': 'litesearch.data.dir2chunks',
'callee': 'litesearch.data.dir2files',
'kind': 'static',
'confidence': 1.0},
{'id': 364141,
'caller': 'litesearch.data.dir2chunks',
'callee': 'litesearch.data.file_parse',
'kind': 'static',
'confidence': 1.0},
{'id': 364145,
'caller': 'litesearch.data.installed_packages',
'callee': 'litesearch.data.spec',
'kind': 'static',
'confidence': 1.0},
{'id': 364146,
'caller': 'litesearch.data.installed_packages',
'callee': 'litesearch.data.repo_root',
'kind': 'static',
'confidence': 1.0},
{'id': 364153,
'caller': 'litesearch.data.pre',
'callee': 'litesearch.data.clean',
'kind': 'static',
'confidence': 1.0},
{'id': 364154,
'caller': 'litesearch.data.pre',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 364155,
'caller': 'litesearch.data.pre',
'callee': 'litesearch.data.add_wc',
'kind': 'static',
'confidence': 1.0},
{'id': 364156,
'caller': 'litesearch.data.pre',
'callee': 'litesearch.data.mk_wider',
'kind': 'static',
'confidence': 1.0},
{'id': 364159,
'caller': 'litesearch.data.images_to_pdf',
'callee': 'litesearch.data.img2png',
'kind': 'static',
'confidence': 1.0},
{'id': 364160,
'caller': 'litesearch.data.images_to_pdf',
'callee': 'litesearch.data.png_det',
'kind': 'static',
'confidence': 1.0},
{'id': 364161,
'caller': 'litesearch.data.images_to_pdf.listcomp.0',
'callee': 'litesearch.data.img2png',
'kind': 'static',
'confidence': 1.0},
{'id': 364162,
'caller': 'litesearch.data.images_to_pdf.listcomp.0',
'callee': 'litesearch.data.png_det',
'kind': 'static',
'confidence': 1.0},
{'id': 364164,
'caller': 'litesearch.data.mv_skill_md',
'callee': 'litesearch.data.repo_root',
'kind': 'static',
'confidence': 1.0},
{'id': 364170,
'caller': 'litesearch.utils.FastEncode.__init__',
'callee': 'litesearch.utils.download_model',
'kind': 'static',
'confidence': 1.0},
{'id': 364172,
'caller': 'litesearch.utils.FastEncode.__init__',
'callee': 'litesearch.utils.model',
'kind': 'static',
'confidence': 1.0},
{'id': 364173,
'caller': 'litesearch.utils.FastEncode.__init__',
'callee': 'litesearch.utils.FastEncode._load_enc',
'kind': 'static',
'confidence': 1.0},
{'id': 364177,
'caller': 'litesearch.utils.FastEncode._load_enc',
'callee': 'litesearch.utils.download_model',
'kind': 'static',
'confidence': 1.0},
{'id': 364178,
'caller': 'litesearch.utils.FastEncode._load_enc',
'callee': 'litesearch.utils.FastEncode._maybe_quantize',
'kind': 'static',
'confidence': 1.0},
{'id': 364179,
'caller': 'litesearch.utils.FastEncode._load_enc',
'callee': 'litesearch.utils.FastEncode._load_tok',
'kind': 'static',
'confidence': 1.0},
{'id': 364183,
'caller': 'litesearch.utils.FastEncode._load_tok',
'callee': 'litesearch.utils.download_model',
'kind': 'static',
'confidence': 1.0},
{'id': 364186,
'caller': 'litesearch.utils.FastEncode._encode_batch',
'callee': 'litesearch.utils.FastEncode._mp',
'kind': 'static',
'confidence': 1.0},
{'id': 364187,
'caller': 'litesearch.utils.FastEncode._encode_batch',
'callee': 'litesearch.utils.FastEncode._load_enc',
'kind': 'static',
'confidence': 1.0},
{'id': 364188,
'caller': 'litesearch.utils.FastEncode._encode_batch',
'callee': 'litesearch.utils.FastEncode._enc',
'kind': 'static',
'confidence': 1.0},
{'id': 364191,
'caller': 'litesearch.utils.FastEncode.encode',
'callee': 'litesearch.utils.FastEncode._encode_batch',
'kind': 'static',
'confidence': 1.0},
{'id': 364192,
'caller': 'litesearch.utils.FastEncode.encode',
'callee': 'litesearch.utils.FastEncode._load_enc',
'kind': 'static',
'confidence': 1.0},
{'id': 364194,
'caller': 'litesearch.utils.FastEncode.encode',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 364195,
'caller': 'litesearch.utils.FastEncode.encode.lambda.0',
'callee': 'litesearch.utils.FastEncode._encode_batch',
'kind': 'static',
'confidence': 1.0},
{'id': 364196,
'caller': 'litesearch.utils.FastEncode.encode.lambda.0',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 364197,
'caller': 'litesearch.utils.FastEncode.encode_document',
'callee': 'litesearch.utils.FastEncode.encode',
'kind': 'static',
'confidence': 1.0},
{'id': 364199,
'caller': 'litesearch.utils.FastEncode.encode_document',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 364200,
'caller': 'litesearch.utils.FastEncode.encode_document',
'callee': 'litesearch.utils.FastEncode.__init__',
'kind': 'static',
'confidence': 1.0},
{'id': 364201,
'caller': 'litesearch.utils.FastEncode.encode_document.lambda.0',
'callee': 'litesearch.utils.FastEncode.__init__',
'kind': 'static',
'confidence': 1.0},
{'id': 364202,
'caller': 'litesearch.utils.FastEncode.encode_query',
'callee': 'litesearch.utils.FastEncode.encode',
'kind': 'static',
'confidence': 1.0},
{'id': 364203,
'caller': 'litesearch.utils.FastEncode.encode_query',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 364205,
'caller': 'litesearch.utils.FastEncode.encode_query',
'callee': 'litesearch.utils.FastEncode.__init__',
'kind': 'static',
'confidence': 1.0},
{'id': 364206,
'caller': 'litesearch.utils.FastEncode.encode_query.lambda.0',
'callee': 'litesearch.utils.FastEncode.__init__',
'kind': 'static',
'confidence': 1.0},
{'id': 364209,
'caller': 'litesearch.utils.download_model',
'callee': 'litesearch.utils.model',
'kind': 'static',
'confidence': 1.0},
{'id': 364211,
'caller': 'litesearch.utils.FastEncodeImage.__init__',
'callee': 'litesearch.utils.FastEncodeImage._load_processor',
'kind': 'static',
'confidence': 1.0},
{'id': 364212,
'caller': 'litesearch.utils.FastEncodeImage.__init__',
'callee': 'litesearch.utils.download_model',
'kind': 'static',
'confidence': 1.0},
{'id': 364213,
'caller': 'litesearch.utils.FastEncodeImage.__init__',
'callee': 'litesearch.utils.FastEncodeImage._load_enc',
'kind': 'static',
'confidence': 1.0},
{'id': 364214,
'caller': 'litesearch.utils.FastEncodeImage.__init__',
'callee': 'litesearch.utils.model',
'kind': 'static',
'confidence': 1.0},
{'id': 364218,
'caller': 'litesearch.utils.FastEncodeImage._load_enc',
'callee': 'litesearch.utils.download_model',
'kind': 'static',
'confidence': 1.0},
{'id': 364223,
'caller': 'litesearch.utils.FastEncodeImage._encode_batch',
'callee': 'litesearch.utils.FastEncodeImage._preprocess',
'kind': 'static',
'confidence': 1.0},
{'id': 364224,
'caller': 'litesearch.utils.FastEncodeImage._encode_batch',
'callee': 'litesearch.utils.FastEncodeImage._load_enc',
'kind': 'static',
'confidence': 1.0},
{'id': 364225,
'caller': 'litesearch.utils.FastEncodeImage._encode_batch',
'callee': 'litesearch.utils.FastEncodeImage._to_pil',
'kind': 'static',
'confidence': 1.0},
{'id': 364228,
'caller': 'litesearch.utils.FastEncodeImage.embed',
'callee': 'litesearch.utils.FastEncodeImage._encode_batch',
'kind': 'static',
'confidence': 1.0},
{'id': 364230,
'caller': 'litesearch.utils.FastEncodeImage.embed',
'callee': 'litesearch.utils.FastEncodeImage._load_enc',
'kind': 'static',
'confidence': 1.0},
{'id': 364231,
'caller': 'litesearch.utils.FastEncodeImage.embed',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 364233,
'caller': 'litesearch.utils.FastEncodeImage.embed.lambda.0',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 364234,
'caller': 'litesearch.utils.FastEncodeImage.embed.lambda.0',
'callee': 'litesearch.utils.FastEncodeImage._encode_batch',
'kind': 'static',
'confidence': 1.0},
{'id': 364237,
'caller': 'litesearch.utils.FastEncodeMultimodal.__init__',
'callee': 'litesearch.utils.FastEncode',
'kind': 'static',
'confidence': 1.0},
{'id': 364238,
'caller': 'litesearch.utils.FastEncodeMultimodal.__init__',
'callee': 'litesearch.utils.FastEncodeImage.__init__',
'kind': 'static',
'confidence': 1.0},
{'id': 364239,
'caller': 'litesearch.utils.FastEncodeMultimodal.__init__',
'callee': 'litesearch.utils.download_model',
'kind': 'static',
'confidence': 1.0},
{'id': 364241,
'caller': 'litesearch.utils.FastEncodeMultimodal.__init__',
'callee': 'litesearch.utils.FastEncode.__init__',
'kind': 'static',
'confidence': 1.0},
{'id': 364242,
'caller': 'litesearch.utils.FastEncodeMultimodal.__init__',
'callee': 'litesearch.utils.model',
'kind': 'static',
'confidence': 1.0},
{'id': 364243,
'caller': 'litesearch.utils.FastEncodeMultimodal.__init__',
'callee': 'litesearch.utils.FastEncodeImage',
'kind': 'static',
'confidence': 1.0},
{'id': 364244,
'caller': 'litesearch.utils.FastEncodeMultimodal.encode_text',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 364245,
'caller': 'litesearch.utils.FastEncodeMultimodal.encode_text',
'callee': 'litesearch.utils.FastEncode.encode',
'kind': 'static',
'confidence': 1.0},
{'id': 364246,
'caller': 'litesearch.utils.FastEncodeMultimodal.encode_image',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 364247,
'caller': 'litesearch.utils.FastEncodeMultimodal.encode_image',
'callee': 'litesearch.utils.FastEncodeImage.embed',
'kind': 'static',
'confidence': 1.0},
{'id': 364248,
'caller': 'litesearch.utils.encode_pdf_texts',
'callee': 'litesearch.data.pdf_chunks',
'kind': 'static',
'confidence': 1.0},
{'id': 364249,
'caller': 'litesearch.utils.encode_pdf_texts',
'callee': 'litesearch.utils.FastEncode.encode_document',
'kind': 'static',
'confidence': 1.0},
{'id': 364250,
'caller': 'litesearch.utils.encode_pdf_texts',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 364252,
'caller': 'litesearch.utils.encode_pdf_images',
'callee': 'litesearch.utils.FastEncodeImage.embed',
'kind': 'static',
'confidence': 1.0},
{'id': 423326,
'caller': 'litesearch.cli.install',
'callee': 'litesearch.data.mv_skill_md',
'kind': 'static',
'confidence': 1.0},
{'id': 423327,
'caller': 'litesearch.cli.main',
'callee': 'litesearch.cli.CMDS',
'kind': 'static',
'confidence': 1.0},
{'id': 423328,
'caller': 'litesearch.core._dtype_suffix',
'callee': 'litesearch.core._dtype_suffixes',
'kind': 'static',
'confidence': 1.0},
{'id': 423336,
'caller': 'litesearch.core.get_store',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 423341,
'caller': 'litesearch.core.vec_search',
'callee': 'litesearch.core._dtype_suffix',
'kind': 'static',
'confidence': 1.0},
{'id': 423344,
'caller': 'litesearch.core.database',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 423351,
'caller': 'litesearch.core.search',
'callee': 'litesearch.core.rrf_merge',
'kind': 'static',
'confidence': 1.0},
{'id': 423385,
'caller': 'litesearch.data.pdf_chunks',
'callee': 'litesearch.data.chunk_markdown',
'kind': 'static',
'confidence': 1.0},
{'id': 423386,
'caller': 'litesearch.data.pdf_chunks',
'callee': 'litesearch.data.pdf_markdown',
'kind': 'static',
'confidence': 1.0},
{'id': 423387,
'caller': 'litesearch.data.pdf_chunks.genexpr.0',
'callee': 'litesearch.data.chunk_markdown',
'kind': 'static',
'confidence': 1.0},
{'id': 423393,
'caller': 'litesearch.data.pyparse',
'callee': 'litesearch.data.pyparse.is_allowed',
'kind': 'static',
'confidence': 1.0},
{'id': 423395,
'caller': 'litesearch.data.pyparse',
'callee': 'litesearch.data.pyparse.n2c',
'kind': 'static',
'confidence': 1.0},
{'id': 423399,
'caller': 'litesearch.data.pyparse.n2c',
'callee': 'litesearch.data.pyparse.meta',
'kind': 'static',
'confidence': 1.0},
{'id': 423401,
'caller': 'litesearch.data.pyparse.is_allowed',
'callee': 'litesearch.data.pyparse.is_p_mod',
'kind': 'static',
'confidence': 1.0},
{'id': 423402,
'caller': 'litesearch.data.pyparse.is_allowed',
'callee': 'litesearch.data.pyparse.is_mod',
'kind': 'static',
'confidence': 1.0},
{'id': 423403,
'caller': 'litesearch.data.pyparse.is_allowed',
'callee': 'litesearch.data.pyparse.is_assign',
'kind': 'static',
'confidence': 1.0},
{'id': 423405,
'caller': 'litesearch.data.ipynb_parse.lambda.0',
'callee': 'litesearch.data.ipynb_parse.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 423408,
'caller': 'litesearch.data.ipynb_parse',
'callee': 'litesearch.data.ipynb_parse.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 423410,
'caller': 'litesearch.data.non_py_sigs.lambda.0',
'callee': 'litesearch.data.non_py_sigs.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 423413,
'caller': 'litesearch.data.non_py_sigs',
'callee': 'litesearch.data.non_py_sigs.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 423416,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.ipynb_parse',
'kind': 'static',
'confidence': 1.0},
{'id': 423417,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.non_py_sigs',
'kind': 'static',
'confidence': 1.0},
{'id': 423419,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.pyparse',
'kind': 'static',
'confidence': 1.0},
{'id': 423420,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.chunk_texts',
'kind': 'static',
'confidence': 1.0},
{'id': 423423,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.chunk_markdown',
'kind': 'static',
'confidence': 1.0},
{'id': 423424,
'caller': 'litesearch.data.file_parse',
'callee': 'litesearch.data.file_parse.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 423427,
'caller': 'litesearch.data.file_parse.lambda.0',
'callee': 'litesearch.data.file_parse.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 423428,
'caller': 'litesearch.data.file_parse.lambda.1',
'callee': 'litesearch.data.file_parse.meta_',
'kind': 'static',
'confidence': 1.0},
{'id': 423430,
'caller': 'litesearch.data.pkg2files',
'callee': 'litesearch.data.spec',
'kind': 'static',
'confidence': 1.0},
{'id': 423439,
'caller': 'litesearch.data.pkg2chunks',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 423440,
'caller': 'litesearch.data.pkg2chunks',
'callee': 'litesearch.data.file_parse',
'kind': 'static',
'confidence': 1.0},
{'id': 423444,
'caller': 'litesearch.data.pkg2chunks',
'callee': 'litesearch.data.pkg2files',
'kind': 'static',
'confidence': 1.0},
{'id': 423447,
'caller': 'litesearch.data.dir2chunks',
'callee': 'litesearch.data.file_parse',
'kind': 'static',
'confidence': 1.0},
{'id': 423449,
'caller': 'litesearch.data.dir2chunks',
'callee': 'litesearch.data.dir2files',
'kind': 'static',
'confidence': 1.0},
{'id': 423455,
'caller': 'litesearch.data.installed_packages',
'callee': 'litesearch.data.spec',
'kind': 'static',
'confidence': 1.0},
{'id': 423458,
'caller': 'litesearch.data.installed_packages',
'callee': 'litesearch.data.repo_root',
'kind': 'static',
'confidence': 1.0},
{'id': 423460,
'caller': 'litesearch.data.pre',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 423461,
'caller': 'litesearch.data.pre',
'callee': 'litesearch.data.add_wc',
'kind': 'static',
'confidence': 1.0},
{'id': 423462,
'caller': 'litesearch.data.pre',
'callee': 'litesearch.data.clean',
'kind': 'static',
'confidence': 1.0},
{'id': 423463,
'caller': 'litesearch.data.pre',
'callee': 'litesearch.data.mk_wider',
'kind': 'static',
'confidence': 1.0},
{'id': 423466,
'caller': 'litesearch.data.images_to_pdf',
'callee': 'litesearch.data.png_det',
'kind': 'static',
'confidence': 1.0},
{'id': 423467,
'caller': 'litesearch.data.images_to_pdf',
'callee': 'litesearch.data.img2png',
'kind': 'static',
'confidence': 1.0},
{'id': 423468,
'caller': 'litesearch.data.images_to_pdf.listcomp.0',
'callee': 'litesearch.data.png_det',
'kind': 'static',
'confidence': 1.0},
{'id': 423469,
'caller': 'litesearch.data.images_to_pdf.listcomp.0',
'callee': 'litesearch.data.img2png',
'kind': 'static',
'confidence': 1.0},
{'id': 423471,
'caller': 'litesearch.data.mv_skill_md',
'callee': 'litesearch.data.repo_root',
'kind': 'static',
'confidence': 1.0},
{'id': 423477,
'caller': 'litesearch.utils.FastEncode.__init__',
'callee': 'litesearch.utils.FastEncode._load_enc',
'kind': 'static',
'confidence': 1.0},
{'id': 423479,
'caller': 'litesearch.utils.FastEncode.__init__',
'callee': 'litesearch.utils.model',
'kind': 'static',
'confidence': 1.0},
{'id': 423480,
'caller': 'litesearch.utils.FastEncode.__init__',
'callee': 'litesearch.utils.download_model',
'kind': 'static',
'confidence': 1.0},
{'id': 423484,
'caller': 'litesearch.utils.FastEncode._load_enc',
'callee': 'litesearch.utils.FastEncode._maybe_quantize',
'kind': 'static',
'confidence': 1.0},
{'id': 423485,
'caller': 'litesearch.utils.FastEncode._load_enc',
'callee': 'litesearch.utils.download_model',
'kind': 'static',
'confidence': 1.0},
{'id': 423488,
'caller': 'litesearch.utils.FastEncode._load_enc',
'callee': 'litesearch.utils.FastEncode._load_tok',
'kind': 'static',
'confidence': 1.0},
{'id': 423490,
'caller': 'litesearch.utils.FastEncode._load_tok',
'callee': 'litesearch.utils.download_model',
'kind': 'static',
'confidence': 1.0},
{'id': 423493,
'caller': 'litesearch.utils.FastEncode._encode_batch',
'callee': 'litesearch.utils.FastEncode._load_enc',
'kind': 'static',
'confidence': 1.0},
{'id': 423494,
'caller': 'litesearch.utils.FastEncode._encode_batch',
'callee': 'litesearch.utils.FastEncode._enc',
'kind': 'static',
'confidence': 1.0},
{'id': 423495,
'caller': 'litesearch.utils.FastEncode._encode_batch',
'callee': 'litesearch.utils.FastEncode._mp',
'kind': 'static',
'confidence': 1.0},
{'id': 423497,
'caller': 'litesearch.utils.FastEncode.encode',
'callee': 'litesearch.utils.FastEncode._load_enc',
'kind': 'static',
'confidence': 1.0},
{'id': 423499,
'caller': 'litesearch.utils.FastEncode.encode',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 423501,
'caller': 'litesearch.utils.FastEncode.encode',
'callee': 'litesearch.utils.FastEncode._encode_batch',
'kind': 'static',
'confidence': 1.0},
{'id': 423502,
'caller': 'litesearch.utils.FastEncode.encode.lambda.0',
'callee': 'litesearch.utils.FastEncode._encode_batch',
'kind': 'static',
'confidence': 1.0},
{'id': 423503,
'caller': 'litesearch.utils.FastEncode.encode.lambda.0',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 423504,
'caller': 'litesearch.utils.FastEncode.encode_document',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 423505,
'caller': 'litesearch.utils.FastEncode.encode_document',
'callee': 'litesearch.utils.FastEncode.encode',
'kind': 'static',
'confidence': 1.0},
{'id': 423507,
'caller': 'litesearch.utils.FastEncode.encode_document',
'callee': 'litesearch.utils.FastEncode.__init__',
'kind': 'static',
'confidence': 1.0},
{'id': 423508,
'caller': 'litesearch.utils.FastEncode.encode_document.lambda.0',
'callee': 'litesearch.utils.FastEncode.__init__',
'kind': 'static',
'confidence': 1.0},
{'id': 423509,
'caller': 'litesearch.utils.FastEncode.encode_query',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 423510,
'caller': 'litesearch.utils.FastEncode.encode_query',
'callee': 'litesearch.utils.FastEncode.encode',
'kind': 'static',
'confidence': 1.0},
{'id': 423512,
'caller': 'litesearch.utils.FastEncode.encode_query',
'callee': 'litesearch.utils.FastEncode.__init__',
'kind': 'static',
'confidence': 1.0},
{'id': 423513,
'caller': 'litesearch.utils.FastEncode.encode_query.lambda.0',
'callee': 'litesearch.utils.FastEncode.__init__',
'kind': 'static',
'confidence': 1.0},
{'id': 423515,
'caller': 'litesearch.utils.download_model',
'callee': 'litesearch.utils.model',
'kind': 'static',
'confidence': 1.0},
{'id': 423518,
'caller': 'litesearch.utils.FastEncodeImage.__init__',
'callee': 'litesearch.utils.download_model',
'kind': 'static',
'confidence': 1.0},
{'id': 423520,
'caller': 'litesearch.utils.FastEncodeImage.__init__',
'callee': 'litesearch.utils.FastEncodeImage._load_processor',
'kind': 'static',
'confidence': 1.0},
{'id': 423522,
'caller': 'litesearch.utils.FastEncodeImage.__init__',
'callee': 'litesearch.utils.model',
'kind': 'static',
'confidence': 1.0},
{'id': 423523,
'caller': 'litesearch.utils.FastEncodeImage.__init__',
'callee': 'litesearch.utils.FastEncodeImage._load_enc',
'kind': 'static',
'confidence': 1.0},
{'id': 423526,
'caller': 'litesearch.utils.FastEncodeImage._load_enc',
'callee': 'litesearch.utils.download_model',
'kind': 'static',
'confidence': 1.0},
{'id': 423530,
'caller': 'litesearch.utils.FastEncodeImage._encode_batch',
'callee': 'litesearch.utils.FastEncodeImage._load_enc',
'kind': 'static',
'confidence': 1.0},
{'id': 423532,
'caller': 'litesearch.utils.FastEncodeImage._encode_batch',
'callee': 'litesearch.utils.FastEncodeImage._to_pil',
'kind': 'static',
'confidence': 1.0},
{'id': 423533,
'caller': 'litesearch.utils.FastEncodeImage._encode_batch',
'callee': 'litesearch.utils.FastEncodeImage._preprocess',
'kind': 'static',
'confidence': 1.0},
{'id': 423536,
'caller': 'litesearch.utils.FastEncodeImage.embed',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 423538,
'caller': 'litesearch.utils.FastEncodeImage.embed',
'callee': 'litesearch.utils.FastEncodeImage._load_enc',
'kind': 'static',
'confidence': 1.0},
{'id': 423539,
'caller': 'litesearch.utils.FastEncodeImage.embed',
'callee': 'litesearch.utils.FastEncodeImage._encode_batch',
'kind': 'static',
'confidence': 1.0},
{'id': 423540,
'caller': 'litesearch.utils.FastEncodeImage.embed.lambda.0',
'callee': 'litesearch.utils.FastEncodeImage._encode_batch',
'kind': 'static',
'confidence': 1.0},
{'id': 423541,
'caller': 'litesearch.utils.FastEncodeImage.embed.lambda.0',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 423543,
'caller': 'litesearch.utils.FastEncodeMultimodal.__init__',
'callee': 'litesearch.utils.download_model',
'kind': 'static',
'confidence': 1.0},
{'id': 423545,
'caller': 'litesearch.utils.FastEncodeMultimodal.__init__',
'callee': 'litesearch.utils.FastEncode',
'kind': 'static',
'confidence': 1.0},
{'id': 423547,
'caller': 'litesearch.utils.FastEncodeMultimodal.__init__',
'callee': 'litesearch.utils.FastEncodeImage',
'kind': 'static',
'confidence': 1.0},
{'id': 423548,
'caller': 'litesearch.utils.FastEncodeMultimodal.__init__',
'callee': 'litesearch.utils.FastEncodeImage.__init__',
'kind': 'static',
'confidence': 1.0},
{'id': 423549,
'caller': 'litesearch.utils.FastEncodeMultimodal.__init__',
'callee': 'litesearch.utils.model',
'kind': 'static',
'confidence': 1.0},
{'id': 423550,
'caller': 'litesearch.utils.FastEncodeMultimodal.__init__',
'callee': 'litesearch.utils.FastEncode.__init__',
'kind': 'static',
'confidence': 1.0},
{'id': 423551,
'caller': 'litesearch.utils.FastEncodeMultimodal.encode_text',
'callee': 'litesearch.utils.FastEncode.encode',
'kind': 'static',
'confidence': 1.0},
{'id': 423552,
'caller': 'litesearch.utils.FastEncodeMultimodal.encode_text',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 423553,
'caller': 'litesearch.utils.FastEncodeMultimodal.encode_image',
'callee': 'litesearch.utils.FastEncodeImage.embed',
'kind': 'static',
'confidence': 1.0},
{'id': 423554,
'caller': 'litesearch.utils.FastEncodeMultimodal.encode_image',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 423555,
'caller': 'litesearch.utils.encode_pdf_texts',
'callee': 'litesearch.data.kw',
'kind': 'static',
'confidence': 1.0},
{'id': 423556,
'caller': 'litesearch.utils.encode_pdf_texts',
'callee': 'litesearch.data.pdf_chunks',
'kind': 'static',
'confidence': 1.0},
{'id': 423558,
'caller': 'litesearch.utils.encode_pdf_texts',
'callee': 'litesearch.utils.FastEncode.encode_document',
'kind': 'static',
'confidence': 1.0},
{'id': 423559,
'caller': 'litesearch.utils.encode_pdf_images',
'callee': 'litesearch.utils.FastEncodeImage.embed',
'kind': 'static',
'confidence': 1.0}]
L(k.ni('kosha.core.env_context')['callees']).filter(lambda x: 'search' in x)
['litesearch.core.search']
# Shortest call chain between two graph nodes
k.short_path('kosha.core.env_context', 'litesearch.core.search')
['kosha.core.env_context', 'litesearch.core.search']
# Public-API → public-API call paths between two packages
paths = k.api_call_paths('kosha', 'litesearch', k=10)
for tgt, path in sorted(paths.items(), key=lambda x: len(x[1]))[:3]:
print(f'{tgt}: {len(path)} hops')
print(' ', ' → '.join(path))
# BFS dependency layers from a seed package, ordered by coupling strength
k.dep_stack(seeds=['kosha'], depth=2)
[['kosha']]
# Top-k nodes by PageRank in a package
k.graph.ranked(k=5, module='fastcore')
[{'node': 'fastcore.imports.NoneType', 'pagerank': 0.00069}, {'node': 'fastcore.utils.*', 'pagerank': 0.00041}, {'node': 'fastcore.xdg.*', 'pagerank': 0.00038}, {'node': 'fastcore.nbio.*', 'pagerank': 0.00038}, {'node': 'fastcore.basics.patch', 'pagerank': 0.0003}]
Daemon mode — warm kernel for sessions
The first kosha call in a process pays a 3–5s embedder cold-start.
kosha daemon keeps a warm process running and routes JSON requests
over stdin/stdout, so subsequent calls are immediate.
kosha daemon & # start once per session
Then send newline-delimited JSON requests:
→ {"cmd":"context","args":{"q":"embed a query","limit":10}}
← {"ok":true,"result":[…]}
→ {"cmd":"short_path","args":{"src":"kosha.core.Kosha.sync","tgt":"litesearch.core.search"}}
← {"ok":true,"result":[…]}
Available commands: sync, status, context, repo_context,
env_context, ni, neighbors, short_path, top_nodes,
public_api, api_call_paths, dep_stack, where_to_add.
Live watch mode
Re-index the repo incrementally on every file change (blocking — Ctrl-C to stop):
kosha watch
or programmatically:
k.watch_repo()
CLI
Shell access to everything. Markdown by default; --as_json pipes into
jq.
kosha install # install SKILL.md to .agents/ and .claude/
kosha sync # index repo + env + call graph
kosha status # check index freshness
kosha context "embed a query" --as_json | jq '.[].metadata.mod_name'
kosha ni "fastcore.basics.merge" # node info
kosha where-to-add "new route handler"
kosha public-api fastcore
kosha api-paths kosha litesearch
kosha daemon # persistent kernel — warm for all session calls
Harness install
Kosha(install_skill=True) # installs to .agents/ and .claude/
Commit .agents/skills/kosha/SKILL.md so every contributor picks up the
skill automatically.
pyskills
kosha registers as a pyskill
(kosha.skill) for Python-native LLM hosts.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file koshas-0.0.16.tar.gz.
File metadata
- Download URL: koshas-0.0.16.tar.gz
- Upload date:
- Size: 57.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
acdf2a8c8a4e509e4252d34848d4d743e399c4a7f241f7bc4e2d7603a6c944a4
|
|
| MD5 |
1fffdd4382a8e8b4d08a2dc9320adb89
|
|
| BLAKE2b-256 |
6db867f6fafe10e3a1d1fbc39e65166b16e927214351042ce985150d66f183f4
|
File details
Details for the file koshas-0.0.16-py3-none-any.whl.
File metadata
- Download URL: koshas-0.0.16-py3-none-any.whl
- Upload date:
- Size: 51.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
686c29c8e938de99f215c61a704ac437ff00b467c6e3d5877cd0004f0d87c620
|
|
| MD5 |
4848b4e51608a6ad516ebbad7368bf3a
|
|
| BLAKE2b-256 |
cb12fb67a0658ad198e8612ef0db02fe2d8f49c2469bd7f3aa4e42402e98283d
|