Sha256: f091a2895c878d2ce1e015c28ac8e67c9b13d3f0f215f647217b7f1365183b5b
Contents?: true
Size: 268 Bytes
Versions: 1
Compression:
Stored size: 268 Bytes
Contents
# frozen_string_literal: true require "roseflow/action" require_relative "../github_chat_prompt" class Actions::CreatePrompt extend Roseflow::Action expects :input promises :prompt executed do |ctx| ctx[:prompt] = GithubChatPrompt.new(input) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
roseflow-0.1.0 | examples/github-repo-chat/lib/actions/create_prompt.rb |