阅读"在对话里找到答案": - 16 道题全部重写,干扰项真实出现在对话里,靠说话人归属或否定句才能作答 - 选项按题目内容确定性打乱,答案不再固定排第一;听力环节同样处理 - 去掉超纲干扰项、重复题干,收紧自由作答匹配(过去单个字母也能判对) AI 情境对话: - 提示词区分"AI 这一句要做什么"与"学习者随后要完成什么",并下发已教词句清单 - JSON 只强制 reply,translation/feedback 可选;不再索要用不上的 slots/evidence - AI 不可用时页面明确提示当前回复来自内置示范脚本 - 删掉按 stage 下标猜中文翻译的兜底,避免译文与英文对不上 - 整课对话改用逐轮必需表达校验,替换"关键词沾边就算过";修正自由场景正则误伤 - 总结的"完成任务"按实际通过的轮次生成;模型点评只在结束页呈现一次 - 自由场景支持草稿续练(独立存储槽);修正回答轮数文案与永不解锁的场景标注 同时提交此前工作区中累积的改动:SenseVoice 本地识别、查词/句型解析卡、 复习与测评页调整等,并补充对话校验、选项分布和句子解析的测试。 Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
67 lines
2.3 KiB
Dart
67 lines
2.3 KiB
Dart
// ignore_for_file: avoid_print, unnecessary_overrides
|
|
import 'dart:io';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:kouyu_english/core/ai_service.dart';
|
|
import 'package:kouyu_english/core/models.dart';
|
|
|
|
class RealHttpOverrides extends HttpOverrides {
|
|
@override
|
|
HttpClient createHttpClient(SecurityContext? context) {
|
|
return super.createHttpClient(context);
|
|
}
|
|
}
|
|
|
|
void main() {
|
|
TestWidgetsFlutterBinding.ensureInitialized();
|
|
HttpOverrides.global = RealHttpOverrides();
|
|
const testKey = '***REMOVED***';
|
|
AiService.instance.setFallbackApiKey(testKey);
|
|
|
|
test('Live test: /v1/responses endpoint testConnection', () async {
|
|
try {
|
|
final resResponses = await AiService.instance.testConnection(
|
|
provider: AiProviderType.compatible,
|
|
endpoint: 'https://codex.slcydia.fun/v1/responses',
|
|
model: 'gemini-3.7-flash-high',
|
|
explicitApiKey: testKey,
|
|
);
|
|
print('Responses API result: ok=${resResponses.ok}, msg=${resResponses.message}');
|
|
} catch (e) {
|
|
print('Network test skipped: $e');
|
|
}
|
|
});
|
|
|
|
test('Live test: /v1 (Chat Completions) endpoint testConnection', () async {
|
|
try {
|
|
final resChat = await AiService.instance.testConnection(
|
|
provider: AiProviderType.compatible,
|
|
endpoint: 'https://codex.slcydia.fun/v1',
|
|
model: 'gemini-3.7-flash-high',
|
|
explicitApiKey: testKey,
|
|
);
|
|
print('Chat Completions API result: ok=${resChat.ok}, msg=${resChat.message}');
|
|
} catch (e) {
|
|
print('Network test skipped: $e');
|
|
}
|
|
});
|
|
|
|
test('Live test: /v1/responses dialogueReply', timeout: const Timeout(Duration(seconds: 60)), () async {
|
|
|
|
try {
|
|
final reply = await AiService.instance.dialogueReply(
|
|
provider: AiProviderType.compatible,
|
|
endpoint: 'https://codex.slcydia.fun/v1/responses',
|
|
model: 'gemini-3.7-flash-high',
|
|
history: [
|
|
{'role': 'user', 'content': 'Hello, my name is Alex.'}
|
|
],
|
|
aiGoal: 'Greet the learner and ask their name',
|
|
learnerTask: 'say their own name',
|
|
);
|
|
print('Dialogue reply from /v1/responses: reply="${reply?.reply}", slots=${reply?.slots}, suggestsComplete=${reply?.suggestsComplete}');
|
|
} catch (e) {
|
|
print('Network test skipped: $e');
|
|
}
|
|
});
|
|
}
|