> ## Documentation Index
> Fetch the complete documentation index at: https://doc.blueapi.ir/llms.txt
> Use this file to discover all available pages before exploring further.

# EMEP: Evolutionary Model Engineering Platform

> EMEP creates new high-performing open-weight LLMs via compatibility analysis, tensor-level model merging, automated evaluation, and evolutionary optimization.

EMEP is a documentation-first platform for engineering new large language models from existing compatible open-weight models. The primary loop is deterministic and auditable: analyze compatibility, execute tensor-level merges, evaluate candidates against isolated benchmark splits, compute fitness, and evolve the population. Fine-tuning and RAG are optional supporting layers, not the core.

<Note>
  This site is the specification. Implementation has not started. Every page describes intended behavior with explicit evidence tags: Established / Hypothesis / Assumption / Result / Goal / Unsupported.
</Note>

## The Primary Research Loop

```mermaid theme={null}
flowchart LR
    A[Open-Weight Models] --> B[Compatibility]
    B --> C[Merge]
    C --> D[Candidate]
    D --> E[Evaluation]
    E --> F[Fitness]
    F --> G[Evolution]
    G -->|Next Generation| C
    F --> H[Best Model]
```

## Explore the Specification

<CardGroup cols={2}>
  <Card title="Start Here" icon="rocket" href="/quickstart">
    Understand EMEP in five minutes and the first workflow you can trace end to end.
  </Card>

  <Card title="Project Constitution" icon="scale-balanced" href="/overview/project-constitution">
    The non-negotiable scientific and engineering rules that govern every decision.
  </Card>

  <Card title="System Architecture" icon="cubes" href="/architecture/system-architecture">
    Three-level architecture, from executive view to internal components.
  </Card>

  <Card title="Merge Engine" icon="code-merge" href="/merge/merge-engine">
    Tensor-level merging with SLERP, TIES, DARE, Task Arithmetic, and structural merges.
  </Card>

  <Card title="Evolution Engine" icon="dna" href="/evolution/evolution-engine">
    Population-based search with single- and multi-objective optimization.
  </Card>

  <Card title="Evaluation Framework" icon="chart-line" href="/evaluation/framework">
    Optimization, validation, and hidden test splits with strict isolation.
  </Card>
</CardGroup>

## What EMEP Is Not

<CardGroup cols={2}>
  <Card title="Not a chatbot" icon="ban" />

  <Card title="Not a RAG platform" icon="ban" />

  <Card title="Not a fine-tuning platform" icon="ban" />

  <Card title="Not an agent framework" icon="ban" />
</CardGroup>

Read the [Vision & Scope](/overview/vision-and-scope) for the full boundary, and the [Glossary](/overview/glossary) for exact terminology used across every specification.
