Skip to content

Commit

Permalink
fix(sessions): remove deno style imports (#5611)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeldking authored and RogerHYang committed Dec 4, 2024
1 parent b324685 commit 48cfe8a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/src/pages/project/TypeScriptSessionsGuide.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ import { TypeScriptBlockWithCopy } from "@phoenix/components/code/TypeScriptBloc

const INSTALL_OPENINFERENCE_CORE_TYPESCRIPT = `npm install @arizeai/openinference-core --save`;

const ADD_SESSION_ID_TYPESCRIPT = `import { trace } from "npm:@opentelemetry/api";
import { SemanticConventions } from "npm:@arizeai/openinference-semantic-conventions";
import { context } from "npm:@opentelemetry/api";
import { setSession } from "npm:@arizeai/openinference-core";
const ADD_SESSION_ID_TYPESCRIPT = `import { trace } from "@opentelemetry/api";
import { SemanticConventions } from "@arizeai/openinference-semantic-conventions";
import { context } from "@opentelemetry/api";
import { setSession } from "@arizeai/openinference-core";
const tracer = trace.getTracer("agent");
Expand Down

0 comments on commit 48cfe8a

Please sign in to comment.