Clean-up
This commit is contained in:
@@ -19,7 +19,6 @@ import type {
|
|||||||
GenerateFunction,
|
GenerateFunction,
|
||||||
GenerateOptions,
|
GenerateOptions,
|
||||||
GenerateStream,
|
GenerateStream,
|
||||||
Message,
|
|
||||||
Model,
|
Model,
|
||||||
StopReason,
|
StopReason,
|
||||||
TextContent,
|
TextContent,
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import { beforeAll, describe, expect, it } from "vitest";
|
import { describe, expect, it } from "vitest";
|
||||||
import { complete, stream } from "../src/generate.js";
|
import { complete, stream } from "../src/generate.js";
|
||||||
import { getModel } from "../src/models.js";
|
import { getModel } from "../src/models.js";
|
||||||
import type { Api, Context, Model, OptionsForApi } from "../src/types.js";
|
import type { Api, Context, Model, OptionsForApi } from "../src/types.js";
|
||||||
|
|||||||
@@ -36,7 +36,7 @@ const autocompleteProvider = new CombinedAutocompleteProvider([
|
|||||||
{
|
{
|
||||||
name: "attach",
|
name: "attach",
|
||||||
description: "Attach a file",
|
description: "Attach a file",
|
||||||
getArgumentCompletions: (prefix) => {
|
getArgumentCompletions: () => {
|
||||||
// Return file suggestions for attach command
|
// Return file suggestions for attach command
|
||||||
return null; // Use default file completion
|
return null; // Use default file completion
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user