-
Add the dependency to your
shard.yml
:dependencies: openai: github: sferik/openai-crystal
-
Run
shards install
require "openai"
openai_client = OpenAI::Client.new(api_key: ENV.fetch("OPENAI_API_KEY"), default_engine: "ada")
# List Engines
openai_client.engines
# Retrieve Engine
openai_client.engine("babbage")
# Search
openai_client.search(documents: ["White House", "hospital", "school"], query: "the president")
# Create Completion
openai_client.completions(prompt: "Once upon a time", max_tokens: 5)
# Stream Completion
openai_client.completions(prompt: "Once upon a time", max_tokens: 100) do |completion|
puts completion.choices.first.text
end
- Fork it (https://github.com/sferik/openai-crystal/fork)
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
- Erik Berlin - creator and maintainer