Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
9022f93
Feature: Add Ollama embedding service and model selection functionali…
tazmon95 Sep 4, 2025
cecbeea
feat: Enhance Ollama UX with single-host convenience features and fix…
tazmon95 Sep 8, 2025
d122d1f
Consolidate database migration structure for Ollama integration
tazmon95 Sep 8, 2025
c74940f
Fix LLM instance status UX - show 'Checking...' instead of 'Offline' …
tazmon95 Sep 8, 2025
fdc6bb6
Add retry logic for LLM connection tests
tazmon95 Sep 8, 2025
5182edd
Fix embedding service fallback to Ollama when OpenAI API key is missing
tazmon95 Sep 8, 2025
3cc6ec0
Fix excessive API calls on URL input by removing auto-testing
tazmon95 Sep 8, 2025
b12cd6e
Fix Issue #XXX: Remove auto-testing on every keystroke in Ollama conf…
tazmon95 Sep 8, 2025
0e0e3b9
Fix auto-testing in RAGSettings component - disable useEffect URL tes…
tazmon95 Sep 8, 2025
fad85f4
Fix PL/pgSQL loop variable declaration error in validate_migration.sql
tazmon95 Sep 9, 2025
061fc5d
Remove hardcoded models and URLs from Ollama integration
tazmon95 Sep 9, 2025
3bc1643
Fix model selection boxes for non-Ollama providers
tazmon95 Sep 12, 2025
e8b2c22
Refactor useToast imports in Ollama components
sean-esk Sep 12, 2025
ed3f223
Fix provider switching and database migration issues
tazmon95 Sep 13, 2025
449fc15
Fix OpenAI to Ollama fallback and update tests
tazmon95 Sep 13, 2025
3c4d32b
Fix test_get_llm_client_missing_openai_key to properly test Ollama fa…
tazmon95 Sep 13, 2025
56e9f8e
Fix API provider status indicators for encrypted credentials
tazmon95 Sep 14, 2025
2c4817a
Improve cache invalidation for LLM provider service
tazmon95 Sep 14, 2025
bfc4d95
Fix linting issues - remove whitespace from blank lines
tazmon95 Sep 14, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,6 @@ VITE_SHOW_DEVTOOLS=false
# proxy where you want to expose the frontend on a single external domain.
PROD=false

# Embedding Configuration
# Dimensions for embedding vectors (1536 for OpenAI text-embedding-3-small)
EMBEDDING_DIMENSIONS=1536

# NOTE: All other configuration has been moved to database management!
# Run the credentials_setup.sql file in your Supabase SQL editor to set up the credentials table.
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ PRPs/completed/
.zed
tmp/
temp/
UAT/
Binary file added archon-ui-main/public/img/Grok.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added archon-ui-main/public/img/Ollama.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added archon-ui-main/public/img/OpenAI.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added archon-ui-main/public/img/OpenRouter.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions archon-ui-main/public/img/anthropic-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions archon-ui-main/public/img/google-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading