Metadata-Version: 2.1
Name: devchat-ask
Version: 0.0.12
Summary: 
Author: Hezheng Yin
Author-email: hezheng@merico.dev
Requires-Python: >=3.11,<3.12
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: httpx (>=0.24.1,<0.25.0)
Requires-Dist: instructorembedding (>=1.0.1,<2.0.0)
Requires-Dist: langchain (>=0.0.200,<0.0.201)
Requires-Dist: loguru (>=0.7.0,<0.8.0)
Requires-Dist: openai (>=0.27.4,<0.28.0)
Requires-Dist: pathspec (>=0.11.2,<0.12.0)
Requires-Dist: qdrant-client (>=1.1.5,<2.0.0)
Requires-Dist: sentence_transformers (>=2.2.2,<3.0.0)
Requires-Dist: tiktoken (>=0.3.3,<0.4.0)
Requires-Dist: uuid (>=1.30,<2.0)
Description-Content-Type: text/markdown

# DevChat

Ask everything about your dev data beyond the code.

## Dependencies

Please install the following dependencies and ensure their installation path are added to your `PATH` environment variable (or export environment variables: `CINDEX_CMD_PATH` and `CSEARCH_CMD_PATH`).

| Name | Description                                                                                                                                                                           | Installation |
| ---- |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| ------------ |
| cindex | Cindex prepares the trigram index for use by csearch. The index is the file named by $CSEARCHINDEX, or else $HOME/.csearchindex.<br />Usage:<br />&nbsp;&nbsp;`cindex [-list] [-reset] [path...]` | `go get github.com/google/codesearch/cmd/cindex@latest` |
| csearch | Csearch behaves like grep over all indexed files, searching for regexp, an RE2 (nearly PCRE) regular expression.<br />Usage:<br />&nbsp;&nbsp;`csearch [-c] [-f fileregexp] [-h] [-i] [-l] [-n] regexp` | `go get github.com/google/codesearch/cmd/csearch@latest` |
