Synthesis example: a ReplyToolMixin UIWorker adds a start_review tool that fans out to clarity/tone peers via start_user_job_group, translates each reviewer response into an add_note command in on_job_response, handles a client note_click event via @on_ui_event, and keeps history across turns.
7 lines
104 B
JavaScript
7 lines
104 B
JavaScript
import { defineConfig } from "vite";
|
|
|
|
export default defineConfig({
|
|
server: {
|
|
port: 5173,
|
|
},
|
|
}); |