mirror of
https://github.com/celesrenata/end-4-flakes.git
synced 2026-06-07 02:59:26 -05:00
11 lines
661 B
QML
11 lines
661 B
QML
import QtQuick
|
|
|
|
QtObject {
|
|
function buildEndpoint(model: AiModel): string { throw new Error("Not implemented") }
|
|
function buildRequestData(model: AiModel, messages, systemPrompt: string, temperature: real, tools: list<var>) { throw new Error("Not implemented") }
|
|
function buildAuthorizationHeader(apiKeyEnvVarName: string): string { throw new Error("Not implemented") }
|
|
function parseResponseLine(line: string, message: AiMessageData) { throw new Error("Not implemented") }
|
|
function onRequestFinished(message: AiMessageData): var { return {} } // Default: no special handling
|
|
function reset() { } // Reset any internal state if needed
|
|
}
|