openaiext 0.0.5 → 0.0.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/openaiext.rb +6 -5
  3. metadata +4 -18
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d54f4e06f8eb641359f073d08ec654bb834f70c27646dae0dd79bfef6caa66ca
4
- data.tar.gz: fb966c587445a8423a6de704ebb96e2653d85040ca538180c04e5c7a30d56260
3
+ metadata.gz: 41b05586226d777a40b9a92f3df343a8c4dabbf3308879b3dbf333707148ee06
4
+ data.tar.gz: 932e68b7d141a9082a703a1e848b620a40ea56005d510c843b619b370f54f1ea
5
5
  SHA512:
6
- metadata.gz: c1fc6953645f87d950abe986e5c2011254f7fefd9d75c6fc67642eae4dbff8f0ede7d3f1436efdc64ed6dd6d4bffc562e90d855f5db4a03389f225590503016b
7
- data.tar.gz: 14a4edb85bd8cd2fcba6b44563a0484c9c87f34b6cfdf2eafd5290583327819b5c123f4c26aa5ddb9e88b02b740874b331ef71ab67b66fd757b00fcdeaea340f
6
+ metadata.gz: 2e7e8fb1032594f7eeaa01ecce877932bb661a890ec2388ba97488fdc36795f168a36a30e4fa207294cfbd3bcffb89fd85fe91a35da775a4f6fd035dffc4ea79
7
+ data.tar.gz: 16fb70150afa2ca8d8ec1616f487d247bea38a356ac3cb9e89923a032867b1bde70d565846edcdf0b282919ab607f1f028cedbba249754a40a13dd96e0981015
data/lib/openaiext.rb CHANGED
@@ -19,15 +19,15 @@ module OpenAIExt
19
19
  chat(messages: [{ role: :user, content: message_content }], model:, response_format:, max_tokens:, store:, tools:, auto_run_functions:, function_context:)
20
20
  end
21
21
 
22
- def self.single_prompt(prompt:, model: :gpt_basic, response_format: nil, max_tokens: MAX_TOKENS, store: true, metadata: nil, tools: nil, auto_run_functions: false, function_context: nil, temperature: nil, top_p: nil, frequency_penalty: nil, presence_penalty: nil)
23
- chat(messages: [{ user: prompt }], model:, response_format:, max_tokens:, store:, tools:, auto_run_functions:, function_context:, temperature:, top_p:, frequency_penalty:, presence_penalty:)
22
+ def self.single_prompt(prompt:, model: :gpt_basic, response_format: nil, max_tokens: MAX_TOKENS, store: true, metadata: nil, tools: nil, auto_run_functions: false, function_context: nil, temperature: nil, top_p: nil, frequency_penalty: nil, presence_penalty: nil, prediction: nil)
23
+ chat(messages: [{ user: prompt }], model:, response_format:, max_tokens:, store:, tools:, auto_run_functions:, function_context:, temperature:, top_p:, frequency_penalty:, presence_penalty:, prediction:)
24
24
  end
25
25
 
26
- def self.single_chat(system:, user:, model: :gpt_basic, response_format: nil, max_tokens: MAX_TOKENS, store: true, metadata: nil, tools: nil, auto_run_functions: false, function_context: nil, temperature: nil, top_p: nil, frequency_penalty: nil, presence_penalty: nil)
27
- chat(messages: [{ system: }, { user: }], model:, response_format:, max_tokens:, store:, tools:, auto_run_functions:, function_context:, temperature:, top_p:, frequency_penalty:, presence_penalty:)
26
+ def self.single_chat(system:, user:, model: :gpt_basic, response_format: nil, max_tokens: MAX_TOKENS, store: true, metadata: nil, tools: nil, auto_run_functions: false, function_context: nil, temperature: nil, top_p: nil, frequency_penalty: nil, presence_penalty: nil, prediction: nil)
27
+ chat(messages: [{ system: }, { user: }], model:, response_format:, max_tokens:, store:, tools:, auto_run_functions:, function_context:, temperature:, top_p:, frequency_penalty:, presence_penalty:, prediction:)
28
28
  end
29
29
 
30
- def self.chat(messages:, model: :gpt_basic, response_format: nil, max_tokens: MAX_TOKENS, store: true, metadata: nil, tools: nil, auto_run_functions: false, function_context: nil, temperature: nil, top_p: nil, frequency_penalty: nil, presence_penalty: nil)
30
+ def self.chat(messages:, model: :gpt_basic, response_format: nil, max_tokens: MAX_TOKENS, store: true, metadata: nil, tools: nil, auto_run_functions: false, function_context: nil, temperature: nil, top_p: nil, frequency_penalty: nil, presence_penalty: nil, prediction: nil)
31
31
  model = OpenAIExt::Model.select(model)
32
32
  is_o1_model = model.start_with?('o1')
33
33
 
@@ -47,6 +47,7 @@ module OpenAIExt
47
47
  parameters[:top_p] = top_p if top_p
48
48
  parameters[:frequency_penalty] = frequency_penalty if frequency_penalty
49
49
  parameters[:presence_penalty] = presence_penalty if presence_penalty
50
+ parameters[:prediction] = prediction if prediction
50
51
 
51
52
  begin
52
53
  response = OpenAI::Client.new.chat(parameters:)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: openaiext
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gedean Dias
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-10-13 00:00:00.000000000 Z
11
+ date: 2024-11-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ruby-openai
@@ -16,28 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '7.3'
19
+ version: '7'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '7.3'
27
- - !ruby/object:Gem::Dependency
28
- name: anthropic
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - "~>"
32
- - !ruby/object:Gem::Version
33
- version: '0.3'
34
- type: :runtime
35
- prerelease: false
36
- version_requirements: !ruby/object:Gem::Requirement
37
- requirements:
38
- - - "~>"
39
- - !ruby/object:Gem::Version
40
- version: '0.3'
26
+ version: '7'
41
27
  - !ruby/object:Gem::Dependency
42
28
  name: oj
43
29
  requirement: !ruby/object:Gem::Requirement