auth
Where can I retrieve the auth_key for modular auth? Can I only auth via browser? I want to containerize the max engine
1 Reply
Good question! right now for serving, we offer the Triton image with MAX backend. Check out https://github.com/modularml/max?tab=readme-ov-file#max-serving-docker-container which you can run like
docker run -it --rm --network=host \
-v $MODEL_REPOSITORY:/models \
public.ecr.aws/modular/max-serving-de \
tritonserver --model-repository=/models --model-control-mode=explicit \
--load-model=resnet50
. For better view, check out https://www.modular.com/blog/getting-started-with-max-developer-editionModular: Getting started with MAX Developer Edition
We are building a next-generation AI developer platform for the world. Check out our latest post: Getting started with MAX Developer Edition
GitHub
GitHub - modularml/max: A collection of sample programs, notebooks,...
A collection of sample programs, notebooks, and tools which highlight the power of the MAX platform - modularml/max