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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8ebf546c03971c1d5a9da6dd30e35911e1220205244ea8b73ed24ec92b2b21e5
4
- data.tar.gz: aaf3db3e9919146dbbb786105696845035cd4eacfc7b7c75186449df3d1f9f7b
3
+ metadata.gz: 964f174e34e4c8063c8fd0906e44c7df9342641ad0636dcc1831498f40df0ab7
4
+ data.tar.gz: 8d8e92dc3cb7acc4f97de50ab5d26bc57fcab7f4edef293922ad54a8f5863406
5
5
  SHA512:
6
- metadata.gz: 1544585db91c6e0b45944a2e236d5e10310560b9c4950756c07f7804659fa911e7aa980c4417c8d025e243dd0ed6e29bc66dc406974ffeb81fd41db9353e4bc2
7
- data.tar.gz: 26e54c68e02682ec7eff41ea45e49eec9323f6c89a8de45245f8be9262ade51acbdbfc39facd1ccb16d85c4cccb1bdaef4fdfac9608c7a7038ab0e84062ad147
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.2',
12
+ ruby_version: '3.0',
13
13
  application: application_name,
14
- application_description: 'OpenAI 101 Series on using OpenAI ChatGPT, DALL·E, and other OpenAI endpoints',
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 software developer, I want to understand OpenAI endpoints and capabilities, so that I can use ChatGPT effectively',
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
@@ -36,5 +36,5 @@
36
36
  ],
37
37
  "@semantic-release/github"
38
38
  ],
39
- "repositoryUrl": "git@github.com:klueless-io/openai_101.git"
39
+ "repositoryUrl": "git@github.com:appydave/openai_101.git"
40
40
  }
data/.rubocop.yml CHANGED
@@ -7,7 +7,7 @@ require:
7
7
  - rubocop-rake
8
8
 
9
9
  AllCops:
10
- TargetRubyVersion: 3.2
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/FilePath:
99
- Exclude:
100
- - "**/spec/**/*"
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.2.2
1
+ ruby 3.3.3
data/CHANGELOG.md CHANGED
@@ -1,5 +1,5 @@
1
1
  ## [Unreleased]
2
2
 
3
- ## [0.1.0] - 2024-02-09
3
+ ## [0.1.0] - 2024-06-19
4
4
 
5
5
  - Initial release
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Openai 101
2
2
 
3
- > OpenAI 101 Series on using OpenAI ChatGPT, DALL·E, and other OpenAI endpoints
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 software developer, I want to understand OpenAI endpoints and capabilities, so that I can use ChatGPT effectively
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/klueless-io/openai_101
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.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Openai101
4
- VERSION = '0.0.2'
4
+ VERSION = '0.1.0'
5
5
  end
data/lib/openai_101.rb CHANGED
@@ -5,8 +5,6 @@ require 'openai_101/version'
5
5
  module Openai101
6
6
  # raise Openai101::Error, 'Sample message'
7
7
  Error = Class.new(StandardError)
8
-
9
- # Your code goes here...
10
8
  end
11
9
 
12
10
  if ENV.fetch('KLUE_DEBUG', 'false').downcase == 'true'