baml 0.1.0-arm64-darwin

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/lib/baml/ruby_ffi.bundle +0 -0
  3. data/lib/baml.rb +6 -0
  4. metadata +49 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 506efa1c8734dd11dc35e0c33fde9fa7b6fc3b6e9c71b223d60827f33d9df8b3
4
+ data.tar.gz: 857b0c9e79d4617372568c15d6973f9ae22c6aeb9ea5032c7dbc8cdeb0c1673c
5
+ SHA512:
6
+ metadata.gz: b7b37c4c1222766c2e63c9907259ff45e7b99ae209d76b1da3b0623668633caa5570585ec90b8d87d310cf5a96f9c7ad871e45f5d928bd5f4ede2d52c11b59f1
7
+ data.tar.gz: c723b1fcacd5997cb3097c37e293cf912a4d68b5a5cbd7bc91794cbbd6848e9a6ede88a8442b04355709063cbcee02704792337d0332ce5b17cda26c406bb79c
Binary file
data/lib/baml.rb ADDED
@@ -0,0 +1,6 @@
1
+ begin
2
+ ruby_version = /(\d+\.\d+)/.match(RUBY_VERSION)
3
+ require_relative "#{ruby_version}/baml/ruby_ffi"
4
+ rescue LoadError
5
+ require_relative "baml/ruby_ffi"
6
+ end
metadata ADDED
@@ -0,0 +1,49 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: baml
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: arm64-darwin
6
+ authors:
7
+ - BoundaryML
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2024-04-28 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: A gem for users to interact with BoundaryML's Language Model clients
14
+ (LLM) in Ruby.
15
+ email:
16
+ - contact@boundaryml.com
17
+ executables: []
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - lib/baml.rb
22
+ - lib/baml/ruby_ffi.bundle
23
+ homepage: https://github.com/BoundaryML/baml
24
+ licenses:
25
+ - MIT
26
+ metadata: {}
27
+ post_install_message:
28
+ rdoc_options: []
29
+ require_paths:
30
+ - lib
31
+ required_ruby_version: !ruby/object:Gem::Requirement
32
+ requirements:
33
+ - - ">="
34
+ - !ruby/object:Gem::Version
35
+ version: '3.1'
36
+ - - "<"
37
+ - !ruby/object:Gem::Version
38
+ version: 3.2.dev
39
+ required_rubygems_version: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: '0'
44
+ requirements: []
45
+ rubygems_version: 3.4.4
46
+ signing_key:
47
+ specification_version: 4
48
+ summary: Unified BoundaryML LLM client
49
+ test_files: []