Spaces:
Sleeping
Sleeping
File size: 219 Bytes
94f31ec | 1 2 3 4 5 6 7 8 | from langchain_nvidia_ai_endpoints import ChatNVIDIA
if __name__ == "__main__":
models = ChatNVIDIA.get_available_models()
print("Available NVIDIA models:")
for model in models:
print(model)
|