from chromadb import HttpClient
client = HttpClient(host="localhost", port=8001)

for c in client.list_collections():
    print(f"컬렉션 이름: {c.name}, UUID: {c.id}")
