context.dev 0.4.0 → 1.0.0
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/CHANGELOG.md +8 -0
- data/README.md +1 -1
- data/lib/context_dev/resources/web.rb +3 -5
- data/lib/context_dev/version.rb +1 -1
- data/rbi/context_dev/resources/web.rbi +3 -5
- 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: ce18332b3f13961ff9ad6786e5bd9b70ce0e8fdac85e9b9fa96464d92d216912
|
|
4
|
+
data.tar.gz: 8d3fee6ed1a2234af48f4708eef681a15f09bd4abe808826151884dd2436e981
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a3ca40512236273d4e58a969c8ec3beabf09b4e0ed93eeeeb2295fc9e0ae3fdc740f5b7ab24bf9425ab5411280c4eb900aed05b6bde0b7038b2e7fedfdd2838e
|
|
7
|
+
data.tar.gz: 9a1fbc45a9482ffbb6da7bb67b44a359f47ae3a6dfb09d1a69a99f035358e094a62d5127a83d87e07eb5435837e7a60b0eee170d52654e43b58bcc024af477d2
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.0.0 (2026-03-25)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.4.0...v1.0.0](https://github.com/context-dot-dev/context-ruby-sdk/compare/v0.4.0...v1.0.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([4767618](https://github.com/context-dot-dev/context-ruby-sdk/commit/4767618765a8f15bde582bf35f78190649681453))
|
|
10
|
+
|
|
3
11
|
## 0.4.0 (2026-03-25)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v0.3.0...v0.4.0](https://github.com/context-dot-dev/context-ruby-sdk/compare/v0.3.0...v0.4.0)
|
data/README.md
CHANGED
|
@@ -38,8 +38,7 @@ module ContextDev
|
|
|
38
38
|
)
|
|
39
39
|
end
|
|
40
40
|
|
|
41
|
-
# Scrapes the given URL and returns the raw HTML content of the page.
|
|
42
|
-
# automatic proxy escalation to handle blocked sites.
|
|
41
|
+
# Scrapes the given URL and returns the raw HTML content of the page.
|
|
43
42
|
#
|
|
44
43
|
# @overload web_scrape_html(url:, request_options: {})
|
|
45
44
|
#
|
|
@@ -90,9 +89,8 @@ module ContextDev
|
|
|
90
89
|
# Some parameter documentations has been truncated, see
|
|
91
90
|
# {ContextDev::Models::WebWebScrapeMdParams} for more details.
|
|
92
91
|
#
|
|
93
|
-
# Scrapes the given URL, converts the HTML content to
|
|
94
|
-
#
|
|
95
|
-
# sites.
|
|
92
|
+
# Scrapes the given URL, converts the HTML content to Markdown, and returns the
|
|
93
|
+
# result.
|
|
96
94
|
#
|
|
97
95
|
# @overload web_scrape_md(url:, include_images: nil, include_links: nil, shorten_base64_images: nil, request_options: {})
|
|
98
96
|
#
|
data/lib/context_dev/version.rb
CHANGED
|
@@ -38,8 +38,7 @@ module ContextDev
|
|
|
38
38
|
)
|
|
39
39
|
end
|
|
40
40
|
|
|
41
|
-
# Scrapes the given URL and returns the raw HTML content of the page.
|
|
42
|
-
# automatic proxy escalation to handle blocked sites.
|
|
41
|
+
# Scrapes the given URL and returns the raw HTML content of the page.
|
|
43
42
|
sig do
|
|
44
43
|
params(
|
|
45
44
|
url: String,
|
|
@@ -69,9 +68,8 @@ module ContextDev
|
|
|
69
68
|
)
|
|
70
69
|
end
|
|
71
70
|
|
|
72
|
-
# Scrapes the given URL, converts the HTML content to
|
|
73
|
-
#
|
|
74
|
-
# sites.
|
|
71
|
+
# Scrapes the given URL, converts the HTML content to Markdown, and returns the
|
|
72
|
+
# result.
|
|
75
73
|
sig do
|
|
76
74
|
params(
|
|
77
75
|
url: String,
|