Files
zeta-2/README.md
ModelHub XC c9227129e9 初始化项目,由ModelHub XC社区提供模型
Model: zed-industries/zeta-2
Source: Original Platform
2026-05-05 03:24:14 +08:00

1.3 KiB

base_model, tags, license, language
base_model tags license language
ByteDance-Seed/Seed-Coder-8B-Base
text-generation-inference
transformers
edit-prediction
next-edit-suggestion
apache-2.0
en

Zeta 2

Zeta 2 is a code edit prediction (also known as next-edit suggestion) model finetuned from ByteDance-Seed/Seed-Coder-8B-Base.

Given code context, edits history and an editable region around the cursor, it predicts the rewritten content for that region.

  • Developed by: Zed Industries
  • License: Apache-2.0
  • Fine-tuned from: ByteDance-Seed/Seed-Coder-8B-Base
  • Model version: 0225-s3-seed

Prompt format

The model uses a SPM (suffix-prefix-middle) style prompt with git-merge-style markers for the editable region:

Here is a minimal example:

<[fim-suffix]>
code after editable region
<[fim-prefix]><filename>related/file.py
related file content

<filename>edit_history
--- a/some_file.py
+++ b/some_file.py
-old
+new

<filename>path/to/target_file.py
code before editable region
<<<<<<< CURRENT
code that
needs to<|user_cursor|>
be rewritten
=======
<[fim-middle]>

Expected output (should be generated by the model, without backticks):

revised content for
the editable region
>>>>>>> UPDATED

Here is a real-world example: