-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
v5 chore: fully remove deprecated function call types from the tool runner #1431
base: alpha-next
Are you sure you want to change the base?
v5 chore: fully remove deprecated function call types from the tool runner #1431
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
might want to also rename the props / events, will see what kevin says.
we should also update the migration guide once ^ is resolved
@@ -134,7 +134,7 @@ describe('instantiate azure client', () => { | |||
|
|||
const spy = jest.spyOn(client, 'request'); | |||
|
|||
await expect(client.get('/foo', { signal: controller.signal })).rejects.toThrowError(APIUserAbortError); | |||
await expect(client.get('/foo', { signal: controller.signal })).rejects.toThrow(APIUserAbortError); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
question: why change this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Was also flagged as deprecated and azure is custom code. We should update codegen with this change too.
import OpenAI from '../index'; | ||
import { isAutoParsableTool, parseChatCompletion } from '../lib/parser'; | ||
import { RequestOptions } from '../internal/request-options'; | ||
import type { RequestOptions } from '../internal/request-options'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
aside: can / should we update eslint to automatically add these type annotations?
readonly eventFunctionCallResults: string[] = []; | ||
|
||
finalContent: string | null = null; | ||
finalMessage: ChatCompletionMessageParam | undefined; | ||
finalChatCompletion: OpenAI.Chat.ChatCompletion | undefined; | ||
finalFunctionCall: OpenAI.Chat.ChatCompletionMessage.FunctionCall | undefined; | ||
finalFunctionCall: OpenAI.Chat.ChatCompletionMessageToolCall.Function | undefined; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hmm maybe we should also rename these to tool calls?
cc @kwhinnery-openai do you have any thoughts here?
runFunctions was already removed, this cleans up the last usage of the deprecated function calling types in the tool runner