mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-05-12 13:05:15 +00:00
5708fbbc04
* support bot: take Grok initial context as messages array Generalizes GrokApiClient to take a list of seed messages instead of a single system prompt. Behavior is unchanged. * support bot: accept YAML transcript in --context-file Plain text → single system message (existing behavior). `.yaml`/`.yml` → parsed as harness transcript; only system and assistant turns are included.
25 lines
515 B
JSON
25 lines
515 B
JSON
{
|
|
"name": "simplex-chat-support-bot",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"start": "node dist/index.js"
|
|
},
|
|
"dependencies": {
|
|
"@simplex-chat/types": "^0.6.0",
|
|
"async-mutex": "^0.5.0",
|
|
"commander": "^14.0.3",
|
|
"simplex-chat": "^6.5.1",
|
|
"yaml": "^2.8.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.0.0",
|
|
"typescript": "^5.9.3",
|
|
"vitest": "^1.6.1"
|
|
},
|
|
"author": "SimpleX Chat",
|
|
"license": "AGPL-3.0"
|
|
}
|