ferruzzi commented on PR #43600:
URL: https://github.com/apache/airflow/pull/43600#issuecomment-2452714621
Agreed, but the complete name change would make automating the new name
choice difficult.
For reference, here's a list of the possible replacements for modelId
`llama2-13b-chat-v1` :
```
In [3]: [[model['modelName'], model['modelId']] for model in
bedrock.list_foundation_models()['modelSummaries'] if 'Llama' in
model['modelName']]
Out[3]:
[['Llama 3 8B Instruct', 'meta.llama3-8b-instruct-v1:0'],
['Llama 3 70B Instruct', 'meta.llama3-70b-instruct-v1:0'],
['Llama 3.2 11B Instruct', 'meta.llama3-2-11b-instruct-v1:0'],
['Llama 3.2 90B Instruct', 'meta.llama3-2-90b-instruct-v1:0'],
['Llama 3.2 1B Instruct', 'meta.llama3-2-1b-instruct-v1:0'],
['Llama 3.2 3B Instruct', 'meta.llama3-2-3b-instruct-v1:0']]
```
I'm not sure that would be a particularly easy choice to automate. If it
was just a version number bump or something then maybe, but this is a bit
trickier to reliably predict
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]