fastevolve 0.3.1__tar.gz → 0.3.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {fastevolve-0.3.1 → fastevolve-0.3.2}/PKG-INFO +33 -6
- {fastevolve-0.3.1 → fastevolve-0.3.2}/README.md +32 -5
- {fastevolve-0.3.1 → fastevolve-0.3.2}/pyproject.toml +1 -1
- {fastevolve-0.3.1 → fastevolve-0.3.2}/uv.lock +1 -1
- {fastevolve-0.3.1 → fastevolve-0.3.2}/.claude/settings.local.json +0 -0
- {fastevolve-0.3.1 → fastevolve-0.3.2}/.gitignore +0 -0
- {fastevolve-0.3.1 → fastevolve-0.3.2}/.python-version +0 -0
- {fastevolve-0.3.1 → fastevolve-0.3.2}/fastevolve/__init__.py +0 -0
- {fastevolve-0.3.1 → fastevolve-0.3.2}/fastevolve/checkpoint.py +0 -0
- {fastevolve-0.3.1 → fastevolve-0.3.2}/fastevolve/config.py +0 -0
- {fastevolve-0.3.1 → fastevolve-0.3.2}/fastevolve/controller.py +0 -0
- {fastevolve-0.3.1 → fastevolve-0.3.2}/fastevolve/evaluator/__init__.py +0 -0
- {fastevolve-0.3.1 → fastevolve-0.3.2}/fastevolve/evaluator/config.py +0 -0
- {fastevolve-0.3.1 → fastevolve-0.3.2}/fastevolve/evaluator/evaluator.py +0 -0
- {fastevolve-0.3.1 → fastevolve-0.3.2}/fastevolve/evaluator/result.py +0 -0
- {fastevolve-0.3.1 → fastevolve-0.3.2}/fastevolve/llm_ensemble/__init__.py +0 -0
- {fastevolve-0.3.1 → fastevolve-0.3.2}/fastevolve/llm_ensemble/anthropic_llm.py +0 -0
- {fastevolve-0.3.1 → fastevolve-0.3.2}/fastevolve/llm_ensemble/base.py +0 -0
- {fastevolve-0.3.1 → fastevolve-0.3.2}/fastevolve/llm_ensemble/config.py +0 -0
- {fastevolve-0.3.1 → fastevolve-0.3.2}/fastevolve/llm_ensemble/ensemble.py +0 -0
- {fastevolve-0.3.1 → fastevolve-0.3.2}/fastevolve/llm_ensemble/ollama.py +0 -0
- {fastevolve-0.3.1 → fastevolve-0.3.2}/fastevolve/llm_ensemble/openai_llm.py +0 -0
- {fastevolve-0.3.1 → fastevolve-0.3.2}/fastevolve/program_database/__init__.py +0 -0
- {fastevolve-0.3.1 → fastevolve-0.3.2}/fastevolve/program_database/config.py +0 -0
- {fastevolve-0.3.1 → fastevolve-0.3.2}/fastevolve/program_database/database.py +0 -0
- {fastevolve-0.3.1 → fastevolve-0.3.2}/fastevolve/program_database/embedder.py +0 -0
- {fastevolve-0.3.1 → fastevolve-0.3.2}/fastevolve/program_database/program.py +0 -0
- {fastevolve-0.3.1 → fastevolve-0.3.2}/fastevolve/prompt_sampler/__init__.py +0 -0
- {fastevolve-0.3.1 → fastevolve-0.3.2}/fastevolve/prompt_sampler/config.py +0 -0
- {fastevolve-0.3.1 → fastevolve-0.3.2}/fastevolve/prompt_sampler/sampler.py +0 -0
- {fastevolve-0.3.1 → fastevolve-0.3.2}/fastevolve/prompt_sampler/template_library.py +0 -0
- {fastevolve-0.3.1 → fastevolve-0.3.2}/fastevolve/telemetry.py +0 -0
- {fastevolve-0.3.1 → fastevolve-0.3.2}/main.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: fastevolve
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.2
|
|
4
4
|
Summary: Minimal open-source AlphaEvolve: LLM-driven program evolution with MAP-Elites islands, cascade evaluation, and a local Ollama ensemble.
|
|
5
5
|
Project-URL: Homepage, https://github.com/tiagomonteiro0715/fastevolve
|
|
6
6
|
Project-URL: Repository, https://github.com/tiagomonteiro0715/fastevolve
|
|
@@ -34,20 +34,47 @@ Minimal open-source AlphaEvolve: LLM-driven program evolution with MAP-Elites is
|
|
|
34
34
|
|
|
35
35
|
## Install
|
|
36
36
|
|
|
37
|
+
### 1. Install uv (one-time)
|
|
38
|
+
|
|
39
|
+
uv is a fast Python package manager. Pick the line for your OS:
|
|
40
|
+
|
|
41
|
+
```bash
|
|
42
|
+
# macOS / Linux
|
|
43
|
+
curl -LsSf https://astral.sh/uv/install.sh | sh
|
|
44
|
+
|
|
45
|
+
# Windows (PowerShell)
|
|
46
|
+
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
Or via Homebrew (`brew install uv`), pipx (`pipx install uv`), or pip (`pip install uv`).
|
|
50
|
+
|
|
51
|
+
### 2. Add fastevolve to a new project
|
|
52
|
+
|
|
37
53
|
```bash
|
|
38
|
-
uv
|
|
54
|
+
uv init my-evolve-project
|
|
55
|
+
cd my-evolve-project
|
|
56
|
+
uv add fastevolve
|
|
39
57
|
```
|
|
40
58
|
|
|
41
|
-
|
|
59
|
+
OpenAI and Anthropic SDKs are optional extras — install whichever you need:
|
|
42
60
|
|
|
43
61
|
```bash
|
|
44
|
-
uv
|
|
45
|
-
uv
|
|
46
|
-
uv
|
|
62
|
+
uv add "fastevolve[openai]" # adds the OpenAI SDK
|
|
63
|
+
uv add "fastevolve[anthropic]" # adds the Anthropic SDK
|
|
64
|
+
uv add "fastevolve[all]" # both
|
|
47
65
|
```
|
|
48
66
|
|
|
49
67
|
If you only use Ollama, skip the extras — neither SDK will be imported.
|
|
50
68
|
|
|
69
|
+
### 3. Or clone this repo and sync
|
|
70
|
+
|
|
71
|
+
```bash
|
|
72
|
+
git clone https://github.com/tiagomonteiro0715/fastevolve.git
|
|
73
|
+
cd fastevolve
|
|
74
|
+
uv sync # core
|
|
75
|
+
uv sync --extra all # core + OpenAI + Anthropic
|
|
76
|
+
```
|
|
77
|
+
|
|
51
78
|
## Quick start in code
|
|
52
79
|
|
|
53
80
|
### Local (with Ollama)
|
|
@@ -4,20 +4,47 @@ Minimal open-source AlphaEvolve: LLM-driven program evolution with MAP-Elites is
|
|
|
4
4
|
|
|
5
5
|
## Install
|
|
6
6
|
|
|
7
|
+
### 1. Install uv (one-time)
|
|
8
|
+
|
|
9
|
+
uv is a fast Python package manager. Pick the line for your OS:
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
# macOS / Linux
|
|
13
|
+
curl -LsSf https://astral.sh/uv/install.sh | sh
|
|
14
|
+
|
|
15
|
+
# Windows (PowerShell)
|
|
16
|
+
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
Or via Homebrew (`brew install uv`), pipx (`pipx install uv`), or pip (`pip install uv`).
|
|
20
|
+
|
|
21
|
+
### 2. Add fastevolve to a new project
|
|
22
|
+
|
|
7
23
|
```bash
|
|
8
|
-
uv
|
|
24
|
+
uv init my-evolve-project
|
|
25
|
+
cd my-evolve-project
|
|
26
|
+
uv add fastevolve
|
|
9
27
|
```
|
|
10
28
|
|
|
11
|
-
|
|
29
|
+
OpenAI and Anthropic SDKs are optional extras — install whichever you need:
|
|
12
30
|
|
|
13
31
|
```bash
|
|
14
|
-
uv
|
|
15
|
-
uv
|
|
16
|
-
uv
|
|
32
|
+
uv add "fastevolve[openai]" # adds the OpenAI SDK
|
|
33
|
+
uv add "fastevolve[anthropic]" # adds the Anthropic SDK
|
|
34
|
+
uv add "fastevolve[all]" # both
|
|
17
35
|
```
|
|
18
36
|
|
|
19
37
|
If you only use Ollama, skip the extras — neither SDK will be imported.
|
|
20
38
|
|
|
39
|
+
### 3. Or clone this repo and sync
|
|
40
|
+
|
|
41
|
+
```bash
|
|
42
|
+
git clone https://github.com/tiagomonteiro0715/fastevolve.git
|
|
43
|
+
cd fastevolve
|
|
44
|
+
uv sync # core
|
|
45
|
+
uv sync --extra all # core + OpenAI + Anthropic
|
|
46
|
+
```
|
|
47
|
+
|
|
21
48
|
## Quick start in code
|
|
22
49
|
|
|
23
50
|
### Local (with Ollama)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "fastevolve"
|
|
3
|
-
version = "0.3.
|
|
3
|
+
version = "0.3.2"
|
|
4
4
|
description = "Minimal open-source AlphaEvolve: LLM-driven program evolution with MAP-Elites islands, cascade evaluation, and a local Ollama ensemble."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.12"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|