bug修复

This commit is contained in:
wong
2025-09-23 16:21:19 +08:00
parent fbfe0ba1fd
commit a8a9cf76df
2 changed files with 120 additions and 0 deletions

View File

@@ -50,10 +50,13 @@ Route::group('v1/', function () {
//好友配置
Route::group('friend/', function () {
Route::post('set', 'app\chukebao\controller\AiSettingsController@setFriend');
Route::get('get', 'app\chukebao\controller\AiSettingsController@getFriend');
Route::post('setAll', 'app\chukebao\controller\AiSettingsController@setAllFriend');
});
//ai对话
Route::get('getUserTokens', 'app\chukebao\controller\AiSettingsController@getUserTokens');
Route::post('chat', 'app\chukebao\controller\AiChatController@index');
});