Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
kyoh86 committed Apr 11, 2024
1 parent 0d5c7f4 commit 9da992d
Show file tree
Hide file tree
Showing 13 changed files with 22 additions and 22 deletions.
4 changes: 2 additions & 2 deletions denops/ollama/api/copy_model_test.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { assertEquals } from "https://deno.land/std@0.221.0/assert/mod.ts";
import { assertEquals } from "https://deno.land/std@0.222.1/assert/mod.ts";
import {
assertSpyCallArgs,
assertSpyCalls,
stub,
} from "https://deno.land/std@0.221.0/testing/mock.ts";
} from "https://deno.land/std@0.222.1/testing/mock.ts";
import { copyModel } from "./copy_model.ts";

Deno.test("copyModel", async (t) => {
Expand Down
4 changes: 2 additions & 2 deletions denops/ollama/api/generate_completion_test.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { assertEquals } from "https://deno.land/std@0.221.0/assert/mod.ts";
import { assertEquals } from "https://deno.land/std@0.222.1/assert/mod.ts";
import {
assertSpyCallArgs,
assertSpyCalls,
stub,
} from "https://deno.land/std@0.221.0/testing/mock.ts";
} from "https://deno.land/std@0.222.1/testing/mock.ts";
import {
generateCompletion,
GenerateCompletionResponse,
Expand Down
2 changes: 1 addition & 1 deletion denops/ollama/dispatch/complete_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assert } from "https://deno.land/std@0.221.0/assert/mod.ts";
import { assert } from "https://deno.land/std@0.222.1/assert/mod.ts";
import { complete } from "./complete.ts";

import { test } from "https://deno.land/x/[email protected]/mod.ts";
Expand Down
2 changes: 1 addition & 1 deletion denops/ollama/dispatch/delete_model.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { type Denops } from "https://deno.land/x/[email protected]/mod.ts";
import { getLogger } from "https://deno.land/std@0.221.0/log/mod.ts";
import { getLogger } from "https://deno.land/std@0.222.1/log/mod.ts";
import * as helper from "https://deno.land/x/[email protected]/helper/mod.ts";
import {
is,
Expand Down
6 changes: 3 additions & 3 deletions denops/ollama/dispatch/init.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ import { Denops } from "https://deno.land/x/[email protected]/mod.ts";
import {
ConsoleHandler,
setup as setupLog,
} from "https://deno.land/std@0.221.0/log/mod.ts";
} from "https://deno.land/std@0.222.1/log/mod.ts";
import xdg from "https://deno.land/x/[email protected]/src/mod.deno.ts";
import { ensureFile } from "https://deno.land/std@0.221.0/fs/ensure_file.ts";
import { join } from "https://deno.land/std@0.221.0/path/join.ts";
import { ensureFile } from "https://deno.land/std@0.222.1/fs/ensure_file.ts";
import { join } from "https://deno.land/std@0.222.1/path/join.ts";

import { setup as setupHighlight } from "../ui/highlight_prefix.ts";
import { mapCancel } from "../util/cancellable.ts";
Expand Down
4 changes: 2 additions & 2 deletions denops/ollama/dispatch/list_models.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as datetime from "https://deno.land/std@0.221.0/datetime/mod.ts";
import * as bytes from "https://deno.land/std@0.221.0/fmt/bytes.ts";
import * as datetime from "https://deno.land/std@0.222.1/datetime/mod.ts";
import * as bytes from "https://deno.land/std@0.222.1/fmt/bytes.ts";
import { Denops } from "https://deno.land/x/[email protected]/mod.ts";
import * as helper from "https://deno.land/x/[email protected]/helper/mod.ts";
import { Table } from "https://deno.land/x/[email protected]/table/mod.ts";
Expand Down
6 changes: 3 additions & 3 deletions denops/ollama/dispatch/pull_model.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { Denops } from "https://deno.land/x/[email protected]/mod.ts";
import * as bytes from "https://deno.land/std@0.221.0/fmt/bytes.ts";
import * as bytes from "https://deno.land/std@0.222.1/fmt/bytes.ts";
import { pullModel as pullModelAPI } from "../api.ts";
import { getLogger } from "https://deno.land/std@0.221.0/log/mod.ts";
import { getLogger } from "https://deno.land/std@0.222.1/log/mod.ts";
import * as helper from "https://deno.land/x/[email protected]/helper/mod.ts";
import { canceller } from "../util/cancellable.ts";
import { abortableAsyncIterable } from "https://deno.land/std@0.221.0/async/mod.ts";
import { abortableAsyncIterable } from "https://deno.land/std@0.222.1/async/mod.ts";
import { isReqArgs } from "./types.ts";
import {
is,
Expand Down
2 changes: 1 addition & 1 deletion denops/ollama/dispatch/start_chat.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { abortableAsyncIterable } from "https://deno.land/std@0.221.0/async/mod.ts";
import { abortableAsyncIterable } from "https://deno.land/std@0.222.1/async/mod.ts";
import { Denops } from "https://deno.land/x/[email protected]/mod.ts";
import {
is,
Expand Down
2 changes: 1 addition & 1 deletion denops/ollama/dispatch/start_chat_in_ctx.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { abortableAsyncIterable } from "https://deno.land/std@0.221.0/async/mod.ts";
import { abortableAsyncIterable } from "https://deno.land/std@0.222.1/async/mod.ts";
import { type Denops } from "https://deno.land/x/[email protected]/mod.ts";
import {
is,
Expand Down
6 changes: 3 additions & 3 deletions denops/ollama/ui/chat.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { getLogger } from "https://deno.land/std@0.221.0/log/mod.ts";
import * as datetime from "https://deno.land/std@0.221.0/datetime/mod.ts";
import { getLogger } from "https://deno.land/std@0.222.1/log/mod.ts";
import * as datetime from "https://deno.land/std@0.222.1/datetime/mod.ts";
import { Denops } from "https://deno.land/x/[email protected]/mod.ts";
import { ulid } from "https://deno.land/std@0.221.0/ulid/mod.ts";
import { ulid } from "https://deno.land/std@0.222.1/ulid/mod.ts";
import * as autocmd from "https://deno.land/x/[email protected]/autocmd/mod.ts";
import * as fn from "https://deno.land/x/[email protected]/function/mod.ts";
import * as batch from "https://deno.land/x/[email protected]/batch/mod.ts";
Expand Down
2 changes: 1 addition & 1 deletion denops/ollama/util/cancellable.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { map } from "https://deno.land/x/[email protected]/mapping/mod.ts";
import * as lambda from "https://deno.land/x/[email protected]/lambda/mod.ts";
import { ulid } from "https://deno.land/std@0.221.0/ulid/mod.ts";
import { ulid } from "https://deno.land/std@0.222.1/ulid/mod.ts";
import * as autocmd from "https://deno.land/x/[email protected]/autocmd/mod.ts";
import { Denops } from "https://deno.land/x/[email protected]/mod.ts";

Expand Down
2 changes: 1 addition & 1 deletion denops/ollama/util/context_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {
assert,
assertEquals,
assertFalse,
} from "https://deno.land/std@0.221.0/assert/mod.ts";
} from "https://deno.land/std@0.222.1/assert/mod.ts";
import { test } from "https://deno.land/x/[email protected]/mod.ts";
import * as fn from "https://deno.land/x/[email protected]/function/mod.ts";
import * as option from "https://deno.land/x/[email protected]/option/mod.ts";
Expand Down
2 changes: 1 addition & 1 deletion denops/ollama/util/trim_test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { test } from "https://deno.land/x/[email protected]/mod.ts";
import * as target from "./trim.ts";
import { assertEquals } from "https://deno.land/std@0.221.0/assert/mod.ts";
import { assertEquals } from "https://deno.land/std@0.222.1/assert/mod.ts";

test({
mode: "all",
Expand Down

0 comments on commit 9da992d

Please sign in to comment.