오류수정

This commit is contained in:
2026-09-01 14:44:46 +09:00
parent a5a1f1d9e9
commit 01c852fef9
3 changed files with 34 additions and 6 deletions

View File

@@ -32,14 +32,19 @@ public class GeminiChatBackend : MonoBehaviour, IChatBackend
[SerializeField] bool verboseLog = true;
/// <summary>
/// 설정 화면에 보여줄 모델 선택지. 전부 무료 티어에 포함된 Flash 계열이다.
/// 데스크톱 비서는 짧게 여러 번 주고받으므로 Pro 보다 Flash 가 맞다.
/// 설정 화면에 보여줄 모델 선택지. 데스크톱 비서는 짧게 여러 번 주고받으므로
/// Pro 보다 Flash 가 맞다.
///
/// 이 목록은 언제든 낡는다. 실제로 2.5 계열은 신규 사용자에게 제공이 끊겼고
/// 서버가 404 와 함께 "3.6 을 쓰라"고 회신한다. 그래서 막혔을 때는
/// ListUsableModels 가 이 키로 실제 쓸 수 있는 목록을 서버에 물어본다.
/// 목록이 또 낡으면 그쪽 안내를 따르면 된다.
/// </summary>
public static readonly (string Label, string Id)[] SelectableModels =
{
("3.6 Flash", "gemini-3.6-flash"),
("3.7 Flash", "gemini-3.7-flash"),
("3.5 Flash", "gemini-3.5-flash"),
("2.5 Flash", "gemini-2.5-flash"),
};
ChatConfig config;