rakam-eval-sdk 0.2.0rc1__tar.gz → 0.2.0rc2__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: rakam-eval-sdk
3
- Version: 0.2.0rc1
3
+ Version: 0.2.0rc2
4
4
  Summary: Evaluation Framework SDK
5
5
  Author: Mohamed Bachar Touil
6
6
  License: MIT
@@ -4,7 +4,7 @@ build-backend = "uv_build"
4
4
 
5
5
  [project]
6
6
  name = "rakam-eval-sdk"
7
- version = "0.2.0rc1"
7
+ version = "0.2.0rc2"
8
8
  description = "Evaluation Framework SDK"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.8"
@@ -29,9 +29,10 @@ console = Console()
29
29
  PROJECT_ROOT = os.path.abspath(".")
30
30
  if PROJECT_ROOT not in sys.path:
31
31
  sys.path.insert(0, PROJECT_ROOT)
32
+ list_app = typer.Typer(help="List resources")
33
+ app.add_typer(list_app, name="list")
32
34
 
33
-
34
- @app.command()
35
+ @list_app.command("eval")
35
36
  def list(
36
37
  directory: Path = typer.Argument(
37
38
  Path("./eval"),
@@ -65,8 +66,7 @@ def list(
65
66
  typer.echo(f"No @{TARGET_DECORATOR} functions found.")
66
67
 
67
68
 
68
- list_app = typer.Typer(help="List resources")
69
- app.add_typer(list_app, name="list")
69
+
70
70
 
71
71
 
72
72
  @list_app.command("runs")