Spaces:
Running
Running
File size: 357 Bytes
a0e37e2 |
1 2 3 4 5 6 7 8 9 10 |
from types import MappingProxyType
Name2Endpoint = MappingProxyType({
"gpt-4o": "gpt-4o",
"claude-3.5-haiku": "us.anthropic.claude-3-5-haiku-20241022-v1:0",
# "llama-3.1-70b-instruct": "us.meta.llama3-1-70b-instruct-v1:0",
# "mistral-large": "mistral.mistral-large-2402-v1:0",
# "mixtral-8x7B": "mistral.mixtral-8x7b-instruct-v0:1",
})
|