> zeta won't be free forever Well that's a bummer, but also very understandable. I hope they don't make the hop too early, because I still want to grow into Zed before throw my wallet at them. So far it's very promising!
But Zeta model is open source, so I suppose you could run it locally if you want. I didn't tried it yet, but I suppose that's their intention by open sourcing it.
Zed now predicts your next edit with Zeta, our new open model
21–30 of 301 posts
Re: Zed now predicts your next edit with Zeta, our new open model
#22I also edit secret/env files in my IDE, so for instance, a private key or API key could get sent, right?
I hope there will be a local option later.
Re: Zed now predicts your next edit with Zeta, our new open model
#23Re: Zed now predicts your next edit with Zeta, our new open model
#24Re: Zed now predicts your next edit with Zeta, our new open model
#25I tried CoPilot a while and my biggest gripe was tab for accepting the suggestion. I very often got a ton of AI garbage when I was just trying to indent some code. Tab just doesn't seem like the proper interface for something like this.
Why are you manually indenting code?
I don't remember ever doing that in IDEA or VS Code for ~~python,~~ java or ts.
Edit: I borked about python, my bad.
Re: Zed now predicts your next edit with Zeta, our new open model
#26Seems like you can't run it locally. I don't like my code being sent to a third party, especially when my employer may not agree with it. I also edit secret/env files in my IDE, so for instance, a private key or API key could get sent, right? I hope there will be a local option later.
At least the model is available and interacting with it seems simple, so it's probably quite realistic to have an open/locally runnable version of it. The model isn't very big.
Re: Zed now predicts your next edit with Zeta, our new open model
#27It seem that someone already published different quanta versions of the model [1] . This can be used to define Modelfile to use with ollama locally. But I am not sure that zed allows changing the endpoint of this feature yet (ever). Of course it is opeb source and you can change it but then you will need to build it. [1] https://huggingface.co/mradermacher/zeta-GGUF
Re: Zed now predicts your next edit with Zeta, our new open model
#28It seem that someone already published different quanta versions of the model [1] . This can be used to define Modelfile to use with ollama locally. But I am not sure that zed allows changing the endpoint of this feature yet (ever). Of course it is opeb source and you can change it but then you will need to build it. [1] https://huggingface.co/mradermacher/zeta-GGUF
I found https://github.com/zed-industries/zed/blob/2f734cbd5e2452647... which leads me to believe the environment variable ZED_PREDICT_EDITS_URL does control the endpoint.
Re: Zed now predicts your next edit with Zeta, our new open model
#29I tried CoPilot a while and my biggest gripe was tab for accepting the suggestion. I very often got a ton of AI garbage when I was just trying to indent some code. Tab just doesn't seem like the proper interface for something like this.
I actually wish more editors had emacs style indenting where hitting tab anywhere on the line would re-indent it or otherwise cycle through indent levels if it was unclear, especially because you’re unlikely to get copilot suggestions in the middle of a word. Plus, it doesn’t break if there’s a syntax error elsewhere in the file.
Using code formatters and formatting on save or with a shortcut is OK, but not really the same to me.
That's probably why I'm stuck with Emacs:
1. No need to use the mouse.
2. Extremely efficient keyboard usage (maybe not the most efficient, but compared with common IDEs, certainly).
Makes it feel like I'm actually using a brain computer interface. The somewhat regular yak shaving is a bit of a bummer though. I like that I can modify everything to be exactly how I like it, but I wouldn't mind sensible defaults. Haven't found a distribution yet that works well without tinkering.
Re: Zed now predicts your next edit with Zeta, our new open model
#30I tried CoPilot a while and my biggest gripe was tab for accepting the suggestion. I very often got a ton of AI garbage when I was just trying to indent some code. Tab just doesn't seem like the proper interface for something like this.
> to indent some code. Why are you manually indenting code? I don't remember ever doing that in IDEA or VS Code for ~~python,~~ java or ts. Edit: I borked about python, my bad.
if check_something():
wall_of_text = textwrap.dedent("""
this
is
a
multiline
string
""".strip("\n"))
I hope you agree it's ugly. And you want to make it if check_something():
wall_of_text = textwrap.dedent("""\
this
is
a
multiline
string
""".strip("\n"))
But I don't know any formatter which does this automatically. Because the change here not only changes the looking, it changes semantic. The formatter has to understand that after `textwrap.dedent(_.strip("\n"))` the result does not change and that's hard. So formatter just leave it alone. But it's extremely obvious to a human. Or maybe extremely obvious to a LLM too.