Module: LLM::Gemini::Format
- Included in:
- LLM::Gemini
- Defined in:
- lib/llm/providers/gemini/format.rb
Instance Method Summary collapse
Instance Method Details
#format(messages) ⇒ Array<Hash>
9 10 11 |
# File 'lib/llm/providers/gemini/format.rb', line 9 def format() .map { {role: _1.role, parts: [format_content(_1.content)]} } end |