stitionai / devika

Devika is an Agentic AI Software Engineer that can understand high-level human instructions, break them down into steps, research relevant information, and write code to achieve the given objective. Devika aims to be a competitive open-source alternative to Devin by Cognition AI.
MIT License
18.5k stars 2.4k forks source link

[FEATURE] #637

Open tarungupta83 opened 3 months ago

tarungupta83 commented 3 months ago

Is your feature request related to a problem? Please describe.

A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] How to use GPT-4o-Mini, tried adding the model in backend but it does not appear on UI

Describe the solution you'd like

A clear and concise description of what you want to happen.

Describe alternatives you've considered

A clear and concise description of any alternative solutions or features you've considered.

Additional context

Add any other context or screenshots about the feature request here.

tarungupta83 commented 3 months ago

Solved the issue by adding Model in llm.py

        "OPENAI": [
            ("GPT-4o", "gpt-4o"),
            ("GPT-4o-Mini", "gpt-4o-mini"),
            ("GPT-4 Turbo", "gpt-4-turbo"),
            ("GPT-3.5 Turbo", "gpt-3.5-turbo-0125"),
        ],

image