weco 0.2.9__py3-none-any.whl → 0.2.11__py3-none-any.whl

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.
weco/__init__.py CHANGED
@@ -1,4 +1,4 @@
1
1
  # DO NOT EDIT
2
- __pkg_version__ = "0.2.9"
2
+ __pkg_version__ = "0.2.11"
3
3
  __api_version__ = "v1"
4
4
  __base_url__ = f"https://api.aide.weco.ai/{__api_version__}"
weco/cli.py CHANGED
@@ -125,7 +125,7 @@ def main() -> None:
125
125
  runs_dir.mkdir(parents=True, exist_ok=True)
126
126
 
127
127
  # Save the original code (.runs/<session-id>/original.<extension>)
128
- runs_copy_source_fp = runs_dir / f"original.{source_fp.suffix}"
128
+ runs_copy_source_fp = runs_dir / f"original{source_fp.suffix}"
129
129
  write_to_path(fp=runs_copy_source_fp, content=source_code)
130
130
 
131
131
  # Write the code string to the source file path
@@ -342,8 +342,8 @@ def main() -> None:
342
342
  # Update the end optimization layout
343
343
  final_message = (
344
344
  f"{summary_panel.metric_name.capitalize()} {'maximized' if summary_panel.maximize else 'minimized'}! Best solution {summary_panel.metric_name.lower()} = [green]{status_response['best_result']['metric_value']}[/] 🏆"
345
- if best_solution_node is not None
346
- else "[red] No solution found.[/]"
345
+ if best_solution_node is not None and best_solution_node.metric is not None
346
+ else "[red] No valid solution found.[/]"
347
347
  )
348
348
  end_optimization_layout["summary"].update(summary_panel.get_display(final_message=final_message))
349
349
  end_optimization_layout["tree"].update(tree_panel.get_display())
@@ -352,8 +352,13 @@ def main() -> None:
352
352
  # Save optimization results
353
353
  # If the best solution does not exist or is has not been measured at the end of the optimization
354
354
  # save the original solution as the best solution
355
- best_solution_code = best_solution_node.code
356
- best_solution_score = best_solution_node.metric
355
+ if best_solution_node is not None:
356
+ best_solution_code = best_solution_node.code
357
+ best_solution_score = best_solution_node.metric
358
+ else:
359
+ best_solution_code = None
360
+ best_solution_score = None
361
+
357
362
  if best_solution_code is None or best_solution_score is None:
358
363
  best_solution_content = (
359
364
  f"# Weco could not find a better solution\n\n{read_from_path(fp=runs_copy_source_fp, is_json=False)}"
@@ -368,7 +373,7 @@ def main() -> None:
368
373
  best_solution_content = f"# Best solution from Weco with a score of {best_score_str}\n\n{best_solution_code}"
369
374
 
370
375
  # Save best solution to .runs/<session-id>/best.<extension>
371
- write_to_path(fp=runs_dir / f"best.{source_fp.suffix}", content=best_solution_content)
376
+ write_to_path(fp=runs_dir / f"best{source_fp.suffix}", content=best_solution_content)
372
377
 
373
378
  # write the best solution to the source file
374
379
  if not args.preserve_source:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: weco
3
- Version: 0.2.9
3
+ Version: 0.2.11
4
4
  Summary: Documentation for `weco`, a CLI for using Weco AI's code optimizer.
5
5
  Author-email: Weco AI Team <contact@weco.ai>
6
6
  License: MIT
@@ -0,0 +1,11 @@
1
+ weco/__init__.py,sha256=FRQQiNgU5a_qo5d4NNNgMXZ5YvwxlvISipBZeXH4wjc,125
2
+ weco/api.py,sha256=89lB2572jApAxkA0DDppDnJKBwvZTa3kH9jFpC0LFDQ,3313
3
+ weco/cli.py,sha256=fisH7Gvhupu-mgpC4Dmt4x5y0KtVo_o-LjYU_iTymW4,18481
4
+ weco/panels.py,sha256=R_df-VAbWyLoqCA9A6UzbIGZ9sm2IgJO4idnyjmrHQk,12701
5
+ weco/utils.py,sha256=hhIebUPnetFMfNSFfcsKVw1TSpeu_Zw3rBPPnxDie0U,3911
6
+ weco-0.2.11.dist-info/licenses/LICENSE,sha256=p_GQqJBvuZgkLNboYKyH-5dhpTDlKs2wq2TVM55WrWE,1065
7
+ weco-0.2.11.dist-info/METADATA,sha256=XqDYBWUfDcLowdk1Ycib5SKLHOi4vQ8Ogbt6M1go7Wk,9379
8
+ weco-0.2.11.dist-info/WHEEL,sha256=pxyMxgL8-pra_rKaQ4drOZAegBVuX-G_4nRHjjgWbmo,91
9
+ weco-0.2.11.dist-info/entry_points.txt,sha256=ixJ2uClALbCpBvnIR6BXMNck8SHAab8eVkM9pIUowcs,39
10
+ weco-0.2.11.dist-info/top_level.txt,sha256=F0N7v6e2zBSlsorFv-arAq2yDxQbzX3KVO8GxYhPUeE,5
11
+ weco-0.2.11.dist-info/RECORD,,
@@ -1,11 +0,0 @@
1
- weco/__init__.py,sha256=8vfBL3OdlOveq9nYktaI3JQLXAeR7Pnwz8TRZ3xu0nA,124
2
- weco/api.py,sha256=89lB2572jApAxkA0DDppDnJKBwvZTa3kH9jFpC0LFDQ,3313
3
- weco/cli.py,sha256=iTecBQ0gAqyQixj7tNU9S6f9NW7TMSGZtH8nw-85_Oc,18276
4
- weco/panels.py,sha256=R_df-VAbWyLoqCA9A6UzbIGZ9sm2IgJO4idnyjmrHQk,12701
5
- weco/utils.py,sha256=hhIebUPnetFMfNSFfcsKVw1TSpeu_Zw3rBPPnxDie0U,3911
6
- weco-0.2.9.dist-info/licenses/LICENSE,sha256=p_GQqJBvuZgkLNboYKyH-5dhpTDlKs2wq2TVM55WrWE,1065
7
- weco-0.2.9.dist-info/METADATA,sha256=Fq37xE2H8Ia3brOv6AcjsleqDeDL_U6XiV3bJHZOhCY,9378
8
- weco-0.2.9.dist-info/WHEEL,sha256=pxyMxgL8-pra_rKaQ4drOZAegBVuX-G_4nRHjjgWbmo,91
9
- weco-0.2.9.dist-info/entry_points.txt,sha256=ixJ2uClALbCpBvnIR6BXMNck8SHAab8eVkM9pIUowcs,39
10
- weco-0.2.9.dist-info/top_level.txt,sha256=F0N7v6e2zBSlsorFv-arAq2yDxQbzX3KVO8GxYhPUeE,5
11
- weco-0.2.9.dist-info/RECORD,,
File without changes