Skip to content

Commit bf4a1b6

Browse files
committed
Add status as a default for finetune list
1 parent 693a603 commit bf4a1b6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/together/commands/finetune.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,10 +281,11 @@ def _run_list(args: argparse.Namespace) -> None:
281281
{
282282
"Fine-tune ID": i.get("id"),
283283
"Model Output Name": i.get("model_output_name"),
284+
"Status": i.get("status"),
285+
"Created At": i.get("created_at"),
284286
"Price": finetune_price_to_dollars(
285287
float(str(i.get("total_price")))
286288
), # convert to string for mypy typing
287-
"Created At": i.get("created_at"),
288289
}
289290
)
290291
table = tabulate(display_list, headers="keys", tablefmt="grid", showindex=True)

0 commit comments

Comments
 (0)