From 715aae5bddaa2179cd96323b497b5ef48ee72bdb Mon Sep 17 00:00:00 2001 From: Geoff Seemueller Date: Thu, 12 Dec 2024 17:31:20 -0500 Subject: [PATCH] update package name --- README.md | 14 +++++++------- package.json | 10 +++++----- src/logger.ts | 2 +- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 714015b..c384d11 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# workflow-function-manifold +# manifold-workflow-engine > A TypeScript/JavaScript library for building dynamic, LLM-driven workflows using a region-based execution model. @@ -7,7 +7,7 @@ ## Overview -`workflow-function-manifold` is a powerful library for creating dynamic, LLM-driven workflows that leverage a region-based execution model. It enables seamless navigation between different execution regions based on natural language prompts and maintains consistent workflow state throughout the execution process. +`manifold-workflow-engine` is a powerful library for creating dynamic, LLM-driven workflows that leverage a region-based execution model. It enables seamless navigation between different execution regions based on natural language prompts and maintains consistent workflow state throughout the execution process. ### Key Features @@ -21,13 +21,13 @@ ## Installation ```bash -npm install workflow-function-manifold +npm install manifold-workflow-engine ``` Or using Bun: ```bash -bun add workflow-function-manifold +bun add manifold-workflow-engine ``` ## Quick Start @@ -38,7 +38,7 @@ import { ManifoldRegion, WorkflowOperator, DummyIntentMap, -} from 'workflow-function-manifold'; +} from 'manifold-workflow-engine'; // Create a new manifold instance const intentService = new DummyIntentMap(); @@ -112,7 +112,7 @@ import { WorkflowOperator, NestedManifoldRegion, DummyIntentMap, -} from 'workflow-function-manifold'; +} from 'manifold-workflow-engine'; async function createWorkflow() { // Create nested workflow for preprocessing @@ -171,7 +171,7 @@ for (const prompt of prompts) { A more complete example can be found in `src/cli.ts`. For fun, experience it in action. ```bash -npx workflow-function-manifold +npx manifold-workflow-engine ``` ## State Management diff --git a/package.json b/package.json index 607eb8e..c123464 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,11 @@ { - "name": "workflow-function-manifold", - "version": "2.0.1", + "name": "manifold-workflow-engine", + "version": "2.0.2", + "author": "seemueller-io", "type": "module", "description": "for building dynamic, LLM-driven workflows using a region-based execution model", "license": "AGPL-3.0-or-later", - "repository": "https://github.com/geoffsee/workflow-function-manifold.git", + "repository": "https://github.com/seemueller-io/workflow-engine.git", "exports": { ".": { "import": { @@ -14,7 +15,7 @@ } }, "bin": { - "workflow-function-manifold": "./dist/cli.js" + "manifold-workflow-engine": "./dist/cli.js" }, "files": [ "dist" @@ -33,7 +34,6 @@ "fix": "bun run format && bun run lint:fix" }, "keywords": [], - "author": "geoffsee", "devDependencies": { "@eslint/js": "^9.14.0", "@types/bun": "latest", diff --git a/src/logger.ts b/src/logger.ts index 7a089e2..e2da9ae 100644 --- a/src/logger.ts +++ b/src/logger.ts @@ -2,7 +2,7 @@ import { Logger, ILogObj } from "tslog"; const log: Logger = new Logger({ - name: "workflow-function-manifold", + name: "manifold-workflow-engine", prettyLogTemplate: "{{yyyy}}-{{mm}}-{{dd}} {{hh}}:{{MM}}:{{ss}}:{{ms}} {{logLevelName}} [{{name}}] ", prettyLogTimeZone: "local" });