File size: 301 Bytes
3589760
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
// src/agent/assistant.js
import { api } from "../apiClient";

export async function askAgent(message, history = []) {
  const res = await api.post(
    "/chat-stream",
    { message, history },
    { responseType: "text" } // backend returns text/plain
  );

  return res.data; // whole reply text
}