TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: Local LLM to explore code repositories?

1 点作者 yamrzou3 个月前
Is there an LLM that you can feed a repository and then ask it questions it? It would be useful for large repositories that lack documentation.

2 条评论

codemartial3 个月前
You cannot use LLM models directly. You need to build a system that takes your repository as input and create an Agent that can answer your queries.
评论 #43182600 未加载
nunobispo3 个月前
You can try Code Llama with Ollama.<p><a href="https:&#x2F;&#x2F;ollama.com&#x2F;library&#x2F;codellama">https:&#x2F;&#x2F;ollama.com&#x2F;library&#x2F;codellama</a><p>You would need to prepare some script to read the repository and RAG the content.<p>Can also use Ollama for embedding: <a href="https:&#x2F;&#x2F;ollama.com&#x2F;library&#x2F;nomic-embed-text">https:&#x2F;&#x2F;ollama.com&#x2F;library&#x2F;nomic-embed-text</a>