Josh Hayes

Results 95 comments of Josh Hayes

I'm getting this error today on the latest API version. I'm guessing Assistants API has been abandoned in favor of Responses API which is working. ```py response = await llm.responses.create(...

@vishnumg your API version is 2023, before Assistants existed

You need azure-ad-hybrid authentication for that. It was just added a few weeks ago.

Add id_token to your params in the decorated login params, then decode it using `jwt`. ChatGPT will show you how to decode/extract the app role.

Add id_token params at the end. ```py @cl.oauth_callback def oauth_callback(provider_id: str, token: str, raw_user_data: dict, default_user: cl.User, id_token: str): ``` Then decode the `id_token`. You don't need any other API...

@weipienlee yes this is basically what I do too

@DmitriyAlergant The purpose of ChatProfiles are to define an entire assistant so thinks like system message, available tools and capabilities, etc. It can change a lot and would be a...

You should think of ChatProfiles like CustomGPTs since you're referring to ChatGPT. You can open a PR for your idea, just make sure there are robust tests as many people...

@asvishnyakov looks like dosubot closed this one