Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.2] - 2026-06-16

- Fixed handling of FileReply

## [0.2.1] - 2026-06-15

- Fixed database DI
Expand Down
4 changes: 2 additions & 2 deletions plugin/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ai-document-plugin",
"version": "0.2.1",
"version": "0.2.2",
"description": "Plugin for DSW to generate documents using AI.",
"license": "MIT",
"author": "Marek Suchánek <marek.suchanek@ds-wizard.org>",
Expand Down
2 changes: 1 addition & 1 deletion plugin/src/metadata.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ import { PluginMetadata } from '@ds-wizard/plugin-sdk/types'
export const pluginMetadata: PluginMetadata = {
uuid: 'e9baedad-5817-4e94-8e76-5d0461a91845',
name: 'AI Document Plugin',
version: '0.2.1',
version: '0.2.2',
description: 'Plugin for DSW to generate documents using AI.',
}
2 changes: 1 addition & 1 deletion service/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "ai-document-plugin-service"
version = "0.2.1"
version = "0.2.2"
description = "Plugin for DSW to generate documents using AI."
keywords = ["wizard", "plugin", "ai", "document", "generation", "llm", "fastapi"]
license = "MIT"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,9 @@ def parse_answer( # noqa: PLR0911
return answer['value'] # this answer is answered in it's children
if answer_type == 'ItemSelectReply':
return _parse_item_select_reply(answer, km, replies, question_path)
if answer_type == 'FileReply':
logger.info('Skipping unsupported answer type %s', answer_type)
return ''

msg = 'Unknown answer type'
raise RuntimeError(msg, answer_type)
2 changes: 1 addition & 1 deletion service/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.