I am currently using LlamaIndex 0.10.5.
This does not work:
llm = Anthropic(model="claude-3-opus-20240229")
Error:
Unexpected err=ValueError('Unknown model: claude-3-opus-20240229. Please provide a valid Anthropic model name.Known models are: claude-instant-1, claude-instant-1.2, claude-2, claude-2.0, claude-2.1'), type(err)=<class 'ValueError'>
However, the documentation here shows usage of that model:
https://docs.llamaindex.ai/en/stable/examples/llm/anthropic.htmlIs this because I am using an older version of LlamaIndex? Any way to get around this without updating LlamaIndex?