update max_token value in ai tests (#204)

#203

Reviewed-on: https://codeberg.org/ArkHost/HelixNotes/pulls/204
This commit is contained in:
Andreas Lenhardt
2026-07-04 14:31:07 +02:00
committed by ArkHost
parent bd7d66b1e8
commit d01bd4ea01
+2 -2
View File
@@ -405,7 +405,7 @@ async fn test_anthropic(api_key: &str, model: &str) -> Result<String, String> {
let body = json!({
"model": model,
"max_tokens": 10,
"max_tokens": 20,
"messages": [
{
"role": "user",
@@ -440,7 +440,7 @@ async fn test_openai(url: &str, api_key: Option<&str>, model: &str) -> Result<St
let body = json!({
"model": model,
token_key: 10,
token_key: 20,
"messages": [
{
"role": "user",