Conversation
- Replaced basic setup wizard with multi-step flow: 1. AI Backend Selection (OpenAI, Groq, Ollama) 2. Model Configuration (Whisper, LLM, Diarization) 3. Campaign Creation & Connectivity Test - Added visual stepper component via `src/ui/theme.py` CSS. - Integrated with `ConfigManager` and `save_api_keys` for persistence. - Maintained compatibility with `app.py` wiring.
|
👋 Jules, reporting for duty! I'm here to lend a hand with this pull request. When you start a review, I'll add a 👀 emoji to each comment to let you know I've read it. I'll focus on feedback directed at me and will do my best to stay out of conversations between you and other bots or reviewers to keep the noise down. I'll push a commit with your requested changes shortly after. Please note there might be a delay between these steps, but rest assured I'm on the job! For more direct control, you can switch me to Reactive Mode. When this mode is on, I will only act on comments where you specifically mention me with For security, I will only act on instructions from the user who triggered this task. New to Jules? Learn more at jules.google/docs. |
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| if groq: keys_to_save["GROQ_API_KEY"] = groq | ||
| if hf: keys_to_save["HUGGING_FACE_API_KEY"] = hf | ||
|
|
||
| if keys_to_save: | ||
| save_api_keys(**{k.lower(): v for k, v in keys_to_save.items()}) |
There was a problem hiding this comment.
Saving OpenAI key blocks wizard progress
Providing an OpenAI API key in Step 1 causes _save_step1_and_advance to call save_api_keys with an openai_api_key argument, but save_api_keys only accepts Groq and Hugging Face parameters (src/ui/api_key_manager.py:25-29). The call raises a TypeError, so the handler returns an error status instead of advancing to Step 2, effectively preventing the default “OpenAI (Recommended)” path from working whenever a key is entered.
Useful? React with 👍 / 👎.
Implemented Phase 2 of the Quick Setup Wizard (UX-11).
ConfigManager.app.pyintegration.PR created automatically by Jules for task 6072121347826826537 started by @Gambitnl