├── .gitignore ├── .npmignore ├── AGENTS.md ├── CHANGELOG.md ├── LICENSE ├── README.md ├── examples ├── email-extraction.ts └── message-spam.ts ├── package.json ├── src ├── adapters │ └── default-adapter.ts ├── gepa.ts ├── index.ts ├── pareto-utils.ts ├── persistence.ts ├── strategies.ts └── types.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/current-ai-llc/dsts/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/current-ai-llc/dsts/HEAD/.npmignore -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/current-ai-llc/dsts/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/current-ai-llc/dsts/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/current-ai-llc/dsts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/current-ai-llc/dsts/HEAD/README.md -------------------------------------------------------------------------------- /examples/email-extraction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/current-ai-llc/dsts/HEAD/examples/email-extraction.ts -------------------------------------------------------------------------------- /examples/message-spam.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/current-ai-llc/dsts/HEAD/examples/message-spam.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/current-ai-llc/dsts/HEAD/package.json -------------------------------------------------------------------------------- /src/adapters/default-adapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/current-ai-llc/dsts/HEAD/src/adapters/default-adapter.ts -------------------------------------------------------------------------------- /src/gepa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/current-ai-llc/dsts/HEAD/src/gepa.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/current-ai-llc/dsts/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/pareto-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/current-ai-llc/dsts/HEAD/src/pareto-utils.ts -------------------------------------------------------------------------------- /src/persistence.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/current-ai-llc/dsts/HEAD/src/persistence.ts -------------------------------------------------------------------------------- /src/strategies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/current-ai-llc/dsts/HEAD/src/strategies.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/current-ai-llc/dsts/HEAD/src/types.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/current-ai-llc/dsts/HEAD/tsconfig.json --------------------------------------------------------------------------------