mirror of
https://github.com/flakestorm/flakestorm.git
synced 2026-07-15 22:41:02 +02:00
Refactor Entropix to FlakeStorm
- Rename all instances of Entropix to FlakeStorm - Rename package from entropix to flakestorm - Update all class names (EntropixConfig -> FlakeStormConfig, EntropixRunner -> FlakeStormRunner) - Update Rust module from entropix_rust to flakestorm_rust - Update README: remove cloud comparison, update links to flakestorm.com - Update .gitignore to allow docs files referenced in README - Add origin remote for VS Code compatibility - Fix missing imports and type references - All imports and references updated throughout codebase
This commit is contained in:
parent
7b75fc9530
commit
61652be09b
48 changed files with 586 additions and 425 deletions
|
|
@ -9,7 +9,7 @@ from pathlib import Path
|
|||
|
||||
# Import the performance module directly to avoid heavy dependencies like pydantic
|
||||
_perf_path = (
|
||||
Path(__file__).parent.parent / "src" / "entropix" / "core" / "performance.py"
|
||||
Path(__file__).parent.parent / "src" / "flakestorm" / "core" / "performance.py"
|
||||
)
|
||||
_spec = importlib.util.spec_from_file_location("performance", _perf_path)
|
||||
_performance = importlib.util.module_from_spec(_spec)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue