@@ -598,7 +598,7 @@ Given company research and social proof, create a compelling email sequence.
598598### ` src/tools/browser/navigate.ts `
599599
600600``` typescript
601- import { ToolDefinition } from ' crayon ' ;
601+ import { ToolDefinition } from ' runcrayon ' ;
602602import { getBrowser } from ' ../lib/browser-factory' ;
603603
604604export const navigate: ToolDefinition = {
@@ -622,7 +622,7 @@ export const navigate: ToolDefinition = {
622622### ` src/tools/browser/click.ts `
623623
624624``` typescript
625- import { ToolDefinition } from ' crayon ' ;
625+ import { ToolDefinition } from ' runcrayon ' ;
626626import { getBrowser } from ' ../lib/browser-factory' ;
627627
628628export const click: ToolDefinition = {
@@ -646,7 +646,7 @@ export const click: ToolDefinition = {
646646### ` src/tools/browser/getText.ts `
647647
648648``` typescript
649- import { ToolDefinition } from ' crayon ' ;
649+ import { ToolDefinition } from ' runcrayon ' ;
650650import { getBrowser } from ' ../lib/browser-factory' ;
651651
652652export const getText: ToolDefinition = {
@@ -674,7 +674,7 @@ export const getText: ToolDefinition = {
674674### ` src/tools/embeddings/similaritySearch.ts `
675675
676676``` typescript
677- import { ToolDefinition } from ' crayon ' ;
677+ import { ToolDefinition } from ' runcrayon ' ;
678678import { db } from ' ../lib/db' ;
679679
680680export const similaritySearch: ToolDefinition = {
@@ -710,7 +710,7 @@ For steps that don't need agentic behavior, we use function nodes.
710710### ` src/nodes/find-similar-customers.ts `
711711
712712``` typescript
713- import { NodeDefinition } from ' crayon ' ;
713+ import { NodeDefinition } from ' runcrayon ' ;
714714import { generateEmbedding } from ' ../tools/embeddings/generate' ;
715715import { db } from ' ../lib/db' ;
716716
@@ -748,7 +748,7 @@ export const findSimilarCustomers: NodeDefinition<FindSimilarInput> = {
748748### ` src/nodes/download-transcripts.ts `
749749
750750``` typescript
751- import { NodeDefinition } from ' crayon ' ;
751+ import { NodeDefinition } from ' runcrayon ' ;
752752import { S3Client , ListObjectsV2Command , GetObjectCommand } from ' @aws-sdk/client-s3' ;
753753import { writeFile , mkdir } from ' fs/promises' ;
754754import { join } from ' path' ;
@@ -803,7 +803,7 @@ The compiler generates TypeScript from specs. Example for company-research:
803803### ` generated/workflows/company-research.ts `
804804
805805``` typescript
806- import { Workflow , WorkflowContext } from ' crayon ' ;
806+ import { Workflow , WorkflowContext } from ' runcrayon ' ;
807807
808808interface CompanyResearchInputs {
809809 company_name: string ;
0 commit comments