OpenAI-Pharo icon indicating copy to clipboard operation
OpenAI-Pharo copied to clipboard

A powerful OpenAI playground for pro-users and developers

Results 5 OpenAI-Pharo issues
Sort by recently updated
recently updated
newest added

This pull request factors out a variable for ‘baseURL’ in OpenAISDK so that a [‘llama.cpp’](https://github.com/ggerganov/llama.cpp) server can be used. For example: ```smalltalk ((OpenAIChatSession startWithSDK: ((OpenAISDK createWithAPIKey: 'APIKey123') baseURL: 'http://localhost:8000/v1'; yourself))...

https://github.com/brackendev/OpenAI-Pharo/blob/4af8851d5e154ae476eb2902ccaa07361a2417e6/OpenAI/Class.extension.st#L44 Shouldn't this line in `Class >> definitionAndSourceCode` say `self` instead of `self class`? same question for `Class >> updateCommentWithOpenAICRCWithSDK: anOpenAISDK`... Or am I just thinking about this wrong? In...

Two new methods for the OpenAISDK: createTranscriptFromBinary: byteArray model: aModelString upload audio as binary and create a transcription createAudioWithInput: anInputString model: aModelString voice: aVoiceString create an audio file from a...

An attempt to fix or find a workaround to #3 Keep instance variables for root, parent and permissions in OpenAISDKModel Set them to nil if the response from the API...

It seems that model objects no longer have root, parent and permissions when retrived via the get /models/ request as described here: https://platform.openai.com/docs/api-reference/models/object This breaks #createWithAPIResponse: in OPenAISDKModel