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.
|
> A TypeScript/JavaScript library for building dynamic, LLM-driven workflows using a region-based execution model.
|
||||||
|
|
||||||
@@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
## Overview
|
## 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
|
### Key Features
|
||||||
|
|
||||||
@@ -21,13 +21,13 @@
|
|||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
npm install workflow-function-manifold
|
npm install manifold-workflow-engine
|
||||||
```
|
```
|
||||||
|
|
||||||
Or using Bun:
|
Or using Bun:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
bun add workflow-function-manifold
|
bun add manifold-workflow-engine
|
||||||
```
|
```
|
||||||
|
|
||||||
## Quick Start
|
## Quick Start
|
||||||
@@ -38,7 +38,7 @@ import {
|
|||||||
ManifoldRegion,
|
ManifoldRegion,
|
||||||
WorkflowOperator,
|
WorkflowOperator,
|
||||||
DummyIntentMap,
|
DummyIntentMap,
|
||||||
} from 'workflow-function-manifold';
|
} from 'manifold-workflow-engine';
|
||||||
|
|
||||||
// Create a new manifold instance
|
// Create a new manifold instance
|
||||||
const intentService = new DummyIntentMap();
|
const intentService = new DummyIntentMap();
|
||||||
@@ -112,7 +112,7 @@ import {
|
|||||||
WorkflowOperator,
|
WorkflowOperator,
|
||||||
NestedManifoldRegion,
|
NestedManifoldRegion,
|
||||||
DummyIntentMap,
|
DummyIntentMap,
|
||||||
} from 'workflow-function-manifold';
|
} from 'manifold-workflow-engine';
|
||||||
|
|
||||||
async function createWorkflow() {
|
async function createWorkflow() {
|
||||||
// Create nested workflow for preprocessing
|
// 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.
|
A more complete example can be found in `src/cli.ts`. For fun, experience it in action.
|
||||||
```bash
|
```bash
|
||||||
npx workflow-function-manifold
|
npx manifold-workflow-engine
|
||||||
```
|
```
|
||||||
|
|
||||||
## State Management
|
## State Management
|
||||||
|
10
package.json
10
package.json
@@ -1,10 +1,11 @@
|
|||||||
{
|
{
|
||||||
"name": "workflow-function-manifold",
|
"name": "manifold-workflow-engine",
|
||||||
"version": "2.0.1",
|
"version": "2.0.2",
|
||||||
|
"author": "seemueller-io",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"description": "for building dynamic, LLM-driven workflows using a region-based execution model",
|
"description": "for building dynamic, LLM-driven workflows using a region-based execution model",
|
||||||
"license": "AGPL-3.0-or-later",
|
"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": {
|
"exports": {
|
||||||
".": {
|
".": {
|
||||||
"import": {
|
"import": {
|
||||||
@@ -14,7 +15,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"bin": {
|
"bin": {
|
||||||
"workflow-function-manifold": "./dist/cli.js"
|
"manifold-workflow-engine": "./dist/cli.js"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"dist"
|
"dist"
|
||||||
@@ -33,7 +34,6 @@
|
|||||||
"fix": "bun run format && bun run lint:fix"
|
"fix": "bun run format && bun run lint:fix"
|
||||||
},
|
},
|
||||||
"keywords": [],
|
"keywords": [],
|
||||||
"author": "geoffsee",
|
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@eslint/js": "^9.14.0",
|
"@eslint/js": "^9.14.0",
|
||||||
"@types/bun": "latest",
|
"@types/bun": "latest",
|
||||||
|
@@ -2,7 +2,7 @@
|
|||||||
import { Logger, ILogObj } from "tslog";
|
import { Logger, ILogObj } from "tslog";
|
||||||
|
|
||||||
const log: Logger<ILogObj> = new Logger({
|
const log: Logger<ILogObj> = new Logger({
|
||||||
name: "workflow-function-manifold",
|
name: "manifold-workflow-engine",
|
||||||
prettyLogTemplate: "{{yyyy}}-{{mm}}-{{dd}} {{hh}}:{{MM}}:{{ss}}:{{ms}} {{logLevelName}} [{{name}}] ",
|
prettyLogTemplate: "{{yyyy}}-{{mm}}-{{dd}} {{hh}}:{{MM}}:{{ss}}:{{ms}} {{logLevelName}} [{{name}}] ",
|
||||||
prettyLogTimeZone: "local"
|
prettyLogTimeZone: "local"
|
||||||
});
|
});
|
||||||
|
Reference in New Issue
Block a user