- 
                Notifications
    You must be signed in to change notification settings 
- Fork 51
feat: implement configuration gui #304
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
89aed59
              9277916
              d3acba4
              2b41f41
              c754255
              62e0ffc
              58153d2
              b53b0d6
              1f7f133
              8d16c76
              63b6e09
              File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | 
|---|---|---|
| @@ -1,7 +1,7 @@ | ||
| [vendor] | ||
| simple_model = "openai" # openai, aws, ollama | ||
| embeddings_model = "ollama" | ||
| simple_model = "openai" | ||
| complex_model = "openai" | ||
| embeddings_model = "openai" | ||
|         
                  maciejmajek marked this conversation as resolved.
              Show resolved
            Hide resolved | ||
|  | ||
| [aws] | ||
| simple_model = "anthropic.claude-3-haiku-20240307-v1:0" | ||
|  | @@ -25,7 +25,21 @@ project = "rai" | |
|  | ||
| [tracing.langfuse] | ||
| use_langfuse = false | ||
| host = "https://cloud.langfuse.com" | ||
| host = "http://localhost:3000" | ||
|  | ||
| [tracing.langsmith] | ||
| use_langsmith = false | ||
|  | ||
| [asr] | ||
| recording_device_name = "default" | ||
| vendor = "whisper" | ||
| language = "en" | ||
| silence_grace_period = 0.3 | ||
| use_wake_word = false | ||
| vad_threshold = 0.3 | ||
| wake_word_model = "" | ||
| wake_word_threshold = 0.5 | ||
| 
      Comment on lines
    
      +33
     to 
      +41
    
   There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 💡 Codebase verification 🛠️ Refactor suggestion Parameter validation for ASR configuration is missing 
 🔗 Analysis chainAdd parameter validation for ASR configuration The ASR configuration includes several parameters that should be validated: 
 🏁 Scripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Description: Check for parameter validation in ASR configuration loading
# Search for ASR config validation
echo "Checking for ASR config validation..."
ast-grep --pattern 'def $_(config: $_) {
  $$$
  asr$_
  $$$
}'
# Search for device name validation
echo "Checking for recording device validation..."
rg -l "recording_device.*validation|check.*recording.*device"
Length of output: 346         
                  maciejmajek marked this conversation as resolved.
              Show resolved
            Hide resolved | ||
|  | ||
| [tts] | ||
| vendor = "elevenlabs" | ||
| keep_speaker_busy = false | ||
| 
      Comment on lines
    
      +43
     to 
      +45
    
   There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 💡 Codebase verification Missing API Key Configuration for ElevenLabs in TTS The TTS configuration lacks API key setup for ElevenLabs integration: 
 🔗 Analysis chainConsider additional TTS configuration parameters The TTS configuration appears minimal and might be missing important parameters: 
 🏁 Scripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Description: Check for TTS vendor integration and configuration handling
# Search for ElevenLabs integration
echo "Checking for ElevenLabs integration..."
rg -l "elevenlabs.*api|elevenlabs.*key"
# Search for TTS configuration handling
echo "Checking for TTS configuration handling..."
ast-grep --pattern 'class $TTS {
  $$$
  def $_($_, config: $_) {
    $$$
  }
  $$$
}'
Length of output: 346 | ||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Uh oh!
There was an error while loading. Please reload this page.