Skip to content

Commit

Permalink
Merge pull request #20 from yukimemi/molt-action
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Nov 12, 2024
2 parents 037f7bd + 89cda65 commit 63cc616
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 23 deletions.
4 changes: 2 additions & 2 deletions denops/futago/dispatcher/git_commit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
// Last Change : 2024/11/02 23:41:19.
// =============================================================================

import * as fn from "jsr:@denops/[email protected].0/function";
import type { Denops } from "jsr:@denops/[email protected].0";
import * as fn from "jsr:@denops/[email protected].1/function";
import type { Denops } from "jsr:@denops/[email protected].1";
import { DEFAULT_MODEL, GIT_COMMIT_PROMPT } from "../consts.ts";
import { Futago } from "../futago.ts";
import { GenerationConfigSchema } from "../schema/generation_config.ts";
Expand Down
8 changes: 4 additions & 4 deletions denops/futago/dispatcher/load_chat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
// Last Change : 2024/11/04 01:16:38.
// =============================================================================

import * as batch from "jsr:@denops/[email protected].0/batch";
import * as buffer from "jsr:@denops/[email protected].0/buffer";
import * as fn from "jsr:@denops/[email protected].0/function";
import type { Denops } from "jsr:@denops/[email protected].0";
import * as batch from "jsr:@denops/[email protected].1/batch";
import * as buffer from "jsr:@denops/[email protected].1/buffer";
import * as fn from "jsr:@denops/[email protected].1/function";
import type { Denops } from "jsr:@denops/[email protected].1";
import { Futago } from "../futago.ts";
import { basename, extname } from "jsr:@std/[email protected]";
import { getDb } from "../db.ts";
Expand Down
6 changes: 3 additions & 3 deletions denops/futago/dispatcher/open_history.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
// Last Change : 2024/11/02 19:07:09.
// =============================================================================

import * as batch from "jsr:@denops/[email protected].0/batch";
import * as fn from "jsr:@denops/[email protected].0/function";
import type { Denops } from "jsr:@denops/[email protected].0";
import * as batch from "jsr:@denops/[email protected].1/batch";
import * as fn from "jsr:@denops/[email protected].1/function";
import type { Denops } from "jsr:@denops/[email protected].1";
import { walk } from "jsr:@std/[email protected]";
import { z } from "npm:[email protected]";

Expand Down
6 changes: 3 additions & 3 deletions denops/futago/dispatcher/send_chat_message.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
// Last Change : 2024/11/04 01:26:48.
// =============================================================================

import * as fn from "jsr:@denops/[email protected].0/function";
import * as option from "jsr:@denops/[email protected].0/option";
import * as fn from "jsr:@denops/[email protected].1/function";
import * as option from "jsr:@denops/[email protected].1/option";
import { Futago } from "../futago.ts";
import { getNow } from "../util.ts";
import type { Denops } from "jsr:@denops/[email protected].0";
import type { Denops } from "jsr:@denops/[email protected].1";
import { z } from "npm:[email protected]";
import { Semaphore } from "jsr:@lambdalisue/[email protected]";
import { SEPARATOR } from "../consts.ts";
Expand Down
8 changes: 4 additions & 4 deletions denops/futago/dispatcher/start_chat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
// Last Change : 2024/11/02 19:37:06.
// =============================================================================

import * as batch from "jsr:@denops/[email protected].0/batch";
import * as buffer from "jsr:@denops/[email protected].0/buffer";
import * as fn from "jsr:@denops/[email protected].0/function";
import type { Denops } from "jsr:@denops/[email protected].0";
import * as batch from "jsr:@denops/[email protected].1/batch";
import * as buffer from "jsr:@denops/[email protected].1/buffer";
import * as fn from "jsr:@denops/[email protected].1/function";
import type { Denops } from "jsr:@denops/[email protected].1";
import { DEFAULT_AI_PROMPT, DEFAULT_HUMAN_PROMPT, DEFAULT_MODEL, SEPARATOR } from "../consts.ts";
import { Futago } from "../futago.ts";
import { GenerationConfigSchema } from "../schema/generation_config.ts";
Expand Down
10 changes: 5 additions & 5 deletions denops/futago/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
// Last Change : 2024/11/04 01:00:16.
// =============================================================================

import * as fn from "jsr:@denops/[email protected].0/function";
import * as helper from "jsr:@denops/[email protected].0/helper";
import * as autocmd from "jsr:@denops/[email protected].0/autocmd";
import * as vars from "jsr:@denops/[email protected].0/variable";
import * as fn from "jsr:@denops/[email protected].1/function";
import * as helper from "jsr:@denops/[email protected].1/helper";
import * as autocmd from "jsr:@denops/[email protected].1/autocmd";
import * as vars from "jsr:@denops/[email protected].1/variable";
import { deepMerge } from "jsr:@std/[email protected]";
import type { Denops } from "jsr:@denops/[email protected].0";
import type { Denops } from "jsr:@denops/[email protected].1";
import { dir } from "jsr:@cross/[email protected]";
import { ensureDir, ensureFile } from "jsr:@std/[email protected]";
import { dirname, join } from "jsr:@std/[email protected]";
Expand Down
4 changes: 2 additions & 2 deletions denops/futago/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
// =============================================================================

import * as datetime from "jsr:@std/[email protected]";
import * as fn from "jsr:@denops/[email protected].0/function";
import type { Denops } from "jsr:@denops/[email protected].0";
import * as fn from "jsr:@denops/[email protected].1/function";
import type { Denops } from "jsr:@denops/[email protected].1";

export function getNow(): string {
return datetime.format(new Date(), "yyyy-MM-ddTHH-mm-ss.SSS");
Expand Down

0 comments on commit 63cc616

Please sign in to comment.