neurocore.llm.provider.AnthropicProvider

class neurocore.llm.provider.AnthropicProvider(api_key: str, model: str = 'claude-sonnet-4-6')

Anthropic Claude provider using the anthropic SDK.

property provider_name: str
property model: str
async complete(messages: list[LLMMessage], *, max_tokens: int = 8192, temperature: float = 1.0, system: str | None = None, **kwargs: Any) LLMResponse
async stream(messages: list[LLMMessage], *, max_tokens: int = 8192, temperature: float = 1.0, system: str | None = None, **kwargs: Any) collections.abc.AsyncIterator[str]