openai_101 0.0.2 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.builders/generators/01-bootstrap.rb +5 -4
- data/.releaserc.json +1 -1
- data/.rubocop.yml +6 -4
- data/.tool-versions +1 -1
- data/CHANGELOG.md +1 -1
- data/README.md +3 -3
- data/lib/openai_101/version.rb +1 -1
- data/lib/openai_101.rb +0 -2
- data/package-lock.json +2555 -721
- data/package.json +2 -2
- metadata +7 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 964f174e34e4c8063c8fd0906e44c7df9342641ad0636dcc1831498f40df0ab7
|
4
|
+
data.tar.gz: 8d8e92dc3cb7acc4f97de50ab5d26bc57fcab7f4edef293922ad54a8f5863406
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c68f8e0922fa00c27268aabee1ab87eee27ed4ffe2cc3efc42312e637e7efc5dad8a8256e4b4bee02bcb58244cea6c32be80928eff9736d7bb93e8ce663f6037
|
7
|
+
data.tar.gz: beb36b86b11ab8a5e51b80622926bfcf52009a8dba8811a82a35fca0e178ba2acac2d1804c23b71081bac23a1c4db805f3bd1fb0d3e17ec90362c18db1409466
|
@@ -9,22 +9,23 @@ KManager.action :bootstrap do
|
|
9
9
|
on_action: :queue # %i[queue execute]
|
10
10
|
)
|
11
11
|
.data(
|
12
|
-
ruby_version: '3.
|
12
|
+
ruby_version: '3.0',
|
13
13
|
application: application_name,
|
14
|
-
application_description: 'OpenAI 101
|
14
|
+
application_description: 'OpenAI 101 working through the API endpoints',
|
15
15
|
application_lib_path: application_name.to_s, # need a specialized handlebars helper to turn this into a path, e.g ps-common => ps/common
|
16
16
|
application_lib_namespace: 'Openai101',
|
17
17
|
namespaces: ['Openai101'],
|
18
18
|
author: 'David Cruwys',
|
19
19
|
author_email: 'david@ideasmen.com.au',
|
20
20
|
initial_semver: '0.0.1',
|
21
|
-
main_story: 'As a
|
21
|
+
main_story: 'As a Developer, I want to understand openai/chatgpt APIs, so that I can build AI applications effectively',
|
22
22
|
copyright_date: '2024',
|
23
23
|
website: 'http://appydave.com/gems/openai_101'
|
24
24
|
)
|
25
25
|
.github(
|
26
26
|
active: false,
|
27
|
-
repo_name: application_name
|
27
|
+
repo_name: application_name,
|
28
|
+
organization: 'appydave'
|
28
29
|
) do
|
29
30
|
create_repository
|
30
31
|
# delete_repository
|
data/.releaserc.json
CHANGED
data/.rubocop.yml
CHANGED
@@ -7,7 +7,7 @@ require:
|
|
7
7
|
- rubocop-rake
|
8
8
|
|
9
9
|
AllCops:
|
10
|
-
TargetRubyVersion: 3.
|
10
|
+
TargetRubyVersion: 3.0
|
11
11
|
DisplayCopNames: true
|
12
12
|
ExtraDetails: true
|
13
13
|
NewCops: enable
|
@@ -95,9 +95,11 @@ Layout/SpaceBeforeComma:
|
|
95
95
|
RSpec/NestedGroups:
|
96
96
|
Max: 5
|
97
97
|
|
98
|
-
RSpec/
|
99
|
-
|
100
|
-
|
98
|
+
RSpec/SpecFilePathFormat:
|
99
|
+
Enabled: true
|
100
|
+
|
101
|
+
RSpec/SpecFilePathSuffix:
|
102
|
+
Enabled: true
|
101
103
|
|
102
104
|
RSpec/NamedSubject:
|
103
105
|
Exclude:
|
data/.tool-versions
CHANGED
@@ -1 +1 @@
|
|
1
|
-
ruby 3.
|
1
|
+
ruby 3.3.3
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Openai 101
|
2
2
|
|
3
|
-
> OpenAI 101
|
3
|
+
> OpenAI 101 working through the API endpoints
|
4
4
|
|
5
5
|
## Installation
|
6
6
|
|
@@ -26,7 +26,7 @@ gem install openai_101
|
|
26
26
|
|
27
27
|
### Main Story
|
28
28
|
|
29
|
-
As a
|
29
|
+
As a Developer, I want to understand openai/chatgpt APIs, so that I can build AI applications effectively
|
30
30
|
|
31
31
|
See all [stories](./STORIES.md)
|
32
32
|
|
@@ -42,7 +42,7 @@ See all [usage examples](./USAGE.md)
|
|
42
42
|
Checkout the repo
|
43
43
|
|
44
44
|
```bash
|
45
|
-
git clone https://github.com/
|
45
|
+
git clone https://github.com/appydave/openai_101
|
46
46
|
```
|
47
47
|
|
48
48
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests.
|
data/lib/openai_101/version.rb
CHANGED