170 lines
4.0 KiB
TypeScript
170 lines
4.0 KiB
TypeScript
import { useSWR } from 'sswr';
|
|
import { Readable, Writable, derived, get, writable } from 'svelte/store';
|
|
import { callCompletionApi } from '../shared/call-completion-api';
|
|
import type {
|
|
JSONValue,
|
|
RequestOptions,
|
|
UseCompletionOptions,
|
|
} from '../shared/types';
|
|
|
|
export type { UseCompletionOptions };
|
|
|
|
export type UseCompletionHelpers = {
|
|
/** The current completion result */
|
|
completion: Readable<string>;
|
|
/** The error object of the API request */
|
|
error: Readable<undefined | Error>;
|
|
/**
|
|
* Send a new prompt to the API endpoint and update the completion state.
|
|
*/
|
|
complete: (
|
|
prompt: string,
|
|
options?: RequestOptions,
|
|
) => Promise<string | null | undefined>;
|
|
/**
|
|
* Abort the current API request but keep the generated tokens.
|
|
*/
|
|
stop: () => void;
|
|
/**
|
|
* Update the `completion` state locally.
|
|
*/
|
|
setCompletion: (completion: string) => void;
|
|
/** The current value of the input */
|
|
input: Writable<string>;
|
|
/**
|
|
* Form submission handler to automatically reset input and append a user message
|
|
* @example
|
|
* ```jsx
|
|
* <form onSubmit={handleSubmit}>
|
|
* <input onChange={handleInputChange} value={input} />
|
|
* </form>
|
|
* ```
|
|
*/
|
|
handleSubmit: (e: any) => void;
|
|
/** Whether the API request is in progress */
|
|
isLoading: Readable<boolean | undefined>;
|
|
|
|
/** Additional data added on the server via StreamData */
|
|
data: Readable<JSONValue[] | undefined>;
|
|
};
|
|
|
|
let uniqueId = 0;
|
|
|
|
const store: Record<string, any> = {};
|
|
|
|
export function useCompletion({
|
|
api = '/api/completion',
|
|
id,
|
|
initialCompletion = '',
|
|
initialInput = '',
|
|
credentials,
|
|
headers,
|
|
body,
|
|
onResponse,
|
|
onFinish,
|
|
onError,
|
|
}: UseCompletionOptions = {}): UseCompletionHelpers {
|
|
// Generate an unique id for the completion if not provided.
|
|
const completionId = id || `completion-${uniqueId++}`;
|
|
|
|
const key = `${api}|${completionId}`;
|
|
const {
|
|
data,
|
|
mutate: originalMutate,
|
|
isLoading: isSWRLoading,
|
|
} = useSWR<string>(key, {
|
|
fetcher: () => store[key] || initialCompletion,
|
|
fallbackData: initialCompletion,
|
|
});
|
|
|
|
const streamData = writable<JSONValue[] | undefined>(undefined);
|
|
|
|
const loading = writable<boolean>(false);
|
|
|
|
// Force the `data` to be `initialCompletion` if it's `undefined`.
|
|
data.set(initialCompletion);
|
|
|
|
const mutate = (data: string) => {
|
|
store[key] = data;
|
|
return originalMutate(data);
|
|
};
|
|
|
|
// Because of the `fallbackData` option, the `data` will never be `undefined`.
|
|
const completion = data as Writable<string>;
|
|
|
|
const error = writable<undefined | Error>(undefined);
|
|
|
|
let abortController: AbortController | null = null;
|
|
|
|
const complete: UseCompletionHelpers['complete'] = async (
|
|
prompt: string,
|
|
options?: RequestOptions,
|
|
) => {
|
|
const existingData = get(streamData);
|
|
return callCompletionApi({
|
|
api,
|
|
prompt,
|
|
credentials,
|
|
headers: {
|
|
...headers,
|
|
...options?.headers,
|
|
},
|
|
body: {
|
|
...body,
|
|
...options?.body,
|
|
},
|
|
setCompletion: mutate,
|
|
setLoading: loadingState => loading.set(loadingState),
|
|
setError: err => error.set(err),
|
|
setAbortController: controller => {
|
|
abortController = controller;
|
|
},
|
|
onResponse,
|
|
onFinish,
|
|
onError,
|
|
onData(data) {
|
|
streamData.set([...(existingData || []), ...(data || [])]);
|
|
},
|
|
});
|
|
};
|
|
|
|
const stop = () => {
|
|
if (abortController) {
|
|
abortController.abort();
|
|
abortController = null;
|
|
}
|
|
};
|
|
|
|
const setCompletion = (completion: string) => {
|
|
mutate(completion);
|
|
};
|
|
|
|
const input = writable(initialInput);
|
|
|
|
const handleSubmit = (e: any) => {
|
|
e.preventDefault();
|
|
const inputValue = get(input);
|
|
if (!inputValue) return;
|
|
return complete(inputValue);
|
|
};
|
|
|
|
const isLoading = derived(
|
|
[isSWRLoading, loading],
|
|
([$isSWRLoading, $loading]) => {
|
|
return $isSWRLoading || $loading;
|
|
},
|
|
);
|
|
|
|
return {
|
|
completion,
|
|
complete,
|
|
error,
|
|
stop,
|
|
setCompletion,
|
|
input,
|
|
handleSubmit,
|
|
isLoading,
|
|
data: streamData,
|
|
};
|
|
}
|