multi-agent-system / scripts /nvidia_model_list.py
firepenguindisopanda
updated with new prompts and new workflow to generate a document
94f31ec
Raw
History Blame Contribute Delete
219 Bytes
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)