Class: Genie::Session
- Inherits:
-
Object
- Object
- Genie::Session
- Extended by:
- Forwardable
- Defined in:
- lib/genie/session.rb
Constant Summary collapse
- QUIT_COMMANDS =
Supported commands to exit the session
["q", "quit", "done", "exit", "bye"].freeze
Instance Attribute Summary collapse
-
#config ⇒ Object
readonly
Returns the value of attribute config.
Instance Method Summary collapse
-
#ask(question) ⇒ Object
Send a question to the LLM and output both prompt and response.
- #begin(q) ⇒ Object
- #complete ⇒ Object
-
#initialize(config:) ⇒ Session
constructor
Initializes the session with a pre-loaded configuration config: instance of Genie::SessionConfig.
- #prompt ⇒ Object
Constructor Details
#initialize(config:) ⇒ Session
Initializes the session with a pre-loaded configuration config: instance of Genie::SessionConfig
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
# File 'lib/genie/session.rb', line 15 def initialize(config:) @config = config Genie.output genie_lamp, color: :yellow Genie.output "Starting a new session with:\n base_path: #{base_path}\n model: #{model}\n", color: :green # Initialize the LLM chat with the specified model @chat = RubyLLM.chat(model: model) # Use Genie-specific instructions from config @chat.with_instructions instructions # Provide file tools for the assistant, scoped to base_path @chat.with_tools( Genie::AppendToFile.new(base_path: base_path), Genie::AskForHelp.new, # Genie::InsertIntoFile.new(base_path: base_path), Genie::ListFiles.new(base_path: base_path), Genie::ReadFile.new(base_path: base_path), Genie::RenameFile.new(base_path: base_path), # Genie::ReplaceLinesInFile.new(base_path: base_path), Genie::RunTests.new(base_path: base_path, cmd: run_tests_cmd), Genie::TakeANote.new, Genie::WriteFile.new(base_path: base_path), ) end |
Instance Attribute Details
#config ⇒ Object (readonly)
Returns the value of attribute config.
5 6 7 |
# File 'lib/genie/session.rb', line 5 def config @config end |
Instance Method Details
#ask(question) ⇒ Object
Send a question to the LLM and output both prompt and response
60 61 62 63 64 65 66 67 68 |
# File 'lib/genie/session.rb', line 60 def ask(question) Genie.output "#{question}\n", color: :white response = @chat.ask(question) Genie.output "\n#{response.content}", color: :white response end |
#begin(q) ⇒ Object
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
# File 'lib/genie/session.rb', line 43 def begin(q) q = q.to_s loop do complete if QUIT_COMMANDS.include? q.downcase begin ask q unless q.strip == "" rescue RubyLLM::RateLimitError => e Genie.output "Rate limit exceeded: #{e.}", color: :red end q = prompt end end |
#complete ⇒ Object
75 76 77 78 79 80 81 82 |
# File 'lib/genie/session.rb', line 75 def complete Genie.output "\nExiting...", color: :white total_conversation_tokens = @chat..sum { |msg| (msg.input_tokens || 0) + (msg.output_tokens || 0) } Genie.output "Total Conversation Tokens: #{total_conversation_tokens}", color: :white exit end |
#prompt ⇒ Object
70 71 72 73 |
# File 'lib/genie/session.rb', line 70 def prompt print "\n > " STDIN.gets.chomp end |