update pay function

This commit is contained in:
2025-11-22 08:57:37 +08:00
parent 990ca3663e
commit e778742590
210 changed files with 8236 additions and 5345 deletions

22
start-chat.bat Normal file
View File

@@ -0,0 +1,22 @@
@echo off
echo Starting AgentChat Next.js Application...
echo =========================================
cd src\views\AgentChat\neuratalk
REM 检查是否已安装依赖
if not exist node_modules (
echo Installing dependencies...
npm install
)
REM 检查是否有 .env.local
if not exist .env.local (
echo Creating .env.local from .env.example...
copy .env.example .env.local
echo Please edit .env.local with your configuration
pause
)
echo Starting development server on http://localhost:3000
npm run dev