https://github.com/llm-workflow-engine/lwe-plugin-test
Test Plugin for LLM Workflow Engine (LWE)
https://github.com/llm-workflow-engine/lwe-plugin-test
Last synced: 3 months ago
JSON representation
Test Plugin for LLM Workflow Engine (LWE)
- Host: GitHub
- URL: https://github.com/llm-workflow-engine/lwe-plugin-test
- Owner: llm-workflow-engine
- Created: 2023-07-12T21:09:09.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-25T23:28:40.000Z (almost 3 years ago)
- Last Synced: 2024-12-31T22:41:57.947Z (over 1 year ago)
- Language: Python
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# LLM Workflow Engine (LWE) Test plugin
Test plugin for [LLM Workflow Engine](https://github.com/llm-workflow-engine/llm-workflow-engine)
This is a bare bones example of a shell command plugin that echos back whatever is entered.
## Installation
### From packages
Install the latest version of this software directly from github with pip:
```bash
pip install git+https://github.com/llm-workflow-engine/lwe-plugin-test
```
### From source (recommended for development)
Install the latest version of this software directly from git:
```bash
git clone https://github.com/llm-workflow-engine/lwe-plugin-test.git
```
Install the development package:
```bash
cd lwe-plugin-test
pip install -e .
```
## Configuration
Add the following to `config.yaml` in your profile:
```yaml
plugins:
enabled:
- test
# Any other plugins you want enabled...
# These are the default values.
test:
response:
prefix: '[LWE Plugin] Test'
```
## Usage
From a running LWE shell:
```
/test Hello World!
[LWE Plugin] Test: Hello World!
```