Show HN: Fork of Claude-code working with local and other LLM providers
31–40 of 41 posts
Re: Show HN: Fork of Claude-code working with local and other LLM providers
#32I wonder why doesnt it use RAG for code context retrival across the codebase? Is there some fundamental reason why init in for example claude coder makes this stupid claude.md file instead of vectorizing and indexing the codebase locally?
Re: Show HN: Fork of Claude-code working with local and other LLM providers
#33Re: Show HN: Fork of Claude-code working with local and other LLM providers
#34Re: Show HN: Fork of Claude-code working with local and other LLM providers
#35Earlier quoted context omitted.
Are there examples of LLMs fixing spaghetti code in the wild?
If your spaghetti code is written in React, Claude Code might be able to do it given enough time, and at the cost of a few million tokens.
Re: Show HN: Fork of Claude-code working with local and other LLM providers
#36Maybe it's easier to just set up a proxy mirroring Anthropic's API, but pointing to whatever model you want? Genuine doubt.
It's not much different than your proxy idea. It's implemented as a transformation between the internal message structure (close to Anthropic API's) to OpenAI message spec and vice-versa. Then, it's calling all the other models using the openai-node client, as pretty much everyone supports that now (openrouter, ollama, etc)
Re: Show HN: Fork of Claude-code working with local and other LLM providers
#37Very handy, thanks again for that.
For those who want to check it out, it's an extension to monitor/block network access of other extensions, it also lets you turn them on/off from the same screen:
Re: Show HN: Fork of Claude-code working with local and other LLM providers
#38Thanks a lot! Just wanted to say that for me, no Chromium install is complete without Little Rat there. Very handy, thanks again for that. For those who want to check it out, it's an extension to monitor/block network access of other extensions, it also lets you turn them on/off from the same screen: https://github.com/dnakov/little-rat
Re: Show HN: Fork of Claude-code working with local and other LLM providers
#39Re: Show HN: Fork of Claude-code working with local and other LLM providers
#40I wonder why doesnt it use RAG for code context retrival across the codebase? Is there some fundamental reason why init in for example claude coder makes this stupid claude.md file instead of vectorizing and indexing the codebase locally?