@@ -31,6 +31,36 @@ Ai__Ollama__ChatModel=llama2
|
||||
Ai__Ollama__EmbeddingModel=embedding-model
|
||||
Ai__Ollama__TimeoutSeconds=30
|
||||
|
||||
# Database (shared) - maps to Database:Host etc. used by apps
|
||||
Database__Host=sqlserver
|
||||
Database__Port=1433
|
||||
Database__Name=MyAiDb
|
||||
Database__User=sa
|
||||
Database__Password=
|
||||
Database__TrustServerCertificate=true
|
||||
|
||||
# Internal API protection
|
||||
InternalApi__ApiKey=
|
||||
InternalApi__RequireApiKey=false
|
||||
|
||||
# RAG settings
|
||||
Rag__MaxFileSizeMb=8
|
||||
Rag__ChunkSize=900
|
||||
Rag__ChunkOverlap=150
|
||||
Rag__MaxTextChars=60000
|
||||
Rag__DefaultTopK=20
|
||||
Rag__MaxTopK=50
|
||||
Rag__ClassifyWithAi=false
|
||||
|
||||
# Matcher settings (cv-matcher)
|
||||
Matcher__TopK=10
|
||||
Matcher__DeepScoreTopN=5
|
||||
Matcher__MaxJobTextChars=60000
|
||||
|
||||
# RagApi used by cv-matcher
|
||||
RagApi__BaseUrl=http://rag-api:8082
|
||||
RagApi__InternalApiKey=
|
||||
|
||||
# Captcha
|
||||
Captcha__Provider=Recaptcha
|
||||
Captcha__SecretKey=
|
||||
|
||||
@@ -10,9 +10,15 @@
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<None Include=".env" />
|
||||
<None Include=".env.production" />
|
||||
<None Include=".env.staging" />
|
||||
<None Include=".env.template" />
|
||||
<None Include=".env.production">
|
||||
<DependentUpon>.env</DependentUpon>
|
||||
</None>
|
||||
<None Include=".env.staging">
|
||||
<DependentUpon>.env</DependentUpon>
|
||||
</None>
|
||||
<None Include=".env.template">
|
||||
<DependentUpon>.env</DependentUpon>
|
||||
</None>
|
||||
<None Include="docker-compose.yml" />
|
||||
<None Include="docker-compose.staging.yml">
|
||||
<DependentUpon>docker-compose.yml</DependentUpon>
|
||||
@@ -20,8 +26,5 @@
|
||||
<None Include="docker-compose.production.yml">
|
||||
<DependentUpon>docker-compose.yml</DependentUpon>
|
||||
</None>
|
||||
<None Include="docker-compose.override.yml">
|
||||
<DependentUpon>docker-compose.yml</DependentUpon>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
@@ -1,9 +0,0 @@
|
||||
version: "3.8"
|
||||
|
||||
services:
|
||||
web:
|
||||
# optional: mount source for live edit during development
|
||||
# volumes:
|
||||
# - ./web:/src/web:cached
|
||||
environment:
|
||||
- DOTNET_ENVIRONMENT=Development
|
||||
Reference in New Issue
Block a user