UNPKG
chat-stream-ai
Version:
latest (1.0.0)
1.0.0
AI SDK for handling streaming response from conversational AI
chat-stream-ai
/
lib
/
use-chat-stream.d.ts
7 lines
(6 loc)
•
152 B
TypeScript
View Raw
1
2
3
4
5
6
7
declare
const
useChatStream
:
(
url
:
string
) =>
{
data
:
string
[];
error
:
string
;
startStreaming
:
() =>
void
; };
export
default
useChatStream;