haesleinhuepf / bia-bob

BIA Bob is a Jupyter+LLM-based assistant for interacting with image data and for working on Bio-image Analysis tasks.
BSD 3-Clause "New" or "Revised" License
82 stars 6 forks source link

chatGPT Assistants API #95

Open haesleinhuepf opened 8 months ago

haesleinhuepf commented 8 months ago

... could be an alternative to #26 and #88

https://help.openai.com/en/articles/8673914-gpts-vs-assistants

tischi commented 8 months ago

I think we are already using the API, i.e. the right column in their table?! The left column would only be accessible in their www UI?

haesleinhuepf commented 8 months ago

I think we're not using the Assistants API. There is no such code in our code base:

assistant = client.beta.assistants.create(
    name="Math Tutor",
    instructions="You are a personal math tutor. Write and run code to answer math questions.",
    tools=[{"type": "code_interpreter"}],
    model="gpt-4-1106-preview"
)
tischi commented 8 months ago

Oh, I see....