PSX_fyp / test_model.py
Hamza012bce21's picture
Upload 7 files
5980fe0 verified
raw
history blame contribute delete
194 Bytes
from groq import Groq
import os
client = Groq(api_key="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")
models = client.models.list()
for m in models.data:
print(m.id)