evalguard 0.1.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.
Files changed (4) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +14 -0
  3. data/lib/evalguard.rb +14 -0
  4. metadata +47 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: cc70c315ee63c667063c453c9ea84b852d2042ae063d1075dad334d23e617315
4
+ data.tar.gz: 2f8ecebe805e9202f0b0ec22c9834d1485532cd4169f2d4d23feb79b3d96a23c
5
+ SHA512:
6
+ metadata.gz: dd0993874ab92cacb7ff6f8379a7ee0cfddafebd875126a52531f5a9a545d1bbe061356a1575d41231aa99512c556d11f3b7741dc7418913c2aac545e1817ac8
7
+ data.tar.gz: 3310886973dd28e8fb6e8da3d0d45f1340e751e78aacaf4379ba3fe6e099b99f8ffd73430640ae6db332705801ff5a7dcd639c54037a88abcc9ed6cb8dac5de1
data/README.md ADDED
@@ -0,0 +1,14 @@
1
+ # evalguard (Ruby gem)
2
+
3
+ Reservation gem for the upcoming EvalGuard Ruby SDK.
4
+
5
+ The supported public surface today lives in:
6
+
7
+ - npm: [`evalguardai-sdk`](https://www.npmjs.com/package/evalguardai-sdk)
8
+ - PyPI: [`evalguardai`](https://pypi.org/project/evalguardai/)
9
+
10
+ EvalGuard is the independent AI platform for teams shipping LLM agents.
11
+ 249 attack plugins, 106 eval scorers, 87 providers, 33 compliance frameworks.
12
+
13
+ - Homepage: https://evalguard.ai
14
+ - Source: https://github.com/EvalGuardAi/evalguard
data/lib/evalguard.rb ADDED
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ # EvalGuard — reservation gem.
4
+ #
5
+ # The Ruby SDK is on the roadmap. The supported public surface today
6
+ # lives in the TypeScript (evalguardai-sdk on npm) and Python (evalguardai
7
+ # on PyPI) SDKs.
8
+ #
9
+ # Track progress at https://github.com/EvalGuardAi/evalguard.
10
+ module EvalGuard
11
+ VERSION = "0.1.0"
12
+ HOMEPAGE = "https://evalguard.ai"
13
+ RESERVATION = true
14
+ end
metadata ADDED
@@ -0,0 +1,47 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: evalguard
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - EvalGuard
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies: []
12
+ description: Reservation gem for the upcoming EvalGuard Ruby SDK. The supported public
13
+ surface today lives in the TypeScript (evalguardai-sdk on npm) and Python (evalguardai
14
+ on PyPI) SDKs. https://evalguard.ai
15
+ email: support@evalguard.ai
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - README.md
21
+ - lib/evalguard.rb
22
+ homepage: https://evalguard.ai
23
+ licenses:
24
+ - MIT
25
+ metadata:
26
+ homepage_uri: https://evalguard.ai
27
+ source_code_uri: https://github.com/EvalGuardAi/evalguard
28
+ documentation_uri: https://docs.evalguard.ai
29
+ bug_tracker_uri: https://github.com/EvalGuardAi/evalguard/issues
30
+ rdoc_options: []
31
+ require_paths:
32
+ - lib
33
+ required_ruby_version: !ruby/object:Gem::Requirement
34
+ requirements:
35
+ - - ">="
36
+ - !ruby/object:Gem::Version
37
+ version: '2.7'
38
+ required_rubygems_version: !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ version: '0'
43
+ requirements: []
44
+ rubygems_version: 3.6.9
45
+ specification_version: 4
46
+ summary: EvalGuard SDK for Ruby — reservation
47
+ test_files: []