Skip to content

Commit

Permalink
fix: use absolute paths in /src/lib
Browse files Browse the repository at this point in the history
  • Loading branch information
gradenr committed Mar 8, 2024
1 parent b7463c5 commit 5c961f7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/lib/chat_completions_ext.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Manually curated models for streaming chat completions.
import { ChatCompletion } from '../resources/chat';
import { ChatCompletion } from 'groq-sdk/resources/chat'

export interface ChatCompletionChunk {
id: string;
Expand Down
6 changes: 3 additions & 3 deletions src/lib/streaming.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ReadableStream, type Response } from '../_shims/index';
import { GroqError } from '../error';
import { ReadableStream, type Response } from 'groq-sdk/_shims/index';
import { GroqError } from 'groq-sdk/error';

import { APIError } from '../error';
import { APIError } from 'groq-sdk/error';

type Bytes = string | ArrayBuffer | Uint8Array | Buffer | null | undefined;

Expand Down

0 comments on commit 5c961f7

Please sign in to comment.