We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 773ee7e commit e375991Copy full SHA for e375991
1 file changed
health_check.py
@@ -132,7 +132,7 @@ def section(title):
132
bool(groq_key),
133
f"Key starts with: {groq_key[:8]}..." if groq_key else "NOT SET — mock mode will be used")
134
135
-provider = os.getenv("TRANSCRIPT_AI_PROVIDER", "auto")
+provider = os.getenv("TRANSCRIPT_AI_PROVIDER", "ollama")
136
check("TRANSCRIPT_AI_PROVIDER",
137
True,
138
f"Current value: '{provider}'")
@@ -244,7 +244,7 @@ def section(title):
244
245
# Restore original provider
246
if groq_key:
247
- os.environ["TRANSCRIPT_AI_PROVIDER"] = "auto"
+ os.environ["TRANSCRIPT_AI_PROVIDER"] = "ollama"
248
249
except Exception as e:
250
check("Quick analysis test", False, str(e)[:120])
0 commit comments