baml 0.1.0-aarch64-linux

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/baml.so +0 -0
  3. data/lib/baml.rb +9 -0
  4. metadata +49 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: ac1a499103bfe1463f22871d3d97348876d6b0500a4751684b8000c0b736809c
4
+ data.tar.gz: 9f1644242fc6448bcbba689411edcdea7eef4e126127136792dd0aa859eb80e5
5
+ SHA512:
6
+ metadata.gz: c2f427540d45fdd09aa2418f010f5e3cb1f8f95cf530173134a043f57dbb1bd069cf8c111abbfb67c478cb1207d2f7c71fbf5bf7c88da5213952aaafa598faff
7
+ data.tar.gz: c7334b5aeccb57c995a529fd843557c1f6f81a20e34de25793a139ac693023e77f50d65abaed39757a59738497b8bda9c0f46b6c3cce10a95349a410dd9f8f33
data/lib/baml/baml.so ADDED
Binary file
data/lib/baml.rb ADDED
@@ -0,0 +1,9 @@
1
+ begin
2
+ ruby_version = /(\d+\.\d+)/.match(RUBY_VERSION)
3
+ require_relative "#{ruby_version}/baml"
4
+ rescue LoadError
5
+ require_relative "baml"
6
+ end
7
+
8
+ module Baml
9
+ 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: aarch64-linux
6
+ authors:
7
+ - BoundaryML
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2024-04-24 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/baml.so
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.3'
36
+ - - "<"
37
+ - !ruby/object:Gem::Version
38
+ version: 3.4.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: []