dify 0.1.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: ec5ebcc985e94080cd2ed583e4bf02763010a0c400b66f00b0846ed64587a66b
4
+ data.tar.gz: 78993e1931369d45f25ac0f0929e21e8ee3a9449b7b95e6af3c44696b6d920b1
5
+ SHA512:
6
+ metadata.gz: f98ef38af1cab07aa533e5e6d7b418e81a923d9419ca865dd734d835f0e27245e7af1fd542e50855a50f10c65d9d0c29f9d5d8869b564307c4b551b9b36b2dd0
7
+ data.tar.gz: dc2e5ab2617f5dbc0e003c9df0ab9962cc817a477790e5875c318c3c6e0ab3f273fd7d5264ffb3ae4330f37d3c60481c61ec6e71132111e9604aac86870c5965
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.rubocop.yml ADDED
@@ -0,0 +1,13 @@
1
+ AllCops:
2
+ TargetRubyVersion: 2.6
3
+
4
+ Style/StringLiterals:
5
+ Enabled: true
6
+ EnforcedStyle: double_quotes
7
+
8
+ Style/StringLiteralsInInterpolation:
9
+ Enabled: true
10
+ EnforcedStyle: double_quotes
11
+
12
+ Layout/LineLength:
13
+ Max: 120
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Released]
2
+
3
+ ## [0.1.5] - 2024-09-24
4
+
5
+ - Initial release
@@ -0,0 +1,84 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
6
+
7
+ We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.
8
+
9
+ ## Our Standards
10
+
11
+ Examples of behavior that contributes to a positive environment for our community include:
12
+
13
+ * Demonstrating empathy and kindness toward other people
14
+ * Being respectful of differing opinions, viewpoints, and experiences
15
+ * Giving and gracefully accepting constructive feedback
16
+ * Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
17
+ * Focusing on what is best not just for us as individuals, but for the overall community
18
+
19
+ Examples of unacceptable behavior include:
20
+
21
+ * The use of sexualized language or imagery, and sexual attention or
22
+ advances of any kind
23
+ * Trolling, insulting or derogatory comments, and personal or political attacks
24
+ * Public or private harassment
25
+ * Publishing others' private information, such as a physical or email
26
+ address, without their explicit permission
27
+ * Other conduct which could reasonably be considered inappropriate in a
28
+ professional setting
29
+
30
+ ## Enforcement Responsibilities
31
+
32
+ Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.
33
+
34
+ Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.
35
+
36
+ ## Scope
37
+
38
+ This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.
39
+
40
+ ## Enforcement
41
+
42
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at kervinchangyu@gmail.com. All complaints will be reviewed and investigated promptly and fairly.
43
+
44
+ All community leaders are obligated to respect the privacy and security of the reporter of any incident.
45
+
46
+ ## Enforcement Guidelines
47
+
48
+ Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:
49
+
50
+ ### 1. Correction
51
+
52
+ **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community.
53
+
54
+ **Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.
55
+
56
+ ### 2. Warning
57
+
58
+ **Community Impact**: A violation through a single incident or series of actions.
59
+
60
+ **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.
61
+
62
+ ### 3. Temporary Ban
63
+
64
+ **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior.
65
+
66
+ **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.
67
+
68
+ ### 4. Permanent Ban
69
+
70
+ **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals.
71
+
72
+ **Consequence**: A permanent ban from any sort of public interaction within the community.
73
+
74
+ ## Attribution
75
+
76
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0,
77
+ available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
78
+
79
+ Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity).
80
+
81
+ [homepage]: https://www.contributor-covenant.org
82
+
83
+ For answers to common questions about this code of conduct, see the FAQ at
84
+ https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations.
data/Gemfile ADDED
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ # Specify your gem's dependencies in dify-ruby.gemspec
6
+ gemspec
7
+
8
+ gem "rake", "~> 13.0"
9
+
10
+ gem "rspec", "~> 3.0"
11
+
12
+ gem "rubocop", "~> 1.21"
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 Kervin
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,45 @@
1
+ # dify-ruby
2
+
3
+ Ruby SDK for langgenius/dify.
4
+
5
+ ## Installation
6
+
7
+ Install the gem and add to the application's Gemfile by executing:
8
+
9
+ $ bundle add dify
10
+
11
+ If bundler is not being used to manage dependencies, install the gem by executing:
12
+
13
+ $ gem install dify
14
+
15
+ ## Usage
16
+
17
+ ```ruby
18
+ chat_client = Dify::ChatClient.new(api_key, base_url: base_url)
19
+ chat_client.create_chat_message(
20
+ inputs: { location: "Shenzhen" },
21
+ query: "What's the weather like today?",
22
+ user: "user123",
23
+ response_mode: "blocking"
24
+ ) do |chunk|
25
+ puts "Received chunk: #{chunk}"
26
+ end
27
+ ```
28
+
29
+ ## Development
30
+
31
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
32
+
33
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
34
+
35
+ ## Contributing
36
+
37
+ Bug reports and pull requests are welcome on GitHub at https://github.com/kervinchang/dify-ruby. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/dify-ruby/blob/main/CODE_OF_CONDUCT.md).
38
+
39
+ ## License
40
+
41
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
42
+
43
+ ## Code of Conduct
44
+
45
+ Everyone interacting in the Dify::Ruby project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/kervinchang/dify-ruby/blob/main/CODE_OF_CONDUCT.md).
data/Rakefile ADDED
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "rspec/core/rake_task"
5
+
6
+ RSpec::Core::RakeTask.new(:spec)
7
+
8
+ require "rubocop/rake_task"
9
+
10
+ RuboCop::RakeTask.new
11
+
12
+ task default: %i[spec rubocop]
@@ -0,0 +1,41 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Dify
4
+ class ChatClient < Client
5
+ def create_chat_message(parameters = {}, &block)
6
+ raise ArgumentError, "Invalid parameters" unless parameters.is_a?(Hash)
7
+ raise ArgumentError, "Invalid user" unless parameters[:user]
8
+ raise ArgumentError, "Invalid query" unless parameters[:query]
9
+
10
+ parameters[:inputs] ||= {}
11
+ parameters[:response_mode] ||= "streaming"
12
+ stream = parameters[:response_mode] == "streaming"
13
+
14
+ _send_request("POST", "/chat-messages", parameters, nil, stream, &block)
15
+ end
16
+
17
+ def get_conversation_messages(parameters = {})
18
+ raise ArgumentError, "Invalid parameters" unless parameters.is_a?(Hash)
19
+ raise ArgumentError, "Invalid user" unless parameters[:user]
20
+ raise ArgumentError, "Invalid conversation_id" unless parameters[:conversation_id]
21
+
22
+ _send_request("GET", "/messages", nil, parameters)
23
+ end
24
+
25
+ def get_conversations(parameters = {})
26
+ raise ArgumentError, "Invalid parameters" unless parameters.is_a?(Hash)
27
+ raise ArgumentError, "Invalid user" unless parameters[:user]
28
+
29
+ _send_request("GET", "/conversations", nil, parameters)
30
+ end
31
+
32
+ def rename_conversation(parameters = {})
33
+ raise ArgumentError, "Invalid parameters" unless parameters.is_a?(Hash)
34
+ raise ArgumentError, "Invalid user" unless parameters[:user]
35
+ raise ArgumentError, "Invalid conversation_id" unless parameters[:conversation_id]
36
+ raise ArgumentError, "Invalid name" unless parameters[:name]
37
+
38
+ _send_request("POST", "/conversations/#{parameters[:conversation_id]}/name", parameters)
39
+ end
40
+ end
41
+ end
@@ -0,0 +1,64 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "net/http"
4
+ require "json"
5
+
6
+ module Dify
7
+ class Client
8
+ def initialize(api_key, base_url: "https://api.dify.ai/v1")
9
+ @api_key = api_key
10
+ @base_url = base_url.end_with?("/v1") ? base_url : "#{base_url}/v1"
11
+ end
12
+
13
+ def _send_request(method, endpoint, data = nil, params = nil, stream = false, &block)
14
+ uri = URI.parse("#{@base_url}#{endpoint}")
15
+
16
+ http = Net::HTTP.new(uri.host, uri.port)
17
+ http.use_ssl = (uri.scheme == "https")
18
+
19
+ headers = {
20
+ "Authorization" => "Bearer #{@api_key}",
21
+ "Content-Type" => "application/json"
22
+ }
23
+
24
+ case method
25
+ when "GET"
26
+ uri.query = URI.encode_www_form(params) if params
27
+ request = Net::HTTP::Get.new(uri.request_uri, headers)
28
+ when "POST"
29
+ request = Net::HTTP::Post.new(uri.request_uri, headers)
30
+ request.body = data&.to_json
31
+ else
32
+ raise ArgumentError, "Unsupported HTTP method: #{method}"
33
+ end
34
+
35
+ if stream
36
+ http.request(request) do |response|
37
+ buffer = String.new
38
+ response.read_body do |chunk|
39
+ buffer << chunk
40
+ while (line = buffer.slice!(/data: (.+)\n/))
41
+ data = line.match(/data: (.+)\n/)[1]
42
+ block.call(JSON.parse(data)) if block_given?
43
+ end
44
+ end
45
+ end
46
+ else
47
+ http.request(request)
48
+ end
49
+ end
50
+
51
+ def message_feedback(message_id, rating, user)
52
+ data = {
53
+ rating: rating,
54
+ user: user
55
+ }
56
+ _send_request("POST", "/messages/#{message_id}/feedbacks", data)
57
+ end
58
+
59
+ def get_application_parameters(user)
60
+ params = { user: user }
61
+ _send_request("GET", "/parameters", nil, params)
62
+ end
63
+ end
64
+ end
@@ -0,0 +1,15 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Dify
4
+ class CompletionClient < Client
5
+ def create_completion_message(parameters = {}, &block)
6
+ raise ArgumentError, "Invalid parameters" unless parameters.is_a?(Hash)
7
+ raise ArgumentError, "Invalid user" unless parameters[:user]
8
+ raise ArgumentError, "Invalid inputs" unless parameters[:inputs]
9
+
10
+ parameters[:response_mode] ||= "streaming"
11
+ stream = parameters[:response_mode] == "streaming"
12
+ _send_request("POST", "/completion-messages", parameters, nil, stream, &block)
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Dify
4
+ VERSION = "0.1.5"
5
+ end
data/lib/dify.rb ADDED
@@ -0,0 +1,10 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "dify/client"
4
+ require "dify/chat_client"
5
+ require "dify/completion_client"
6
+ require "dify/version"
7
+
8
+ module Dify
9
+ class Error < StandardError; end
10
+ end
data/sig/dify.rbs ADDED
@@ -0,0 +1,4 @@
1
+ module Dify
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata ADDED
@@ -0,0 +1,86 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: dify
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.5
5
+ platform: ruby
6
+ authors:
7
+ - Kervin
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2024-09-24 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ description: This gem provides a Ruby client to interact with the Dify API for chat
42
+ and completion services.
43
+ email:
44
+ - kervinchangyu@gmail.com
45
+ executables: []
46
+ extensions: []
47
+ extra_rdoc_files: []
48
+ files:
49
+ - ".rspec"
50
+ - ".rubocop.yml"
51
+ - CHANGELOG.md
52
+ - CODE_OF_CONDUCT.md
53
+ - Gemfile
54
+ - LICENSE
55
+ - README.md
56
+ - Rakefile
57
+ - lib/dify.rb
58
+ - lib/dify/chat_client.rb
59
+ - lib/dify/client.rb
60
+ - lib/dify/completion_client.rb
61
+ - lib/dify/version.rb
62
+ - sig/dify.rbs
63
+ homepage: https://github.com/kervinchang/dify-ruby
64
+ licenses:
65
+ - MIT
66
+ metadata: {}
67
+ post_install_message:
68
+ rdoc_options: []
69
+ require_paths:
70
+ - lib
71
+ required_ruby_version: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: 2.0.0
76
+ required_rubygems_version: !ruby/object:Gem::Requirement
77
+ requirements:
78
+ - - ">="
79
+ - !ruby/object:Gem::Version
80
+ version: '0'
81
+ requirements: []
82
+ rubygems_version: 3.0.3.1
83
+ signing_key:
84
+ specification_version: 4
85
+ summary: A Ruby client for Dify API.
86
+ test_files: []