Skip to content
This repository was archived by the owner on Apr 6, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
4bc0eaa
ADMIN
dastanmedetbekov Apr 3, 2026
c2d695f
changed sys prompt for gemini
ReBuss666 Apr 3, 2026
e25e377
Added translations for html
ReBuss666 Apr 4, 2026
b2fef44
Added translations for html
ReBuss666 Apr 4, 2026
41d0577
Admin really maybe works
dastanmedetbekov Apr 4, 2026
9b7f1f7
Dastan
dastanmedetbekov Apr 4, 2026
a833f50
Dastan 2
dastanmedetbekov Apr 4, 2026
44cf428
Testing langs
dastanmedetbekov Apr 4, 2026
ae01448
Add init tests
dastanmedetbekov Apr 4, 2026
4bf0199
AdminPanel Problem
dastanmedetbekov Apr 4, 2026
f27d00b
Dastan
dastanmedetbekov Apr 4, 2026
672e42e
TEst
dastanmedetbekov Apr 4, 2026
7608660
Burger
dastanmedetbekov Apr 4, 2026
6e10689
Add burger and solved bugs?
dastanmedetbekov Apr 4, 2026
bfeba68
Added groq
dastanmedetbekov Apr 4, 2026
a577503
Added tests
dastanmedetbekov Apr 4, 2026
c526982
Openai
dastanmedetbekov Apr 4, 2026
8b4f480
openai
dastanmedetbekov Apr 4, 2026
418e046
Openai to Ollama local lllama3 8b switch
ReBuss666 Apr 4, 2026
9ef9066
docker yaml fix for llama
ReBuss666 Apr 4, 2026
0153ee5
docker fix
ReBuss666 Apr 4, 2026
0ad4b1d
1/3
ReBuss666 Apr 4, 2026
36b19d2
2/3
ReBuss666 Apr 4, 2026
1796b82
незначит фиксы
ReBuss666 Apr 4, 2026
3000ac1
openai is working
ReBuss666 Apr 4, 2026
ea923e0
latest stable 11:05
ReBuss666 Apr 4, 2026
7c6e275
11:25
ReBuss666 Apr 4, 2026
9ee13c5
script frontend updated
sherlocked-inn Apr 4, 2026
c9d77de
Merge branch 'biber-core' of https://github.com/DikiePercy/hackathon …
sherlocked-inn Apr 4, 2026
fc46569
ollama
dastanmedetbekov Apr 4, 2026
c88758a
Fixed async def chat func in rag.py
ReBuss666 Apr 4, 2026
e68a2b0
fonts added
sherlocked-inn Apr 4, 2026
b9680b3
ollama help
dastanmedetbekov Apr 4, 2026
2c21ee0
Merge branch 'biber-core' of https://github.com/DikiePercy/hackathon …
dastanmedetbekov Apr 4, 2026
fe98a92
fixed
ReBuss666 Apr 4, 2026
e654853
Merge branch fixes: Ollama integration + critical bug fixes
ReBuss666 Apr 4, 2026
46f9f9b
unneces upd
ReBuss666 Apr 4, 2026
2829547
LANG
dastanmedetbekov Apr 4, 2026
fdad21e
Merge branch 'biber-core' of https://github.com/DikiePercy/hackathon …
dastanmedetbekov Apr 4, 2026
7be6e1e
Added Lang
dastanmedetbekov Apr 4, 2026
74dcbcc
Ollama
dastanmedetbekov Apr 4, 2026
9229d1d
readme
ReBuss666 Apr 4, 2026
185c97d
Ollama fix
dastanmedetbekov Apr 4, 2026
03e3295
readme
ReBuss666 Apr 4, 2026
662eee7
Potential fix for pull request finding 'Unused import'
dastanmedetbekov Apr 4, 2026
97b7219
Potential fix for pull request finding 'Unused variable, import, func…
dastanmedetbekov Apr 4, 2026
601edd5
Potential fix for pull request finding 'Except block handles 'BaseExc…
dastanmedetbekov Apr 4, 2026
1f0be33
Potential fix for pull request finding 'Module imports itself'
dastanmedetbekov Apr 4, 2026
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
12 changes: 8 additions & 4 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,22 @@
SECRET_KEY=replace-with-long-random-secret
GEMINI_API_KEY=your-gemini-api-key

# RAG LLM provider: gemini or claude
RAG_LLM_PROVIDER=gemini
# RAG LLM provider: ollama, gemini, or claude
RAG_LLM_PROVIDER=ollama
RAG_GEMINI_MODEL=gemini-1.5-flash
ANTHROPIC_API_KEY=
RAG_CLAUDE_MODEL=claude-3-5-sonnet-20240620

# RAG embeddings provider: gemini or openai
RAG_EMBEDDING_PROVIDER=gemini
# RAG embeddings provider: ollama, gemini, or openai
RAG_EMBEDDING_PROVIDER=ollama
RAG_GEMINI_EMBEDDING_MODEL=models/embedding-001
Copy link

Copilot AI Apr 4, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

.env.example still documents RAG_GEMINI_EMBEDDING_MODEL=models/embedding-001, but docker-compose and scripts/start.sh now default to models/text-embedding-004 and even include migration logic away from embedding-001. Update .env.example to match the new default to avoid users unintentionally pinning legacy models.

Suggested change
RAG_GEMINI_EMBEDDING_MODEL=models/embedding-001
RAG_GEMINI_EMBEDDING_MODEL=models/text-embedding-004

Copilot uses AI. Check for mistakes.
OPENAI_API_KEY=
RAG_OPENAI_EMBEDDING_MODEL=text-embedding-3-large

# Ollama configuration (local LLM server)
OLLAMA_BASE_URL=http://localhost:11434
RAG_OLLAMA_MODEL=llama3:8b

# Optional
CORS_ALLOW_ORIGINS=http://localhost:8501,http://localhost:3000,http://localhost:5500,http://127.0.0.1:5500,http://localhost:5173
DATABASE_URL=postgresql://hackathon:hackathon@db:5432/hackathon
Expand Down
268 changes: 0 additions & 268 deletions AI_COMPONENTS.md

This file was deleted.

Loading
Loading