blob: 73d8a351e2c301a776949db066fed817f396600d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# frozen_string_literal: true
module Dispatch
module Adapter
ModelInfo = Struct.new(
:id, :name, :max_context_tokens,
:supports_vision, :supports_tool_use, :supports_streaming,
keyword_init: true
)
end
end
|