Skip to content
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

Open
wants to merge 1 commit into
base: alpha-next
Choose a base branch
from

Conversation

stainless-em
Copy link

runFunctions was already removed, this cleans up the last usage of the deprecated function calling types in the tool runner

@stainless-em stainless-em requested a review from a team as a code owner March 27, 2025 21:11
Copy link
Collaborator

@RobertCraigie RobertCraigie left a 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);
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

question: why change this?

Copy link
Author

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';
Copy link
Collaborator

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;
Copy link
Collaborator

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?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants