Skip to content

Commit

Permalink
fix: correct embeddings file name
Browse files Browse the repository at this point in the history
  • Loading branch information
jack0pan committed Jul 17, 2024
1 parent 1c8d819 commit 7ef020f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ jobs:
with:
deno-version: v1.x

# - name: Build step
# run: "deno task build"
- name: Build step
run: "deno task build"

- name: Upload to Deno Deploy
uses: denoland/deployctl@v1
Expand Down
2 changes: 1 addition & 1 deletion providers/embedding/google.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import Base from "$/providers/client/google.ts";
import {
CreateEmbeddingRequest,
CreateEmbeddingResponse,
} from "$/schemas/openai/embedding.ts";
} from "$/schemas/openai/mod.ts";
import {
EmbedContentRequest,
EmbedContentResponse,
Expand Down
8 changes: 4 additions & 4 deletions schemas/openai/mod.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export * from "./assistants.ts";
export * from "./chat.ts";
export * from "./embeddings.ts";
export * from "./models.ts";
export * from "$/schemas/openai/assistants.ts";
export * from "$/schemas/openai/chat.ts";
export * from "$/schemas/openai/embeddings.ts";
export * from "$/schemas/openai/models.ts";

0 comments on commit 7ef020f

Please sign in to comment.