Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ eyrie is part of the hawk-eco:
### Build & Test

```bash
go build ./cmd/eyrie # Build binary
go build ./... # Verify the library compiles
go test -race ./... # Run all tests with race detector
make ci # Run full CI suite (lint, test, security)
make cover # Generate coverage report
Expand Down
3 changes: 1 addition & 2 deletions docs/ARCHITECTURE.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@ eyrie is the LLM provider runtime for the hawk ecosystem. It sits between the ap

```
eyrie/
├── cmd/eyrie/ ⚡ Entry point — CLI arg parsing, server startup
├── api/openapi.yaml 📜 REST API contract (OpenAPI 3.1)
├── api/openapi.yaml 📜 REST API contract (OpenAPI 3.1) — embedded HTTP server surface
├── client/
│ ├── client.go 🔌 Provider interface + EyrieClient factory
│ ├── anthropic.go 🟠 Anthropic Claude provider
Expand Down
Loading