File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed
Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change 99 - [ ` logits.py ` ] ( logits/logits.py ) : Python example of getting logits from hosted model.
1010- [ ` api ` ] ( api ) : Examples for using the Python API
1111 - [ ` basic_usage.py ` ] ( api/basic_usage.py ) : Basic Python example demonstrating the Vector Inference API
12- - [ ` advanced_usage.py ` ] ( api/advanced_usage.py ) : Advanced Python example with rich UI for the Vector Inference API
Original file line number Diff line number Diff line change 1616models = client .list_models ()
1717print (f"Found { len (models )} models" )
1818for model in models [:3 ]: # Show just the first few
19- print (f"- { model .name } ({ model .type } )" )
19+ print (f"- { model .name } ({ model .model_type } )" )
2020
2121# Launch a model (replace with an actual model name from your environment)
2222model_name = "Meta-Llama-3.1-8B-Instruct" # Use an available model from your list
You can’t perform that action at this time.
0 commit comments