clanka 0.3.0 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +1 -1
- package/package.json +1 -1
- package/src/cli.ts +1 -1
package/dist/cli.js
CHANGED
|
@@ -25,7 +25,7 @@ import * as KeyValueStore from "effect/unstable/persistence/KeyValueStore";
|
|
|
25
25
|
import * as Option from "effect/Option";
|
|
26
26
|
import { OpenAiClient, OpenAiEmbeddingModel } from "@effect/ai-openai";
|
|
27
27
|
import { DeviceCodeHandler } from "./index.js";
|
|
28
|
-
const version = "0.0
|
|
28
|
+
const version = "1.0.0";
|
|
29
29
|
const providers = ["openai", "copilot"];
|
|
30
30
|
const withSubagentModel = (model) => Layer.merge(model, Agent.layerSubagentModel(model));
|
|
31
31
|
const modelLayer = (provider, model, effort) => provider === "openai"
|
package/package.json
CHANGED
package/src/cli.ts
CHANGED
|
@@ -28,7 +28,7 @@ import * as Option from "effect/Option"
|
|
|
28
28
|
import { OpenAiClient, OpenAiEmbeddingModel } from "@effect/ai-openai"
|
|
29
29
|
import { DeviceCodeHandler } from "./index.ts"
|
|
30
30
|
|
|
31
|
-
const version = "0.0
|
|
31
|
+
const version = "1.0.0"
|
|
32
32
|
|
|
33
33
|
type Provider = "openai" | "copilot"
|
|
34
34
|
|