mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-15 08:03:39 +00:00
- Changed package name from @mariozechner/ai to @mariozechner/pi-ai - Fixed generate-models.ts to fetch from models.dev API instead of local file - Completely rewrote README with practical examples: - Image input with base64 encoding - Proper tool calling with context management - Streaming with completion indicators - Abort signal usage - Provider-specific options (reasoning/thinking) - Custom model definitions for local/self-hosted LLMs - Environment variables explanation - Bumped version to 0.5.9 and published
47 lines
959 B
JSON
47 lines
959 B
JSON
{
|
|
"name": "@mariozechner/pi-agent",
|
|
"version": "0.5.9",
|
|
"description": "General-purpose agent with tool calling and session persistence",
|
|
"type": "module",
|
|
"bin": {
|
|
"pi-agent": "dist/cli.js"
|
|
},
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"clean": "rm -rf dist",
|
|
"build": "tsc -p tsconfig.build.json && chmod +x dist/cli.js",
|
|
"check": "biome check --write .",
|
|
"prepublishOnly": "npm run clean && npm run build"
|
|
},
|
|
"dependencies": {
|
|
"@mariozechner/pi-tui": "^0.5.9",
|
|
"@types/glob": "^8.1.0",
|
|
"chalk": "^5.5.0",
|
|
"glob": "^11.0.3",
|
|
"openai": "^5.12.2"
|
|
},
|
|
"devDependencies": {},
|
|
"keywords": [
|
|
"agent",
|
|
"ai",
|
|
"llm",
|
|
"openai",
|
|
"claude",
|
|
"cli",
|
|
"tui"
|
|
],
|
|
"author": "Mario Zechner",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/badlogic/pi-mono.git",
|
|
"directory": "packages/agent"
|
|
},
|
|
"engines": {
|
|
"node": ">=20.0.0"
|
|
}
|
|
}
|