Code Monkey home page Code Monkey logo

Comments (18)

AntonOsika avatar AntonOsika commented on June 16, 2024 6

Support for Chat models (GPT 3.5/4) now works on my fork!

Feel free to use it here:

https://github.com/AntonOsika/CLI-Co-Pilot

The required changes in the code were small but non-obvious.

from codex-cli.

kerbymart avatar kerbymart commented on June 16, 2024 3

It seems code-davinci-002 and code-cushman-001 have been removed, but yes, the Codex CLI does not seem to support gpt-3.5-turbo at the same time.

from codex-cli.

loftusa avatar loftusa commented on June 16, 2024 2

I'm still getting "cannot find openAI model" errors, even with gpt-3.5-turbo as my model.
EDIT: That was with using the fork mentioned above: https://github.com/Lukas-LLS/Codex-CLI

Using the main branch, I get Codex CLI error: Invalid request - This is a chat model and not supported in the v1/completions endpoint. Did you mean to use v1/chat/completions? when I use gpt-3.5-turbo as my model, and gpt-4 straight up doesn't work.

I use this tool every day, so a bugfix would be great!

from codex-cli.

Lukas-LLS avatar Lukas-LLS commented on June 16, 2024 1

I can think of two possible causes for your problem:

  1. You might have an old version of the fork, because at the time my fork was posted into this issue I was still working on it and at that point it was not operational (If you update to a newer version make sure to use a cleanup script and setup thereafter, because there a some changes that will break an older setup)
  2. It could also be possible that you still have the setup from https://github.com/microsoft/Codex-CLI. If that is the case, you should run the cleanup script from the original project before running the setup from the fork. (I don't know how you migrated to the fork, so this is just a possibility)

And for gpt-4 make sure you have the model available to you, for that to be the case you must have either signed up on the waitlist: https://openai.com/waitlist/gpt-4-api (from the waitlist you gain access to the gpt-4 model) or you must have the ChatGPT Plus subscription: https://chat.openai.com/chat in the lower left corner the button Upgrade to Plus (from ChatGPT Plus you gain access to the gpt-4-32k model)

If your issue still persists after these steps, let me know and I will look further into it

from codex-cli.

loftusa avatar loftusa commented on June 16, 2024 1

@Lukas-LLS still having problems. Both gpt-4-32k and gpt-3.5-turbo return Cannot find OpenAI model errors. I have Chat GPT Plus.

Screenshot 2023-03-31 at 6 54 09 AM

The only difference I can think of between what I did and the installation instructions is that I copied my openAI secret key from where I originally stored it - since I think the picture where you can copy it directly from the OpenAI website is outdated (I cannot do that)

from codex-cli.

Lukas-LLS avatar Lukas-LLS commented on June 16, 2024 1

I already have submitted a PR #131

from codex-cli.

hablutzel1 avatar hablutzel1 commented on June 16, 2024 1

do you know how to fix it?

Try updating the openai package with pip.

from codex-cli.

hablutzel1 avatar hablutzel1 commented on June 16, 2024

This fork is intended to fix this, https://github.com/Lukas-LLS/Codex-CLI. A PR from @Lukas-LLS would be great.

from codex-cli.

cyrrill avatar cyrrill commented on June 16, 2024

Note:

As of March 2023, the Codex models are now deprecated. Please check out our newer Chat models which are able to do many coding tasks with similar capability

as per:

image

https://platform.openai.com/docs/guides/code

Use gpt-3.5-turbo for best results! Once you get API access to GPT-4, move up to that, no point in using Codex models, like davinci anymore.

from codex-cli.

hablutzel1 avatar hablutzel1 commented on June 16, 2024

@Lukas-LLS , could you consider submitting a PR to the official project?

from codex-cli.

Lukas-LLS avatar Lukas-LLS commented on June 16, 2024

@loftusa I have found and fixed your problem. It was limited to the zsh_setup.sh script, therefore I did not find it immediately. The problem was that in some cases the variable name of modelId was modelID. That was due to me carelessly refactoring the name without checking it afterwards. The problem should be fixed with the latest commit.

I also found out that the zsh_setup.sh does only work for macOS and not for zsh under normal Linux due to different implementations of the sed command under these two different operating systems.

from codex-cli.

hablutzel1 avatar hablutzel1 commented on June 16, 2024

@AntonOsika , for Bash, your fork is inserting an space at the beginning of the generated commands preventing them to be stored in the history. Can I change this behavior by configuration?

from codex-cli.

AntonOsika avatar AntonOsika commented on June 16, 2024

from codex-cli.

Fatfish588 avatar Fatfish588 commented on June 16, 2024

@loftusa I have found and fixed your problem. It was limited to the zsh_setup.sh script, therefore I did not find it immediately. The problem was that in some cases the variable name of modelId was modelID. That was due to me carelessly refactoring the name without checking it afterwards. The problem should be fixed with the latest commit.

I also found out that the zsh_setup.sh does only work for macOS and not for zsh under normal Linux due to different implementations of the sed command under these two different operating systems.

I found that after pressing ctrl+G, the generated commands will only be displayed after the issue I raised.like this:

what is running on port 3306sudo lsof -i :3306

image

from codex-cli.

Lukas-LLS avatar Lukas-LLS commented on June 16, 2024

That was the original behavior of Codex-CLI. I found that `# Your comment here` && had worked for this behavior, although I did not like that way of writing a prompt. I have now changed that way the command is insert in bash and zsh to match Powershell allowing to write normal comments then hitting Ctrl+G and then the command appearing in a new line below the comment. For this to take effect you must update your local repository.

from codex-cli.

Fatfish588 avatar Fatfish588 commented on June 16, 2024

That was the original behavior of Codex-CLI. I found that `# Your comment here` && had worked for this behavior, although I did not like that way of writing a prompt. I have now changed that way the command is insert in bash and zsh to match Powershell allowing to write normal comments then hitting Ctrl+G and then the command appearing in a new line below the comment. For this to take effect you must update your local repository.

Now it can run great. Thank you.🙏

from codex-cli.

pripishchik avatar pripishchik commented on June 16, 2024

Support for Chat models (GPT 3.5/4) now works on my fork!

Feel free to use it here:

https://github.com/AntonOsika/CLI-Co-Pilot

The required changes in the code were small but non-obvious.

getting this error in zsh:

Codex CLI error: Unexpected exception - module 'openai' has no attribute 'ChatCompletion'

do you know how to fix it?

from codex-cli.

pripishchik avatar pripishchik commented on June 16, 2024

@hablutzel1 looks like it works, thanks!!!

from codex-cli.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.