# AGENTS.md

Milvus is a high-performance, cloud-native vector database built for scalable vector ANN search

## Setup

```
go mod download
```

## Commands

```
make milvus
make build-go
make milvus-gpu
make get-build-deps
make getdeps
make get-proto-deps
```

## Layout

- `internal/` 3355 source files
- `pkg/`      700 source files
- `tests/`    520 source files
- `client/`   197 source files
- `cmd/`      82 source files
- `scripts/`  35 source files

## Conventions

- Tests live alongside the code they cover, following `build/ci/jenkins/pod/chaos-test.yaml`.
- CI defines what passing means. See `.github/workflows/all-contributors.yaml`, and keep it green.
- TODO: add the two or three conventions a newcomer always gets wrong here.

## Gotchas

- Generated output is committed (`build/`). Search will return the compiled copy, so edit the source, not that.
- `internal/http/webui/assets/index-nmS7rbPW.js` is 915KB. It will not fit comfortably in context, so read it in parts.

---

Drafted by agentreadme.com from what is in this repository. Everything marked TODO
needs a human. Check it in as AGENTS.md at the root.
