| import type { TextGenerationStreamOutput } from "@huggingface/inference"; |
| import type OpenAI from "openai"; |
| import type { Stream } from "openai/streaming"; |
| import type { ToolCall } from "$lib/types/Tool"; |
|
|
| type ToolCallWithParameters = { |
| toolCall: ToolCall; |
| parameterJsonString: string; |
| }; |
|
|
| function prepareToolCalls(toolCallsWithParameters: ToolCallWithParameters[], tokenId: number) { |
| const toolCalls: ToolCall[] = []; |
|
|
| for (const toolCallWithParameters of toolCallsWithParameters) { |
| |
| |
| const s = toolCallWithParameters.parameterJsonString.replace("\n", ""); |
| const params = JSON.parse(s); |
|
|
| const toolCall = toolCallWithParameters.toolCall; |
| for (const name in params) { |
| toolCall.parameters[name] = params[name]; |
| } |
|
|
| toolCalls.push(toolCall); |
| } |
|
|
| const output = { |
| token: { |
| id: tokenId, |
| text: "", |
| logprob: 0, |
| special: false, |
| toolCalls, |
| }, |
| generated_text: null, |
| details: null, |
| }; |
|
|
| return output; |
| } |
|
|
| |
| |
| |
| export async function* openAIChatToTextGenerationStream( |
| completionStream: Stream<OpenAI.Chat.Completions.ChatCompletionChunk> |
| ) { |
| let generatedText = ""; |
| let tokenId = 0; |
| const toolCalls: ToolCallWithParameters[] = []; |
| for await (const completion of completionStream) { |
| const { choices } = completion; |
| const content = choices[0]?.delta?.content ?? ""; |
| const last = choices[0]?.finish_reason === "stop" || choices[0]?.finish_reason === "length"; |
| if (content) { |
| generatedText = generatedText + content; |
| } |
| const output: TextGenerationStreamOutput = { |
| token: { |
| id: tokenId++, |
| text: content ?? "", |
| logprob: 0, |
| special: last, |
| }, |
| generated_text: last ? generatedText : null, |
| details: null, |
| }; |
| yield output; |
|
|
| const tools = completion.choices[0]?.delta?.tool_calls || []; |
| for (const tool of tools) { |
| if (tool.id) { |
| if (!tool.function?.name) { |
| throw new Error("Tool call without function name"); |
| } |
| const toolCallWithParameters: ToolCallWithParameters = { |
| toolCall: { |
| name: tool.function.name, |
| parameters: {}, |
| }, |
| parameterJsonString: "", |
| }; |
| toolCalls.push(toolCallWithParameters); |
| } |
|
|
| if (toolCalls.length > 0 && tool.function?.arguments) { |
| toolCalls[toolCalls.length - 1].parameterJsonString += tool.function.arguments; |
| } |
| } |
|
|
| if (choices[0]?.finish_reason === "tool_calls") { |
| yield prepareToolCalls(toolCalls, tokenId++); |
| } |
| } |
| } |
|
|