mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-23 15:19:38 +02:00
12 lines
201 B
Ruby
12 lines
201 B
Ruby
|
class FinancialAssistant
|
||
|
include Provided
|
||
|
|
||
|
def initialize(chat)
|
||
|
@chat = chat
|
||
|
end
|
||
|
|
||
|
def query(prompt, model_key: "gpt-4o")
|
||
|
llm_provider = self.class.llm_provider_for(model_key)
|
||
|
end
|
||
|
end
|