Commit 43aabc5
authored
fix: post training algorithm param (#310)
was getting:
```
╰─ llama-stack-client --version
Traceback (most recent call last):
File "/Users/charliedoern/projects/Documents/llama-stack/venv/bin/llama-stack-client", line 4, in <module>
from llama_stack_client.lib.cli.llama_stack_client import main
File "/Users/charliedoern/projects/Documents/llama-stack-client-python/src/llama_stack_client/lib/cli/llama_stack_client.py", line 23, in <module>
from .post_training import post_training
File "/Users/charliedoern/projects/Documents/llama-stack-client-python/src/llama_stack_client/lib/cli/post_training/__init__.py", line 7, in <module>
from .post_training import post_training
File "/Users/charliedoern/projects/Documents/llama-stack-client-python/src/llama_stack_client/lib/cli/post_training/post_training.py", line 12, in <module>
from llama_stack_client.types.alpha.post_training_supervised_fine_tune_params import (
ImportError: cannot import name 'AlgorithmConfigParam' from 'llama_stack_client.types.alpha.post_training_supervised_fine_tune_params' (/Users/charliedoern/projects/Documents/llama-stack-client-python/src/llama_stack_client/types/alpha/post_training_supervised_fine_tune_params.py). Did you mean: 'AlgorithmConfig'?
```
fixes that.
Signed-off-by: Charlie Doern <cdoern@redhat.com>1 parent 15fa286 commit 43aabc5
File tree
1 file changed
+2
-2
lines changed- src/llama_stack_client/lib/cli/post_training
1 file changed
+2
-2
lines changedLines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
10 | 10 | | |
11 | 11 | | |
12 | 12 | | |
13 | | - | |
| 13 | + | |
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
| |||
36 | 36 | | |
37 | 37 | | |
38 | 38 | | |
39 | | - | |
| 39 | + | |
40 | 40 | | |
41 | 41 | | |
42 | 42 | | |
| |||
0 commit comments