gpt_neox_client 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ # GPTNeoXClient is a Ruby client for GPT-NeoX.
4
+ class GPTNeoXClient
5
+ # The version of GPTNeoXClient you are using.
6
+ VERSION = '0.1.0'
7
+ end
@@ -0,0 +1,4 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'gpt_neox_client/version'
4
+ require_relative 'gpt_neox_client/gpt_neox_client'
metadata ADDED
@@ -0,0 +1,75 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: gpt_neox_client
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - yoshoku
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2023-09-01 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: gpt_neox_client is a simple client for GPT-NeoX.
14
+ email:
15
+ - yoshoku@outlook.com
16
+ executables: []
17
+ extensions:
18
+ - ext/gpt_neox_client/extconf.rb
19
+ extra_rdoc_files: []
20
+ files:
21
+ - CHANGELOG.md
22
+ - CODE_OF_CONDUCT.md
23
+ - LICENSE.txt
24
+ - README.md
25
+ - ext/gpt_neox_client/extconf.rb
26
+ - ext/gpt_neox_client/gpt_neox_client.cpp
27
+ - ext/gpt_neox_client/gpt_neox_client.h
28
+ - ext/gpt_neox_client/src/LICENSE
29
+ - ext/gpt_neox_client/src/common-ggml.cpp
30
+ - ext/gpt_neox_client/src/common-ggml.h
31
+ - ext/gpt_neox_client/src/common.cpp
32
+ - ext/gpt_neox_client/src/common.h
33
+ - ext/gpt_neox_client/src/dr_wav.h
34
+ - ext/gpt_neox_client/src/ggml/ggml-alloc.c
35
+ - ext/gpt_neox_client/src/ggml/ggml-alloc.h
36
+ - ext/gpt_neox_client/src/ggml/ggml-cuda.cu
37
+ - ext/gpt_neox_client/src/ggml/ggml-cuda.h
38
+ - ext/gpt_neox_client/src/ggml/ggml-metal.h
39
+ - ext/gpt_neox_client/src/ggml/ggml-metal.m
40
+ - ext/gpt_neox_client/src/ggml/ggml-metal.metal
41
+ - ext/gpt_neox_client/src/ggml/ggml-opencl.cpp
42
+ - ext/gpt_neox_client/src/ggml/ggml-opencl.h
43
+ - ext/gpt_neox_client/src/ggml/ggml.c
44
+ - ext/gpt_neox_client/src/ggml/ggml.h
45
+ - ext/gpt_neox_client/src/main.cpp
46
+ - lib/gpt_neox_client.rb
47
+ - lib/gpt_neox_client/version.rb
48
+ homepage: https://github.com/yoshoku/gpt_neox_client
49
+ licenses:
50
+ - MIT
51
+ metadata:
52
+ homepage_uri: https://github.com/yoshoku/gpt_neox_client
53
+ source_code_uri: https://github.com/yoshoku/gpt_neox_client
54
+ changelog_uri: https://github.com/yoshoku/gpt_neox_client/blob/main/CHANGELOG.md
55
+ rubygems_mfa_required: 'true'
56
+ post_install_message:
57
+ rdoc_options: []
58
+ require_paths:
59
+ - lib
60
+ required_ruby_version: !ruby/object:Gem::Requirement
61
+ requirements:
62
+ - - ">="
63
+ - !ruby/object:Gem::Version
64
+ version: '0'
65
+ required_rubygems_version: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - ">="
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ requirements: []
71
+ rubygems_version: 3.3.26
72
+ signing_key:
73
+ specification_version: 4
74
+ summary: gpt_neox_client is a simple client for GPT-NeoX.
75
+ test_files: []