Files
Chromy/chromy/handlers/create_collection.py
2026-04-24 18:23:02 +02:00

12 lines
305 B
Python

from __future__ import annotations
from rich import print
from chromy.chroma_functions import create_collection
def handle_create_collection(collection: str) -> int:
collection_name = create_collection(collection)
print(f"[bold green]Created[/]: collection '{collection_name}'.")
return 0