This repository was archived by the owner on Jul 22, 2025. It is now read-only.
generated from discourse/discourse-plugin-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 41
FEATURE: Add streaming to composer helper #1256
Merged
Merged
Changes from 3 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
28bcfc3
WIP: Add streaming to composer helper
keegangeorge 4bddf8d
DEV: Working smooth streaming
keegangeorge 4e491c8
more...
keegangeorge bfd3a63
patch
keegangeorge eca939d
fixes
keegangeorge a9843e3
skip these for now
keegangeorge File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,27 @@ | ||
| # frozen_string_literal: true | ||
|
|
||
| module Jobs | ||
| class StreamComposerHelper < ::Jobs::Base | ||
| sidekiq_options retry: false | ||
|
|
||
| def execute(args) | ||
| return unless args[:prompt] | ||
| return unless user = User.find_by(id: args[:user_id]) | ||
| return unless args[:text] | ||
|
|
||
| prompt = CompletionPrompt.enabled_by_name(args[:prompt]) | ||
|
|
||
| if prompt.id == CompletionPrompt::CUSTOM_PROMPT | ||
| prompt.custom_instruction = args[:custom_prompt] | ||
| end | ||
|
|
||
| DiscourseAi::AiHelper::Assistant.new.stream_prompt( | ||
| prompt, | ||
| args[:text], | ||
| user, | ||
| "/discourse-ai/ai-helper/stream_composer_suggestion", | ||
| force_default_locale: args[:force_default_locale], | ||
| ) | ||
| end | ||
| end | ||
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.