@@ -4,11 +4,11 @@ import "time"
44
55// Container names
66const (
7- PostgresContainer = "bionicgpt-postgres"
8- LiteLLMContainer = "bionicgpt-litellm"
9- LiteLLMDBContainer = "bionicgpt-litellm-db"
10- LangfuseDBContainer = "bionicgpt-langfuse-db"
11- AppContainer = "bionicgpt-app"
7+ PostgresContainer = "bionicgpt-postgres"
8+ LiteLLMContainer = "bionicgpt-litellm"
9+ LiteLLMDBContainer = "bionicgpt-litellm-db"
10+ LangfuseDBContainer = "bionicgpt-langfuse-db"
11+ AppContainer = "bionicgpt-app"
1212)
1313
1414// Service URLs
@@ -50,12 +50,12 @@ const (
5050
5151// SSL Certificate ownership (Alpine PostgreSQL containers)
5252const (
53- CertOwnerUID = 0 // root
54- CertOwnerGID = 70 // postgres group in Alpine
55- CertKeyPerms = 0640
56- CertCrtPerms = 0644
57- StandardUID = 999 // Standard PostgreSQL UID
58- TempKeyPerms = 0600
53+ CertOwnerUID = 0 // root
54+ CertOwnerGID = 70 // postgres group in Alpine
55+ CertKeyPerms = 0640
56+ CertCrtPerms = 0644
57+ StandardUID = 999 // Standard PostgreSQL UID
58+ TempKeyPerms = 0600
5959)
6060
6161// Certificate strategies
@@ -70,14 +70,14 @@ const (
7070// max completion tokens. This prevents API errors when BionicGPT reads this
7171// value and sends it as max_tokens in requests.
7272const (
73- ModelContextSize = 16384
74- EmbeddingsContextSize = 8192
75- ModelTPMLimit = 50000
76- ModelRPMLimit = 1000
77- ModelFallbackTPMLimit = 30000
78- ModelFallbackRPMLimit = 500
79- EmbeddingsTPMLimit = 10000
80- EmbeddingsRPMLimit = 10000
73+ ModelContextSize = 16384
74+ EmbeddingsContextSize = 8192
75+ ModelTPMLimit = 50000
76+ ModelRPMLimit = 1000
77+ ModelFallbackTPMLimit = 30000
78+ ModelFallbackRPMLimit = 500
79+ EmbeddingsTPMLimit = 10000
80+ EmbeddingsRPMLimit = 10000
8181)
8282
8383// RLS table counts
0 commit comments