forked from y13sint/FreeQwenApi
-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathtest_api.bat
More file actions
30 lines (23 loc) · 1.06 KB
/
test_api.bat
File metadata and controls
30 lines (23 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
@echo off
REM Simple batch script to test the API
echo.
echo ╔════════════════════════════════════════╗
echo ║ FreeQwenApi - API Test ║
echo ╚════════════════════════════════════════╝
echo.
echo Запуск Node.js тестов...
echo.
cd /d D:\Users\Dima\Desktop\FreeQwenApi
echo Test 1: Обычный запрос (non-streaming)
node scripts/run_tests.js
echo.
echo Test 2: Streaming тест
node scripts/test_streaming.js
echo.
echo Test 3: Интерактивный чат (введите exit для выхода)
node scripts/interactive_chat.js
echo.
echo ╔════════════════════════════════════════╗
echo ║ All tests complete! ║
echo ╚════════════════════════════════════════╝
pause