vellum_ai 1.9.5 → 1.9.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/requests.rb +2 -2
- data/lib/vellum_ai/types/integration_name.rb +2 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 62f3d8d769081bc5dce68f44efa833a5492a977eeb66b03c54e8c04c2a0d4b65
|
|
4
|
+
data.tar.gz: dc91c9a40c1ae16607308e4f4ab6a4f45ccc900c27b76cac433e5100cad013ac
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8144531326fc3d4183f4faccb45a85a8bfdd72446f5c7e95f7ea5eb090e8796f730d4c1cfbf616c43494a5d8a9c0e0dc256237b7e2f56aa49e7b5e1915da7646
|
|
7
|
+
data.tar.gz: cdfe39cb1f800bbaf452f1bb56efb8e1766be15a178839f03ed08d817cc96c6bcdbd5700811c87507bcc11e0e5b7b2ac2b5908ed24f5e2fc396c89ed03d97e37
|
data/lib/requests.rb
CHANGED
|
@@ -56,7 +56,7 @@ end
|
|
|
56
56
|
end
|
|
57
57
|
# @return [Hash{String => String}]
|
|
58
58
|
def get_headers
|
|
59
|
-
headers = { "X-Fern-Language": 'Ruby', "X-Fern-SDK-Name": 'vellum_ai', "X-Fern-SDK-Version": '1.9.
|
|
59
|
+
headers = { "X-Fern-Language": 'Ruby', "X-Fern-SDK-Name": 'vellum_ai', "X-Fern-SDK-Version": '1.9.7' }
|
|
60
60
|
headers["X-API-KEY"] = ((@api_key.is_a? Method) ? @api_key.call : @api_key) unless @api_key.nil?
|
|
61
61
|
headers
|
|
62
62
|
end
|
|
@@ -107,7 +107,7 @@ end
|
|
|
107
107
|
end
|
|
108
108
|
# @return [Hash{String => String}]
|
|
109
109
|
def get_headers
|
|
110
|
-
headers = { "X-Fern-Language": 'Ruby', "X-Fern-SDK-Name": 'vellum_ai', "X-Fern-SDK-Version": '1.9.
|
|
110
|
+
headers = { "X-Fern-Language": 'Ruby', "X-Fern-SDK-Name": 'vellum_ai', "X-Fern-SDK-Version": '1.9.7' }
|
|
111
111
|
headers["X-API-KEY"] = ((@api_key.is_a? Method) ? @api_key.call : @api_key) unless @api_key.nil?
|
|
112
112
|
headers
|
|
113
113
|
end
|
|
@@ -50,6 +50,7 @@ module Vellum
|
|
|
50
50
|
# * `STRIPE` - Stripe
|
|
51
51
|
# * `SUPABASE` - Supabase
|
|
52
52
|
# * `TAVILY` - Tavily
|
|
53
|
+
# * `TELEGRAM` - Telegram
|
|
53
54
|
# * `WEBFLOW` - Webflow
|
|
54
55
|
# * `ZENDESK` - Zendesk
|
|
55
56
|
# * `DROPBOX` - Dropbox
|
|
@@ -108,6 +109,7 @@ module Vellum
|
|
|
108
109
|
STRIPE = "STRIPE"
|
|
109
110
|
SUPABASE = "SUPABASE"
|
|
110
111
|
TAVILY = "TAVILY"
|
|
112
|
+
TELEGRAM = "TELEGRAM"
|
|
111
113
|
WEBFLOW = "WEBFLOW"
|
|
112
114
|
ZENDESK = "ZENDESK"
|
|
113
115
|
DROPBOX = "DROPBOX"
|