semantic-code-search
semantic-code-search copied to clipboard
Search your codebase with natural language • CLI • No data leaves your computer
https://github.com/sturdy-dev/semantic-code-search/blob/main/src/semantic_code_search/query.py#L14
- https://elixir-lang.org - https://github.com/elixir-lang/tree-sitter-elixir
Any way to get the raw/basic search result as a standard text output (rather than as an interactive prompt in the CLI)?
Getting this error during generation of embeddings: ``` Traceback (most recent call last): File "/home/user/.local/bin/sem", line 8, in sys.exit(main()) File "/home/user/.local/lib/python3.10/site-packages/semantic_code_search/cli.py", line 84, in main query_func(args) File "/home/user/.local/lib/python3.10/site-packages/semantic_code_search/cli.py", line 38,...
Hi, what is the difference between these two models? One (sentence-**msmarco**-bert-base-dot-v5-nlpl-code_search_net) is used in the code, the other (sentence-**t5**-base-nlpl-code_search_net) is listed in the readme, but doesn't appear to be used....
Small bug fix as selected_idx should only exit when None and not the false value 0. The current behavior is when you select the first option the editor will not...
fix #24 This pull request adds support for an optional encoding type argument in the `embed.py` module. The previous version of the module did not properly handle UTF-8 encoded files...
When attempting to use the do_embed function of the embed.py module in a codebase containing UTF-8 encoded files, an error is thrown due to improper handling of the UTF-8 encoding...
This fixes `ModuleNotFound` error when the package is installed in editable mode e.g.: `pip install -e .` See https://stackoverflow.com/a/66710618 for more information.
Pinning exact versions of dependencies in a package published on PyPI can cause problems for people with specific requirements. Please see [this StackOverflow answer](https://stackoverflow.com/a/44938662) for background. In my case, my...