@@ -207,18 +207,25 @@ import { RagAiSearchNode } from "./rag/rag-ai-search-node";
207207import { RagSearchNode } from "./rag/rag-search-node" ;
208208import { BartLargeCnnNode } from "./text/bart-large-cnn-node" ;
209209import { BgeRerankerBaseNode } from "./text/bge-reranker-base-node" ;
210+ import { Claude3OpusNode } from "./text/claude-3-opus-node" ;
211+ import { Claude35HaikuNode } from "./text/claude-35-haiku-node" ;
212+ import { Claude35SonnetNode } from "./text/claude-35-sonnet-node" ;
213+ import { Claude37SonnetNode } from "./text/claude-37-sonnet-node" ;
214+ import { ClaudeOpus4Node } from "./text/claude-opus-4-node" ;
215+ import { ClaudeOpus41Node } from "./text/claude-opus-41-node" ;
216+ import { ClaudeSonnet4Node } from "./text/claude-sonnet-4-node" ;
210217import { DeepseekR1DistillQwen32BNode } from "./text/deepseek-r1-distill-qwen-32b-node" ;
211218import { DistilbertSst2Int8Node } from "./text/distilbert-sst-2-int8-node" ;
219+ import { Gpt5MiniNode } from "./text/gpt-5-mini-node" ;
220+ import { Gpt5NanoNode } from "./text/gpt-5-nano-node" ;
221+ import { Gpt5Node } from "./text/gpt-5-node" ;
222+ import { Gpt41Node } from "./text/gpt-41-node" ;
223+ import { GptOss20BNode } from "./text/gpt-oss-20b-node" ;
224+ import { GptOss120BNode } from "./text/gpt-oss-120b-node" ;
212225import { Hermes2ProMistral7BNode } from "./text/hermes-2-pro-mistral-7b-node" ;
213226import { InputTextNode } from "./text/input-text-node" ;
214227import { Llama318BInstructFastNode } from "./text/llama-3-1-8b-instruct-fast-node" ;
215228import { Llama3370BInstructFastNode } from "./text/llama-3-3-70b-instruct-fp8-fast-node" ;
216- import { Gpt41Node } from "./text/gpt-41-node" ;
217- import { Gpt5Node } from "./text/gpt-5-node" ;
218- import { Gpt5MiniNode } from "./text/gpt-5-mini-node" ;
219- import { Gpt5NanoNode } from "./text/gpt-5-nano-node" ;
220- import { GptOss120BNode } from "./text/gpt-oss-120b-node" ;
221- import { GptOss20BNode } from "./text/gpt-oss-20b-node" ;
222229import { Llama4Scout17B16EInstructNode } from "./text/llama-4-scout-17b-16e-instruct-node" ;
223230import { M2m10012bNode } from "./text/m2m100-1-2b-node" ;
224231import { MistralSmall31_24BInstructNode } from "./text/mistral-small-3-1-24b-instruct-node" ;
@@ -241,13 +248,6 @@ import { TextAreaNode } from "./text/text-area-node";
241248import { ToJsonNode } from "./text/to-json-node" ;
242249import { ToStringNode } from "./text/to-string-node" ;
243250import { TwilioSmsNode } from "./text/twilio-sms-node" ;
244- import { ClaudeOpus41Node } from "./text/claude-opus-41-node" ;
245- import { ClaudeOpus4Node } from "./text/claude-opus-4-node" ;
246- import { ClaudeSonnet4Node } from "./text/claude-sonnet-4-node" ;
247- import { Claude37SonnetNode } from "./text/claude-37-sonnet-node" ;
248- import { Claude35SonnetNode } from "./text/claude-35-sonnet-node" ;
249- import { Claude35HaikuNode } from "./text/claude-35-haiku-node" ;
250- import { Claude3OpusNode } from "./text/claude-3-opus-node" ;
251251
252252export class CloudflareNodeRegistry extends BaseNodeRegistry {
253253 protected registerNodes ( ) : void {
@@ -554,7 +554,7 @@ export class CloudflareNodeRegistry extends BaseNodeRegistry {
554554 this . registerImplementation ( Gpt5MiniNode ) ;
555555 this . registerImplementation ( Gpt5NanoNode ) ;
556556 }
557-
557+
558558 // Anthropic Claude nodes
559559 if ( hasAnthropic ) {
560560 this . registerImplementation ( ClaudeOpus41Node ) ;
0 commit comments