-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from yukimemi/udd-update
- Loading branch information
Showing
6 changed files
with
11 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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.214.0/path/mod.ts"; | ||
import { basename, extname } from "https://deno.land/std@0.215.0/path/mod.ts"; | ||
|
||
export const loadChatParamsSchema = z.object({ | ||
bufnr: z.number(), | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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.214.0/fs/walk.ts"; | ||
import { walk } from "https://deno.land/std@0.215.0/fs/walk.ts"; | ||
|
||
export const openHistoryParamsSchema = z.object({ | ||
chatDir: z.string(), | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
// Last Change : 2024/02/04 00:00:34. | ||
// ============================================================================= | ||
|
||
import * as datetime from "https://deno.land/std@0.214.0/datetime/mod.ts"; | ||
import * as datetime from "https://deno.land/std@0.215.0/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 { | ||
|
@@ -16,11 +16,11 @@ import { | |
SafetySetting, | ||
StartChatParams, | ||
} from "https://esm.sh/@google/[email protected]"; | ||
import { getLogger } from "https://deno.land/std@0.214.0/log/mod.ts"; | ||
import { getLogger } from "https://deno.land/std@0.215.0/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.214.0/path/join.ts"; | ||
import { join } from "https://deno.land/std@0.215.0/path/join.ts"; | ||
import { z } from "https://deno.land/x/[email protected]/mod.ts"; | ||
|
||
export class Futago { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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.214.0/collections/deep_merge.ts"; | ||
import { deepMerge } from "https://deno.land/std@0.215.0/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.214.0/fs/mod.ts"; | ||
import { dirname, join } from "https://deno.land/std@0.214.0/path/mod.ts"; | ||
import { ensureDir, ensureFile } from "https://deno.land/std@0.215.0/fs/mod.ts"; | ||
import { dirname, join } from "https://deno.land/std@0.215.0/path/mod.ts"; | ||
import { | ||
ConsoleHandler, | ||
FileHandler, | ||
getLogger, | ||
RotatingFileHandler, | ||
setup, | ||
} from "https://deno.land/std@0.214.0/log/mod.ts"; | ||
} from "https://deno.land/std@0.215.0/log/mod.ts"; | ||
import { GenerationConfig, SafetySetting } from "https://esm.sh/@google/[email protected]"; | ||
import { z } from "https://deno.land/x/[email protected]/mod.ts"; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
// Last Change : 2024/01/28 00:28:33. | ||
// ============================================================================= | ||
|
||
import * as datetime from "https://deno.land/std@0.214.0/datetime/mod.ts"; | ||
import * as datetime from "https://deno.land/std@0.215.0/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"; | ||
|
||
|