Skip to content
This repository was archived by the owner on Aug 4, 2024. It is now read-only.

Commit 80df3b5

Browse files
committed
moar examples
1 parent 56fd87d commit 80df3b5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

examples/agents.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
# But that seems to be a documented bug in Guidance itself: https://github.com/microsoft/guidance/issues/262
33

44
# Ruby version of https://github.com/microsoft/guidance/blob/main/notebooks/chat.ipynb
5-
require "./lib/guidance"
6-
# import re
5+
require "./lib/guidance" unless defined?(Guidance)
6+
77
Guidance.llm = Guidance.llms.OpenAI("gpt-4")
88

99
role_simulator = Guidance::Program.new(%Q(

examples/proverbs.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This shows how to run the proverbs guidance program in the README on https://github.com/microsoft/guidance
2-
# require File.expand_path("../../lib/guidance.rb", __FILE__)
3-
require "./lib/guidance"
2+
require "./lib/guidance" unless defined?(Guidance)
3+
44
# set the default language model used to execute guidance programs
55
Guidance.llm = Guidance.llms.OpenAI("text-davinci-003")
66

0 commit comments

Comments
 (0)