import { AnthropicConfig } from './config';
import { AnthropicProviderError } from './errors';

export async function embed(config: AnthropicConfig, text: string): Promise<number[]> {
  throw new AnthropicProviderError('Embedding is not supported by Anthropic API');
}

export async function embedBatch(config: AnthropicConfig, texts: string[]): Promise<number[][]> {
  throw new AnthropicProviderError('Batch embedding is not supported by Anthropic API');
}