Class: Llm::Functions::ReadFile

Inherits:
Base
  • Object
show all
Defined in:
lib/llm/functions/read_file.rb

Instance Method Summary collapse

Methods inherited from Base

#stop_llm_call?

Instance Method Details

#definitionObject



8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# File 'lib/llm/functions/read_file.rb', line 8

def definition
  return @definition unless @definition.nil?

  @definition = {
    name: self.function_name,
    description: I18n.t("ghostest.functions.#{self.function_name}.description"),
    parameters: {
      type: :object,
      properties: {
        filepath: {
          type: :string,
          description: I18n.t("ghostest.functions.#{self.function_name}.parameters.filepath"),
        },
      },
      required: [:filepath],
    },
  }
  @definition
end

#execute_and_generate_message(args) ⇒ Object



28
29
30
31
32
33
34
35
36
37
38
39
40
# File 'lib/llm/functions/read_file.rb', line 28

def execute_and_generate_message(args)
  if File.exist?(args[:filepath])
    {
      filepath: args[:filepath],
      file_contents: File.read(args[:filepath]),
    }
  else
    {
      filepath: args[:filepath],
      error: "File not found.",
    }
  end
end

#function_nameObject



4
5
6
# File 'lib/llm/functions/read_file.rb', line 4

def function_name
  :read_file
end