chore: cleanup

This commit is contained in:
Ralph Khreish
2025-08-27 23:07:38 +02:00
parent 1733311d44
commit 86d9c4b194
3 changed files with 51 additions and 44 deletions

View File

@@ -1,9 +1,9 @@
{ {
"models": { "models": {
"main": { "main": {
"provider": "claude-code", "provider": "anthropic",
"modelId": "opus", "modelId": "claude-3-7-sonnet-20250219",
"maxTokens": 32000, "maxTokens": 120000,
"temperature": 0.2 "temperature": 0.2
}, },
"research": { "research": {
@@ -13,9 +13,9 @@
"temperature": 0.1 "temperature": 0.1
}, },
"fallback": { "fallback": {
"provider": "claude-code", "provider": "anthropic",
"modelId": "sonnet", "modelId": "claude-3-5-sonnet-20241022",
"maxTokens": 64000, "maxTokens": 8192,
"temperature": 0.2 "temperature": 0.2
} }
}, },

View File

@@ -1,6 +1,6 @@
{ {
"currentTag": "tm-core-phase-1", "currentTag": "master",
"lastSwitched": "2025-08-06T08:51:23.919Z", "lastSwitched": "2025-08-27T21:03:20.550Z",
"branchTagMapping": { "branchTagMapping": {
"v017-adds": "v017-adds", "v017-adds": "v017-adds",
"next": "next" "next": "next"

View File

@@ -5,6 +5,13 @@
"type": "module", "type": "module",
"main": "./dist/index.js", "main": "./dist/index.js",
"types": "./dist/index.d.ts", "types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./src/index.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"files": ["dist", "README.md"], "files": ["dist", "README.md"],
"scripts": { "scripts": {
"build": "tsup", "build": "tsup",