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

Assistants API #57

Merged
merged 7 commits into from
Dec 29, 2023
Merged

Assistants API #57

merged 7 commits into from
Dec 29, 2023

Conversation

cpfiffer
Copy link
Collaborator

@cpfiffer cpfiffer commented Nov 30, 2023

This is a WIP draft to add API coverage for the OpenAI Assistant tooling.

This implements the bulk of the beta API, with the exception of the File endpoints. This requires a bigger effort than this PR.

We may wish to stash all this stuff in a submodule like OpenAI.Assistants, especially since there are so many API endpoints associated with the assistants.

I'm also addressing some formatting stuff inside the repo, since many of the function declarations are very wide and do not generally fit in most conventional editing panes. This is however not the primary focus of this PR and may not be complete. I'd prefer if we merged in #56 so that the formatting issues were addressed more thoroughly.

API implementations

Assistants API to implement

  • Create assistant
  • Retrieve assistant
  • Modify assistant
  • Delete assistant
  • List assistants

Threads

  • Create thread
  • Retrieve thread
  • Modify thread
  • Delete thread

Messages

  • Create message
  • Retrieve message
  • Delete message
  • Modify message
  • List messages

Runs

  • Create run
  • Retrieve run
  • Modify run
  • List runs
  • cancel run

Will not be implemented in this PR:

  • create thread and run
  • Retrieve run step
  • List run steps
  • Submit tool outputs to run
  • Create assistant file
  • Retrieve assistant file
  • Delete assistant file
  • List assistant files
  • Retrieve message file
  • List message files

@cpfiffer cpfiffer mentioned this pull request Nov 30, 2023
@cpfiffer
Copy link
Collaborator Author

As per #50, I'm going to leave anything that has to do with the Files API out of the PR.

@cpfiffer cpfiffer marked this pull request as ready for review December 1, 2023 23:24
@cpfiffer
Copy link
Collaborator Author

cpfiffer commented Dec 1, 2023

Okie dokie! We're now ready for a review. I added tests and such but we should be good to go here. All tests pass locally using my personal API key.

@cpfiffer
Copy link
Collaborator Author

@rory-linehan could we merge this one or do a review? The tests fail due to not having and API key, but they pass locally on my machine.

@roryl23 roryl23 merged commit eb55b4e into JuliaML:main Dec 29, 2023
@roryl23
Copy link
Collaborator

roryl23 commented Dec 29, 2023

Looks good to me! Sorry, I've been traveling for the past couple weeks. And I'm ill now, of course..

@roryl23
Copy link
Collaborator

roryl23 commented Dec 29, 2023

Tests seem to fail on my side, and after merge.. I'm familiarizing myself with the Assistants API to figure out what's going on. Do they still pass for you locally? The failure I'm seeing is:

{
  "error": {
    "message": "Cannot update run with status 'in_progress'.",
    "type": "invalid_request_error",
    "param": null,
    "code": null
  }
}

on line 183, in create_assistant(). Though I do see the assistant is in fact created on the OpenAI side.

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