Skip to content

Commit f882653

Browse files
authored
Shorten long doc (#47)
1 parent b05cbaa commit f882653

5 files changed

Lines changed: 468 additions & 372 deletions

File tree

.github/workflows/release.yml

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,19 @@ jobs:
1818
with:
1919
fetch-depth: 0
2020

21-
- name: Set up Python and Install dependencies
22-
if: env.SKIP_RELEASE != 'true'
21+
- name: Install uv
22+
uses: astral-sh/setup-uv@v5
23+
with:
24+
enable-cache: true
25+
26+
- name: Set up Python
27+
uses: actions/setup-python@v4
28+
with:
29+
python-version: '3.12'
30+
31+
- name: Install dependencies
2332
run: |
24-
uv python install ${{ env.PYTHONVERSION }}
25-
uv venv
26-
uv pip install .
33+
uv sync
2734
uv pip install twine build toml
2835
2936
- name: Get version from main

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 0.1.3-dev
2+
3+
### Enhancements
4+
5+
- Duplicated description of the custom workflow was removed from the tools, freeing up tokens from the LLM.
6+
7+
### Fixes
8+
19
## 0.1.2
210

311
### Enhancements

Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ debug:
66
sse-client:
77
uv run python minimal_client/client.py "http://127.0.0.1:8080/sse"
88

9-
109
.PHONY: sse-client-terminal
1110
sse-client-terminal:
1211
uv run python minimal_client/client.py "http://127.0.0.1:8080/sse" "@wonderwhy-er/desktop-commander"

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -267,6 +267,13 @@ uv run python minimal_client/client.py "http://127.0.0.1:8080/sse" "@wonderwhy-e
267267
make sse-client-terminal
268268
```
269269

270+
## Using subset of tools
271+
If your client supports using only subset of tools here are the list of things you should be aware:
272+
- `update_workflow` tool has to be loaded in the context together with `create_workflow` tool, because it contains detailed description on how to create and configure custom node.
273+
274+
## Known issues
275+
- `update_workflow` - needs to have in context the configuration of the workflow it is updating either by providing it by the user or by calling `get_workflow_info` tool, as this tool doesn't work as `patch` applier, it fully replaces the workflow config.
276+
270277
## CHANGELOG.md
271278

272279
Any new developed features/fixes/enhancements will be added to CHANGELOG.md. 0.x.x-dev pre-release format is preferred before we bump to a stable version.

0 commit comments

Comments
 (0)