update package name
This commit is contained in:
14
README.md
14
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
|
||||
|
10
package.json
10
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",
|
||||
|
@@ -2,7 +2,7 @@
|
||||
import { Logger, ILogObj } from "tslog";
|
||||
|
||||
const log: Logger<ILogObj> = new Logger({
|
||||
name: "workflow-function-manifold",
|
||||
name: "manifold-workflow-engine",
|
||||
prettyLogTemplate: "{{yyyy}}-{{mm}}-{{dd}} {{hh}}:{{MM}}:{{ss}}:{{ms}} {{logLevelName}} [{{name}}] ",
|
||||
prettyLogTimeZone: "local"
|
||||
});
|
||||
|
Reference in New Issue
Block a user