openai_101 0.0.2 → 0.2.0

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8ebf546c03971c1d5a9da6dd30e35911e1220205244ea8b73ed24ec92b2b21e5
4
- data.tar.gz: aaf3db3e9919146dbbb786105696845035cd4eacfc7b7c75186449df3d1f9f7b
3
+ metadata.gz: bf7d69814faceeb10dc8529eab3e644ea1c8cc7814fa9c760b88d332d9f56a02
4
+ data.tar.gz: ceb5b93d49096126df3875dd541bc3d40081bdca051770ceb132ac9995f3a4a6
5
5
  SHA512:
6
- metadata.gz: 1544585db91c6e0b45944a2e236d5e10310560b9c4950756c07f7804659fa911e7aa980c4417c8d025e243dd0ed6e29bc66dc406974ffeb81fd41db9353e4bc2
7
- data.tar.gz: 26e54c68e02682ec7eff41ea45e49eec9323f6c89a8de45245f8be9262ade51acbdbfc39facd1ccb16d85c4cccb1bdaef4fdfac9608c7a7038ab0e84062ad147
6
+ metadata.gz: 8505915867b4bb48f980c0a2a5c343da0d0c07aac17e97c2e29e9d6a96c00e252dad64d43015c9c54ba40c347d2db863fc0d5f3b35cb534793ea320f0f5b6f88
7
+ data.tar.gz: c38ca4102babd07dbce6765180734e0e4aff4a58b1fd80e8a41e58570ca55633cab109491755135e7a993a98aa8e5ef65a8b833f8a1a98f7229de066db6969c8
@@ -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,12 @@
1
+ # [0.1.0](https://github.com/appydave/openai_101/compare/v0.0.1...v0.1.0) (2024-06-19)
2
+
3
+
4
+ ### Features
5
+
6
+ * moved repo to appydave organization ([3b01048](https://github.com/appydave/openai_101/commit/3b01048e2e0f381a6ab5bc0a7cfb4cedd83da88f))
7
+
1
8
  ## [Unreleased]
2
9
 
3
- ## [0.1.0] - 2024-02-09
10
+ ## [0.1.0] - 2024-06-19
4
11
 
5
12
  - 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.2.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'