fastevolve 0.3.0__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.
Files changed (33) hide show
  1. {fastevolve-0.3.0 → fastevolve-0.3.2}/.gitignore +1 -0
  2. {fastevolve-0.3.0 → fastevolve-0.3.2}/PKG-INFO +33 -6
  3. {fastevolve-0.3.0 → fastevolve-0.3.2}/README.md +32 -5
  4. {fastevolve-0.3.0 → fastevolve-0.3.2}/pyproject.toml +1 -1
  5. {fastevolve-0.3.0 → fastevolve-0.3.2}/uv.lock +1 -1
  6. {fastevolve-0.3.0 → fastevolve-0.3.2}/.claude/settings.local.json +0 -0
  7. {fastevolve-0.3.0 → fastevolve-0.3.2}/.python-version +0 -0
  8. {fastevolve-0.3.0 → fastevolve-0.3.2}/fastevolve/__init__.py +0 -0
  9. {fastevolve-0.3.0 → fastevolve-0.3.2}/fastevolve/checkpoint.py +0 -0
  10. {fastevolve-0.3.0 → fastevolve-0.3.2}/fastevolve/config.py +0 -0
  11. {fastevolve-0.3.0 → fastevolve-0.3.2}/fastevolve/controller.py +0 -0
  12. {fastevolve-0.3.0 → fastevolve-0.3.2}/fastevolve/evaluator/__init__.py +0 -0
  13. {fastevolve-0.3.0 → fastevolve-0.3.2}/fastevolve/evaluator/config.py +0 -0
  14. {fastevolve-0.3.0 → fastevolve-0.3.2}/fastevolve/evaluator/evaluator.py +0 -0
  15. {fastevolve-0.3.0 → fastevolve-0.3.2}/fastevolve/evaluator/result.py +0 -0
  16. {fastevolve-0.3.0 → fastevolve-0.3.2}/fastevolve/llm_ensemble/__init__.py +0 -0
  17. {fastevolve-0.3.0 → fastevolve-0.3.2}/fastevolve/llm_ensemble/anthropic_llm.py +0 -0
  18. {fastevolve-0.3.0 → fastevolve-0.3.2}/fastevolve/llm_ensemble/base.py +0 -0
  19. {fastevolve-0.3.0 → fastevolve-0.3.2}/fastevolve/llm_ensemble/config.py +0 -0
  20. {fastevolve-0.3.0 → fastevolve-0.3.2}/fastevolve/llm_ensemble/ensemble.py +0 -0
  21. {fastevolve-0.3.0 → fastevolve-0.3.2}/fastevolve/llm_ensemble/ollama.py +0 -0
  22. {fastevolve-0.3.0 → fastevolve-0.3.2}/fastevolve/llm_ensemble/openai_llm.py +0 -0
  23. {fastevolve-0.3.0 → fastevolve-0.3.2}/fastevolve/program_database/__init__.py +0 -0
  24. {fastevolve-0.3.0 → fastevolve-0.3.2}/fastevolve/program_database/config.py +0 -0
  25. {fastevolve-0.3.0 → fastevolve-0.3.2}/fastevolve/program_database/database.py +0 -0
  26. {fastevolve-0.3.0 → fastevolve-0.3.2}/fastevolve/program_database/embedder.py +0 -0
  27. {fastevolve-0.3.0 → fastevolve-0.3.2}/fastevolve/program_database/program.py +0 -0
  28. {fastevolve-0.3.0 → fastevolve-0.3.2}/fastevolve/prompt_sampler/__init__.py +0 -0
  29. {fastevolve-0.3.0 → fastevolve-0.3.2}/fastevolve/prompt_sampler/config.py +0 -0
  30. {fastevolve-0.3.0 → fastevolve-0.3.2}/fastevolve/prompt_sampler/sampler.py +0 -0
  31. {fastevolve-0.3.0 → fastevolve-0.3.2}/fastevolve/prompt_sampler/template_library.py +0 -0
  32. {fastevolve-0.3.0 → fastevolve-0.3.2}/fastevolve/telemetry.py +0 -0
  33. {fastevolve-0.3.0 → fastevolve-0.3.2}/main.py +0 -0
@@ -6,6 +6,7 @@ dist/
6
6
  wheels/
7
7
  *.egg-info
8
8
  local_instructions.txt
9
+ release.bat
9
10
 
10
11
  # Virtual environments
11
12
  .venv
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fastevolve
3
- Version: 0.3.0
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 sync
54
+ uv init my-evolve-project
55
+ cd my-evolve-project
56
+ uv add fastevolve
39
57
  ```
40
58
 
41
- The core install ships with Ollama support only. OpenAI and Anthropic SDKs are optional extras — install whichever you need:
59
+ OpenAI and Anthropic SDKs are optional extras — install whichever you need:
42
60
 
43
61
  ```bash
44
- uv sync --extra openai # adds the OpenAI SDK
45
- uv sync --extra anthropic # adds the Anthropic SDK
46
- uv sync --extra all # both
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 sync
24
+ uv init my-evolve-project
25
+ cd my-evolve-project
26
+ uv add fastevolve
9
27
  ```
10
28
 
11
- The core install ships with Ollama support only. OpenAI and Anthropic SDKs are optional extras — install whichever you need:
29
+ OpenAI and Anthropic SDKs are optional extras — install whichever you need:
12
30
 
13
31
  ```bash
14
- uv sync --extra openai # adds the OpenAI SDK
15
- uv sync --extra anthropic # adds the Anthropic SDK
16
- uv sync --extra all # both
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.0"
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"
@@ -81,7 +81,7 @@ wheels = [
81
81
 
82
82
  [[package]]
83
83
  name = "fastevolve"
84
- version = "0.3.0"
84
+ version = "0.3.2"
85
85
  source = { editable = "." }
86
86
  dependencies = [
87
87
  { name = "ollama" },
File without changes
File without changes