├── .env-template ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── config.py ├── config.yaml ├── examples ├── count.png ├── example.gif ├── langgraph.png ├── llamaindex.png ├── logo.png ├── repos.png ├── selection.png └── shadcn.png ├── llm_service.py ├── repo_service.py ├── requirements.txt ├── token_count.py └── useful_tool └── metadata_extract.py /.env-template: -------------------------------------------------------------------------------- 1 | OPENROUTER_API_KEY=insert_api_key_here -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jw782cn/RepoChat-200k/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jw782cn/RepoChat-200k/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jw782cn/RepoChat-200k/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jw782cn/RepoChat-200k/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jw782cn/RepoChat-200k/HEAD/app.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jw782cn/RepoChat-200k/HEAD/config.py -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jw782cn/RepoChat-200k/HEAD/config.yaml -------------------------------------------------------------------------------- /examples/count.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jw782cn/RepoChat-200k/HEAD/examples/count.png -------------------------------------------------------------------------------- /examples/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jw782cn/RepoChat-200k/HEAD/examples/example.gif -------------------------------------------------------------------------------- /examples/langgraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jw782cn/RepoChat-200k/HEAD/examples/langgraph.png -------------------------------------------------------------------------------- /examples/llamaindex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jw782cn/RepoChat-200k/HEAD/examples/llamaindex.png -------------------------------------------------------------------------------- /examples/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jw782cn/RepoChat-200k/HEAD/examples/logo.png -------------------------------------------------------------------------------- /examples/repos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jw782cn/RepoChat-200k/HEAD/examples/repos.png -------------------------------------------------------------------------------- /examples/selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jw782cn/RepoChat-200k/HEAD/examples/selection.png -------------------------------------------------------------------------------- /examples/shadcn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jw782cn/RepoChat-200k/HEAD/examples/shadcn.png -------------------------------------------------------------------------------- /llm_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jw782cn/RepoChat-200k/HEAD/llm_service.py -------------------------------------------------------------------------------- /repo_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jw782cn/RepoChat-200k/HEAD/repo_service.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jw782cn/RepoChat-200k/HEAD/requirements.txt -------------------------------------------------------------------------------- /token_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jw782cn/RepoChat-200k/HEAD/token_count.py -------------------------------------------------------------------------------- /useful_tool/metadata_extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jw782cn/RepoChat-200k/HEAD/useful_tool/metadata_extract.py --------------------------------------------------------------------------------