File tree 2 files changed +2
-2
lines changed
maestro-ai/src/main/java/maestro/ai
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ fun main(args: Array<String>) = DemoApp().main(args)
52
52
class DemoApp : CliktCommand () {
53
53
private val inputFiles: List <Path > by argument(help = " screenshots to use" ).path(mustExist = true ).multiple()
54
54
55
- private val model: String by option(help = " LLM to use" ).default(" gpt-4o-2024-08-06 " )
55
+ private val model: String by option(help = " LLM to use" ).default(" gpt-4o" )
56
56
57
57
private val showOnlyFails: Boolean by option(help = " Show only failed tests" ).flag()
58
58
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ private const val API_URL = "https://api.openai.com/v1/chat/completions"
22
22
private val logger = LoggerFactory .getLogger(OpenAI ::class .java)
23
23
24
24
class OpenAI (
25
- defaultModel : String = " gpt-4o-2024-08-06 " ,
25
+ defaultModel : String = " gpt-4o" ,
26
26
httpClient : HttpClient = defaultHttpClient,
27
27
private val apiKey : String ,
28
28
private val defaultTemperature : Float = 0.2f ,
You can’t perform that action at this time.
0 commit comments