├── .autodoc └── docs │ ├── data │ ├── args.json │ ├── docstore.json │ └── hnswlib.index │ ├── json │ ├── src │ │ ├── cli │ │ │ ├── commands │ │ │ │ ├── estimate │ │ │ │ │ ├── index.json │ │ │ │ │ └── summary.json │ │ │ │ ├── index │ │ │ │ │ ├── convertJsonToMarkdown.json │ │ │ │ │ ├── createVectorStore.json │ │ │ │ │ ├── index.json │ │ │ │ │ ├── processRepository.json │ │ │ │ │ ├── prompts.json │ │ │ │ │ └── summary.json │ │ │ │ ├── init │ │ │ │ │ ├── index.json │ │ │ │ │ └── summary.json │ │ │ │ ├── query │ │ │ │ │ ├── createChatChain.json │ │ │ │ │ ├── index.json │ │ │ │ │ └── summary.json │ │ │ │ ├── summary.json │ │ │ │ └── user │ │ │ │ │ ├── index.json │ │ │ │ │ └── summary.json │ │ │ ├── spinner.json │ │ │ ├── summary.json │ │ │ └── utils │ │ │ │ ├── APIRateLimit.json │ │ │ │ ├── FileUtil.json │ │ │ │ ├── LLMUtil.json │ │ │ │ ├── WaitUtil.json │ │ │ │ ├── summary.json │ │ │ │ └── traverseFileSystem.json │ │ ├── const.json │ │ ├── index.json │ │ ├── langchain │ │ │ ├── hnswlib.json │ │ │ └── summary.json │ │ ├── summary.json │ │ └── types.json │ └── tsconfig.json │ └── markdown │ ├── src │ ├── cli │ │ ├── commands │ │ │ ├── estimate │ │ │ │ ├── index.md │ │ │ │ └── summary.md │ │ │ ├── index │ │ │ │ ├── convertJsonToMarkdown.md │ │ │ │ ├── createVectorStore.md │ │ │ │ ├── index.md │ │ │ │ ├── processRepository.md │ │ │ │ ├── prompts.md │ │ │ │ └── summary.md │ │ │ ├── init │ │ │ │ ├── index.md │ │ │ │ └── summary.md │ │ │ ├── query │ │ │ │ ├── createChatChain.md │ │ │ │ ├── index.md │ │ │ │ └── summary.md │ │ │ ├── summary.md │ │ │ └── user │ │ │ │ ├── index.md │ │ │ │ └── summary.md │ │ ├── spinner.md │ │ ├── summary.md │ │ └── utils │ │ │ ├── APIRateLimit.md │ │ │ ├── FileUtil.md │ │ │ ├── LLMUtil.md │ │ │ ├── WaitUtil.md │ │ │ ├── summary.md │ │ │ └── traverseFileSystem.md │ ├── const.md │ ├── index.md │ ├── langchain │ │ ├── hnswlib.md │ │ └── summary.md │ ├── summary.md │ └── types.md │ └── tsconfig.md ├── .eslintrc.cjs ├── .gitignore ├── LICENSE ├── README.md ├── assets ├── .DS_Store ├── autodoc.png ├── index-estimate.png ├── index-finished.png ├── q-command.png ├── query.gif ├── query.mov └── select-models.png ├── autodoc.config.json ├── package.json ├── src ├── .DS_Store ├── cli │ ├── commands │ │ ├── estimate │ │ │ └── index.ts │ │ ├── index │ │ │ ├── convertJsonToMarkdown.ts │ │ │ ├── createVectorStore.ts │ │ │ ├── index.ts │ │ │ ├── processRepository.ts │ │ │ ├── prompts.ts │ │ │ └── selectModel.ts │ │ ├── init │ │ │ └── index.ts │ │ ├── query │ │ │ ├── createChatChain.ts │ │ │ └── index.ts │ │ └── user │ │ │ └── index.ts │ ├── spinner.ts │ └── utils │ │ ├── APIRateLimit.ts │ │ ├── FileUtil.ts │ │ ├── LLMUtil.ts │ │ ├── WaitUtil.ts │ │ └── traverseFileSystem.ts ├── const.ts ├── index.ts ├── langchain │ └── hnswlib.ts └── types.ts └── tsconfig.json /.autodoc/docs/data/args.json: -------------------------------------------------------------------------------- 1 | {"space":"cosine","numDimensions":1536} -------------------------------------------------------------------------------- /.autodoc/docs/data/docstore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/data/docstore.json -------------------------------------------------------------------------------- /.autodoc/docs/data/hnswlib.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/data/hnswlib.index -------------------------------------------------------------------------------- /.autodoc/docs/json/src/cli/commands/estimate/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/json/src/cli/commands/estimate/index.json -------------------------------------------------------------------------------- /.autodoc/docs/json/src/cli/commands/estimate/summary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/json/src/cli/commands/estimate/summary.json -------------------------------------------------------------------------------- /.autodoc/docs/json/src/cli/commands/index/convertJsonToMarkdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/json/src/cli/commands/index/convertJsonToMarkdown.json -------------------------------------------------------------------------------- /.autodoc/docs/json/src/cli/commands/index/createVectorStore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/json/src/cli/commands/index/createVectorStore.json -------------------------------------------------------------------------------- /.autodoc/docs/json/src/cli/commands/index/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/json/src/cli/commands/index/index.json -------------------------------------------------------------------------------- /.autodoc/docs/json/src/cli/commands/index/processRepository.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/json/src/cli/commands/index/processRepository.json -------------------------------------------------------------------------------- /.autodoc/docs/json/src/cli/commands/index/prompts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/json/src/cli/commands/index/prompts.json -------------------------------------------------------------------------------- /.autodoc/docs/json/src/cli/commands/index/summary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/json/src/cli/commands/index/summary.json -------------------------------------------------------------------------------- /.autodoc/docs/json/src/cli/commands/init/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/json/src/cli/commands/init/index.json -------------------------------------------------------------------------------- /.autodoc/docs/json/src/cli/commands/init/summary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/json/src/cli/commands/init/summary.json -------------------------------------------------------------------------------- /.autodoc/docs/json/src/cli/commands/query/createChatChain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/json/src/cli/commands/query/createChatChain.json -------------------------------------------------------------------------------- /.autodoc/docs/json/src/cli/commands/query/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/json/src/cli/commands/query/index.json -------------------------------------------------------------------------------- /.autodoc/docs/json/src/cli/commands/query/summary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/json/src/cli/commands/query/summary.json -------------------------------------------------------------------------------- /.autodoc/docs/json/src/cli/commands/summary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/json/src/cli/commands/summary.json -------------------------------------------------------------------------------- /.autodoc/docs/json/src/cli/commands/user/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/json/src/cli/commands/user/index.json -------------------------------------------------------------------------------- /.autodoc/docs/json/src/cli/commands/user/summary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/json/src/cli/commands/user/summary.json -------------------------------------------------------------------------------- /.autodoc/docs/json/src/cli/spinner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/json/src/cli/spinner.json -------------------------------------------------------------------------------- /.autodoc/docs/json/src/cli/summary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/json/src/cli/summary.json -------------------------------------------------------------------------------- /.autodoc/docs/json/src/cli/utils/APIRateLimit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/json/src/cli/utils/APIRateLimit.json -------------------------------------------------------------------------------- /.autodoc/docs/json/src/cli/utils/FileUtil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/json/src/cli/utils/FileUtil.json -------------------------------------------------------------------------------- /.autodoc/docs/json/src/cli/utils/LLMUtil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/json/src/cli/utils/LLMUtil.json -------------------------------------------------------------------------------- /.autodoc/docs/json/src/cli/utils/WaitUtil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/json/src/cli/utils/WaitUtil.json -------------------------------------------------------------------------------- /.autodoc/docs/json/src/cli/utils/summary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/json/src/cli/utils/summary.json -------------------------------------------------------------------------------- /.autodoc/docs/json/src/cli/utils/traverseFileSystem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/json/src/cli/utils/traverseFileSystem.json -------------------------------------------------------------------------------- /.autodoc/docs/json/src/const.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/json/src/const.json -------------------------------------------------------------------------------- /.autodoc/docs/json/src/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/json/src/index.json -------------------------------------------------------------------------------- /.autodoc/docs/json/src/langchain/hnswlib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/json/src/langchain/hnswlib.json -------------------------------------------------------------------------------- /.autodoc/docs/json/src/langchain/summary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/json/src/langchain/summary.json -------------------------------------------------------------------------------- /.autodoc/docs/json/src/summary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/json/src/summary.json -------------------------------------------------------------------------------- /.autodoc/docs/json/src/types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/json/src/types.json -------------------------------------------------------------------------------- /.autodoc/docs/json/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/json/tsconfig.json -------------------------------------------------------------------------------- /.autodoc/docs/markdown/src/cli/commands/estimate/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/markdown/src/cli/commands/estimate/index.md -------------------------------------------------------------------------------- /.autodoc/docs/markdown/src/cli/commands/estimate/summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/markdown/src/cli/commands/estimate/summary.md -------------------------------------------------------------------------------- /.autodoc/docs/markdown/src/cli/commands/index/convertJsonToMarkdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/markdown/src/cli/commands/index/convertJsonToMarkdown.md -------------------------------------------------------------------------------- /.autodoc/docs/markdown/src/cli/commands/index/createVectorStore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/markdown/src/cli/commands/index/createVectorStore.md -------------------------------------------------------------------------------- /.autodoc/docs/markdown/src/cli/commands/index/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/markdown/src/cli/commands/index/index.md -------------------------------------------------------------------------------- /.autodoc/docs/markdown/src/cli/commands/index/processRepository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/markdown/src/cli/commands/index/processRepository.md -------------------------------------------------------------------------------- /.autodoc/docs/markdown/src/cli/commands/index/prompts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/markdown/src/cli/commands/index/prompts.md -------------------------------------------------------------------------------- /.autodoc/docs/markdown/src/cli/commands/index/summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/markdown/src/cli/commands/index/summary.md -------------------------------------------------------------------------------- /.autodoc/docs/markdown/src/cli/commands/init/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/markdown/src/cli/commands/init/index.md -------------------------------------------------------------------------------- /.autodoc/docs/markdown/src/cli/commands/init/summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/markdown/src/cli/commands/init/summary.md -------------------------------------------------------------------------------- /.autodoc/docs/markdown/src/cli/commands/query/createChatChain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/markdown/src/cli/commands/query/createChatChain.md -------------------------------------------------------------------------------- /.autodoc/docs/markdown/src/cli/commands/query/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/markdown/src/cli/commands/query/index.md -------------------------------------------------------------------------------- /.autodoc/docs/markdown/src/cli/commands/query/summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/markdown/src/cli/commands/query/summary.md -------------------------------------------------------------------------------- /.autodoc/docs/markdown/src/cli/commands/summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/markdown/src/cli/commands/summary.md -------------------------------------------------------------------------------- /.autodoc/docs/markdown/src/cli/commands/user/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/markdown/src/cli/commands/user/index.md -------------------------------------------------------------------------------- /.autodoc/docs/markdown/src/cli/commands/user/summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/markdown/src/cli/commands/user/summary.md -------------------------------------------------------------------------------- /.autodoc/docs/markdown/src/cli/spinner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/markdown/src/cli/spinner.md -------------------------------------------------------------------------------- /.autodoc/docs/markdown/src/cli/summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/markdown/src/cli/summary.md -------------------------------------------------------------------------------- /.autodoc/docs/markdown/src/cli/utils/APIRateLimit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/markdown/src/cli/utils/APIRateLimit.md -------------------------------------------------------------------------------- /.autodoc/docs/markdown/src/cli/utils/FileUtil.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/markdown/src/cli/utils/FileUtil.md -------------------------------------------------------------------------------- /.autodoc/docs/markdown/src/cli/utils/LLMUtil.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/markdown/src/cli/utils/LLMUtil.md -------------------------------------------------------------------------------- /.autodoc/docs/markdown/src/cli/utils/WaitUtil.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/markdown/src/cli/utils/WaitUtil.md -------------------------------------------------------------------------------- /.autodoc/docs/markdown/src/cli/utils/summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/markdown/src/cli/utils/summary.md -------------------------------------------------------------------------------- /.autodoc/docs/markdown/src/cli/utils/traverseFileSystem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/markdown/src/cli/utils/traverseFileSystem.md -------------------------------------------------------------------------------- /.autodoc/docs/markdown/src/const.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/markdown/src/const.md -------------------------------------------------------------------------------- /.autodoc/docs/markdown/src/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/markdown/src/index.md -------------------------------------------------------------------------------- /.autodoc/docs/markdown/src/langchain/hnswlib.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/markdown/src/langchain/hnswlib.md -------------------------------------------------------------------------------- /.autodoc/docs/markdown/src/langchain/summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/markdown/src/langchain/summary.md -------------------------------------------------------------------------------- /.autodoc/docs/markdown/src/summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/markdown/src/summary.md -------------------------------------------------------------------------------- /.autodoc/docs/markdown/src/types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/markdown/src/types.md -------------------------------------------------------------------------------- /.autodoc/docs/markdown/tsconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.autodoc/docs/markdown/tsconfig.md -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/README.md -------------------------------------------------------------------------------- /assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/assets/.DS_Store -------------------------------------------------------------------------------- /assets/autodoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/assets/autodoc.png -------------------------------------------------------------------------------- /assets/index-estimate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/assets/index-estimate.png -------------------------------------------------------------------------------- /assets/index-finished.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/assets/index-finished.png -------------------------------------------------------------------------------- /assets/q-command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/assets/q-command.png -------------------------------------------------------------------------------- /assets/query.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/assets/query.gif -------------------------------------------------------------------------------- /assets/query.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/assets/query.mov -------------------------------------------------------------------------------- /assets/select-models.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/assets/select-models.png -------------------------------------------------------------------------------- /autodoc.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/autodoc.config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/package.json -------------------------------------------------------------------------------- /src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/src/.DS_Store -------------------------------------------------------------------------------- /src/cli/commands/estimate/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/src/cli/commands/estimate/index.ts -------------------------------------------------------------------------------- /src/cli/commands/index/convertJsonToMarkdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/src/cli/commands/index/convertJsonToMarkdown.ts -------------------------------------------------------------------------------- /src/cli/commands/index/createVectorStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/src/cli/commands/index/createVectorStore.ts -------------------------------------------------------------------------------- /src/cli/commands/index/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/src/cli/commands/index/index.ts -------------------------------------------------------------------------------- /src/cli/commands/index/processRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/src/cli/commands/index/processRepository.ts -------------------------------------------------------------------------------- /src/cli/commands/index/prompts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/src/cli/commands/index/prompts.ts -------------------------------------------------------------------------------- /src/cli/commands/index/selectModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/src/cli/commands/index/selectModel.ts -------------------------------------------------------------------------------- /src/cli/commands/init/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/src/cli/commands/init/index.ts -------------------------------------------------------------------------------- /src/cli/commands/query/createChatChain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/src/cli/commands/query/createChatChain.ts -------------------------------------------------------------------------------- /src/cli/commands/query/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/src/cli/commands/query/index.ts -------------------------------------------------------------------------------- /src/cli/commands/user/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/src/cli/commands/user/index.ts -------------------------------------------------------------------------------- /src/cli/spinner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/src/cli/spinner.ts -------------------------------------------------------------------------------- /src/cli/utils/APIRateLimit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/src/cli/utils/APIRateLimit.ts -------------------------------------------------------------------------------- /src/cli/utils/FileUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/src/cli/utils/FileUtil.ts -------------------------------------------------------------------------------- /src/cli/utils/LLMUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/src/cli/utils/LLMUtil.ts -------------------------------------------------------------------------------- /src/cli/utils/WaitUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/src/cli/utils/WaitUtil.ts -------------------------------------------------------------------------------- /src/cli/utils/traverseFileSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/src/cli/utils/traverseFileSystem.ts -------------------------------------------------------------------------------- /src/const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/src/const.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/langchain/hnswlib.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/src/langchain/hnswlib.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/src/types.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/context-labs/autodoc/HEAD/tsconfig.json --------------------------------------------------------------------------------