llm = AnthropicMultiModal(
model="claude-3-5-sonnet-20240620",
max_tokens=4096,
temperature=0.0,
api_key=api_key,
api_base=f"https://anthropic.helicone.ai/{HELICONE_API_KEY}",
default_headers={"Helicone-Property-Client": "test",
"Helicone-Property-Project": "test",
"Helicone-Property-Process-Name": "test",
"Helicone-Property-Step-Name": "test",
},
)
default_headers
but this also gave the same result{
"Authorization": f"Bearer {api_key}",
"Helicone-Auth": f"Bearer {HELICONE_API_KEY}",
"Helicone-Property-Client": "test",
"Helicone-Property-Project": "test",
"Helicone-Property-Process-Name": "test",
"Helicone-Property-Step-Name": "test",
}
claude-3-5-sonnet-20240620
? I am following the same syntax as you but I am using AnthropicMultiModal
instead of Anthropic