llm config fix

This commit is contained in:
Chuck1sn
2025-05-25 18:17:50 +08:00
parent b6f72942ad
commit 402c421370
8 changed files with 42 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
import client from "../../api/client";
const useAiAction = () => {
const actionChat = (message: string) => {
return client.POST("/ai/action/chat", {
body: message,
});
};
return { actionChat };
};