Class: Assistant::BlogLinkToolBuilder
- Inherits:
-
Object
- Object
- Assistant::BlogLinkToolBuilder
- Defined in:
- app/services/assistant/blog_link_tool_builder.rb
Overview
Builds RubyLLM::Tool subclasses for internal blog/site link analysis.
Provides get_page_link_profile and find_link_opportunities tools.
Usage (via ChatToolBuilder):
tools = Assistant::BlogLinkToolBuilder.tools
Class Method Summary collapse
-
.tools ⇒ Array<RubyLLM::Tool>
Link profile and link opportunity tools.
Class Method Details
.tools ⇒ Array<RubyLLM::Tool>
Returns link profile and link opportunity tools.
13 14 15 16 17 18 |
# File 'app/services/assistant/blog_link_tool_builder.rb', line 13 def tools [ build_get_page_link_profile_tool, build_find_link_opportunities_tool ] end |