@poncho-ai/harness 0.20.9 → 0.20.11
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/.turbo/turbo-build.log +5 -5
- package/CHANGELOG.md +15 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -0
- package/package.json +2 -2
- package/src/config.ts +1 -1
- package/src/model-factory.ts +1 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @poncho-ai/harness@0.20.
|
|
2
|
+
> @poncho-ai/harness@0.20.11 build /Users/cesar/Dev/latitude/poncho-ai/packages/harness
|
|
3
3
|
> tsup src/index.ts --format esm --dts
|
|
4
4
|
|
|
5
5
|
[34mCLI[39m Building entry: src/index.ts
|
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
[34mCLI[39m tsup v8.5.1
|
|
8
8
|
[34mCLI[39m Target: es2022
|
|
9
9
|
[34mESM[39m Build start
|
|
10
|
-
[32mESM[39m [1mdist/index.js [22m[32m200.
|
|
11
|
-
[32mESM[39m ⚡️ Build success in
|
|
10
|
+
[32mESM[39m [1mdist/index.js [22m[32m200.34 KB[39m
|
|
11
|
+
[32mESM[39m ⚡️ Build success in 61ms
|
|
12
12
|
[34mDTS[39m Build start
|
|
13
|
-
[32mDTS[39m ⚡️ Build success in
|
|
14
|
-
[32mDTS[39m [1mdist/index.d.ts [22m[32m24.
|
|
13
|
+
[32mDTS[39m ⚡️ Build success in 4995ms
|
|
14
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m24.38 KB[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @poncho-ai/harness
|
|
2
2
|
|
|
3
|
+
## 0.20.11
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`de28ef5`](https://github.com/cesr/poncho-ai/commit/de28ef5acceed921269d15816acd392f5208f03d) Thanks [@cesr](https://github.com/cesr)! - Add Telegram messaging adapter with private/group chat support, file attachments, /new command, and typing indicators.
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`de28ef5`](https://github.com/cesr/poncho-ai/commit/de28ef5acceed921269d15816acd392f5208f03d)]:
|
|
10
|
+
- @poncho-ai/sdk@1.4.1
|
|
11
|
+
|
|
12
|
+
## 0.20.10
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- [`45fc930`](https://github.com/cesr/poncho-ai/commit/45fc93066547f8ba01eb6f2fcdff560f18da3451) Thanks [@cesr](https://github.com/cesr)! - Use clean `anthropic` provider name in telemetry instead of `anthropic.messages`, so Latitude correctly identifies the model.
|
|
17
|
+
|
|
3
18
|
## 0.20.9
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -274,7 +274,7 @@ type BuiltInToolToggles = {
|
|
|
274
274
|
delete_directory?: boolean;
|
|
275
275
|
};
|
|
276
276
|
interface MessagingChannelConfig {
|
|
277
|
-
platform: "slack" | "resend";
|
|
277
|
+
platform: "slack" | "resend" | "telegram";
|
|
278
278
|
botTokenEnv?: string;
|
|
279
279
|
signingSecretEnv?: string;
|
|
280
280
|
apiKeyEnv?: string;
|
package/dist/index.js
CHANGED
|
@@ -1858,6 +1858,7 @@ var createModelProvider = (provider, config) => {
|
|
|
1858
1858
|
}
|
|
1859
1859
|
const apiKeyEnv = config?.anthropic?.apiKeyEnv ?? "ANTHROPIC_API_KEY";
|
|
1860
1860
|
const anthropic = createAnthropic({
|
|
1861
|
+
name: "anthropic",
|
|
1861
1862
|
apiKey: process.env[apiKeyEnv]
|
|
1862
1863
|
});
|
|
1863
1864
|
return (modelName) => anthropic(modelName);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@poncho-ai/harness",
|
|
3
|
-
"version": "0.20.
|
|
3
|
+
"version": "0.20.11",
|
|
4
4
|
"description": "Agent execution runtime - conversation loop, tool dispatch, streaming",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"redis": "^5.10.0",
|
|
32
32
|
"yaml": "^2.4.0",
|
|
33
33
|
"zod": "^3.22.0",
|
|
34
|
-
"@poncho-ai/sdk": "1.4.
|
|
34
|
+
"@poncho-ai/sdk": "1.4.1"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@types/mustache": "^4.2.6",
|
package/src/config.ts
CHANGED
package/src/model-factory.ts
CHANGED
|
@@ -72,6 +72,7 @@ export const createModelProvider = (provider?: string, config?: ProviderConfig):
|
|
|
72
72
|
|
|
73
73
|
const apiKeyEnv = config?.anthropic?.apiKeyEnv ?? "ANTHROPIC_API_KEY";
|
|
74
74
|
const anthropic = createAnthropic({
|
|
75
|
+
name: "anthropic",
|
|
75
76
|
apiKey: process.env[apiKeyEnv],
|
|
76
77
|
});
|
|
77
78
|
return (modelName: string) => anthropic(modelName);
|