Forgot your password?
typodupeerror

Comment Re: Bullshit. (Score 1) 118

Can't do it. I'm refactoring on a large code base. I eventually had to tell it to work on just one task and ignore other concerns it had to prevent it from investigating until it got stuck in a cycle of investigation.

Understood, and yeah single tasking seems like a good workaround given the situation. Or switching to an LLM with a larger context window, if possible/practical. I was able to get about 7X more context window "runway" using the AST approach, but it's a relatively small code base to begin with.

Comment Re: Bullshit. (Score 1) 118

Sounds like you're running up against the context window of whatever LLM you're using. Try converting your code to a minified abstract syntax tree first and pass that to your LLM, and ask it what full text it needs in addition to that. It should stay within the context window much better that way.

Slashdot Top Deals

It's great to be smart 'cause then you know stuff.

Working...