Skip to content

Commit

Permalink
Merge pull request #18 from yukimemi/udd-update
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Mar 9, 2024
2 parents 8970242 + ac93c42 commit c16e6e5
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion denops/futago/dispatcher/load_chat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { Futago } from "../futago.ts";
import { type Denops } from "https://deno.land/x/[email protected]/mod.ts";
import { z } from "https://deno.land/x/[email protected]/mod.ts";
import { getDb } from "../db.ts";
import { basename, extname } from "https://deno.land/std@0.218.2/path/mod.ts";
import { basename, extname } from "https://deno.land/std@0.219.1/path/mod.ts";

export const loadChatParamsSchema = z.object({
bufnr: z.number(),
Expand Down
2 changes: 1 addition & 1 deletion denops/futago/dispatcher/open_history.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import * as batch from "https://deno.land/x/[email protected]/batch/mod.ts";
import * as fn from "https://deno.land/x/[email protected]/function/mod.ts";
import { type Denops } from "https://deno.land/x/[email protected]/mod.ts";
import { z } from "https://deno.land/x/[email protected]/mod.ts";
import { walk } from "https://deno.land/std@0.218.2/fs/walk.ts";
import { walk } from "https://deno.land/std@0.219.1/fs/walk.ts";

export const openHistoryParamsSchema = z.object({
chatDir: z.string(),
Expand Down
6 changes: 3 additions & 3 deletions denops/futago/futago.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// Last Change : 2024/03/02 15:55:51.
// =============================================================================

import * as datetime from "https://deno.land/std@0.218.2/datetime/mod.ts";
import * as datetime from "https://deno.land/std@0.219.1/datetime/mod.ts";
import xdg from "https://deno.land/x/[email protected]/src/mod.deno.ts";
import sanitize from "https://esm.sh/[email protected]";
import {
Expand All @@ -16,11 +16,11 @@ import {
SafetySetting,
StartChatParams,
} from "https://esm.sh/@google/[email protected]";
import { getLogger } from "https://deno.land/std@0.218.2/log/mod.ts";
import { getLogger } from "https://deno.land/std@0.219.1/log/mod.ts";
import { getDb, setDb } from "./db.ts";
import { Semaphore } from "https://deno.land/x/[email protected]/semaphore.ts";
import { DEFAULT_AI_PROMPT, DEFAULT_HUMAN_PROMPT, DEFAULT_MODEL } from "./consts.ts";
import { join } from "https://deno.land/std@0.218.2/path/join.ts";
import { join } from "https://deno.land/std@0.219.1/path/join.ts";
import { z } from "https://deno.land/x/[email protected]/mod.ts";

export class Futago {
Expand Down
2 changes: 1 addition & 1 deletion denops/futago/futago_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// =============================================================================

import { Futago } from "./futago.ts";
import { assertStringIncludes } from "https://deno.land/std@0.218.2/assert/assert_string_includes.ts";
import { assertStringIncludes } from "https://deno.land/std@0.219.1/assert/assert_string_includes.ts";

Deno.test({
name: "Test sendMessageStream()",
Expand Down
8 changes: 4 additions & 4 deletions denops/futago/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,18 @@ import * as fn from "https://deno.land/x/[email protected]/function/mod.ts";
import * as helper from "https://deno.land/x/[email protected]/helper/mod.ts";
import * as autocmd from "https://deno.land/x/[email protected]/autocmd/mod.ts";
import * as vars from "https://deno.land/x/[email protected]/variable/mod.ts";
import { deepMerge } from "https://deno.land/std@0.218.2/collections/deep_merge.ts";
import { deepMerge } from "https://deno.land/std@0.219.1/collections/deep_merge.ts";
import type { Denops } from "https://deno.land/x/[email protected]/mod.ts";
import xdg from "https://deno.land/x/[email protected]/src/mod.deno.ts";
import { ensureDir, ensureFile } from "https://deno.land/std@0.218.2/fs/mod.ts";
import { dirname, join } from "https://deno.land/std@0.218.2/path/mod.ts";
import { ensureDir, ensureFile } from "https://deno.land/std@0.219.1/fs/mod.ts";
import { dirname, join } from "https://deno.land/std@0.219.1/path/mod.ts";
import {
ConsoleHandler,
FileHandler,
getLogger,
RotatingFileHandler,
setup,
} from "https://deno.land/std@0.218.2/log/mod.ts";
} from "https://deno.land/std@0.219.1/log/mod.ts";
import { GenerationConfig, SafetySetting } from "https://esm.sh/@google/[email protected]";
import { z } from "https://deno.land/x/[email protected]/mod.ts";

Expand Down
2 changes: 1 addition & 1 deletion denops/futago/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// Last Change : 2024/01/28 00:28:33.
// =============================================================================

import * as datetime from "https://deno.land/std@0.218.2/datetime/mod.ts";
import * as datetime from "https://deno.land/std@0.219.1/datetime/mod.ts";
import * as fn from "https://deno.land/x/[email protected]/function/mod.ts";
import { type Denops } from "https://deno.land/x/[email protected]/mod.ts";

Expand Down

0 comments on commit c16e6e5

Please sign in to comment.