9.1 KiB
9.1 KiB
| 1 | name,value |
|---|---|
| 2 | , |
| 3 | # ============================================================================ |
| 4 | # SERVER CONFIGURATION |
| 5 | # ============================================================================ |
| 6 | server_host,0.0.0.0 |
| 7 | server_port,8088 |
| 8 | sites_root,/tmp |
| 9 | , |
| 10 | # ============================================================================ |
| 11 | # LLM CONFIGURATION |
| 12 | # ============================================================================ |
| 13 | llm-key,none |
| 14 | llm-url,http://localhost:8081 |
| 15 | llm-model,../../../../data/llm/DeepSeek-R1-Distill-Qwen-1.5B-Q3_K_M.gguf |
| 16 | , |
| 17 | llm-cache,false |
| 18 | llm-cache-ttl,3600 |
| 19 | llm-cache-semantic,true |
| 20 | llm-cache-threshold,0.95 |
| 21 | , |
| 22 | episodic-memory-threshold,4 |
| 23 | , |
| 24 | mcp-server,false |
| 25 | , |
| 26 | # ============================================================================ |
| 27 | # EMBEDDING CONFIGURATION |
| 28 | # ============================================================================ |
| 29 | embedding-url,http://localhost:8082 |
| 30 | embedding-model,../../../../data/llm/bge-small-en-v1.5-f32.gguf |
| 31 | , |
| 32 | # ============================================================================ |
| 33 | # LLM SERVER CONFIGURATION |
| 34 | # ============================================================================ |
| 35 | llm-server,true |
| 36 | llm-server-path,botserver-stack/bin/llm/build/bin |
| 37 | llm-server-host,0.0.0.0 |
| 38 | llm-server-port,8081 |
| 39 | llm-server-gpu-layers,0 |
| 40 | llm-server-n-moe,0 |
| 41 | llm-server-ctx-size,4096 |
| 42 | llm-server-n-predict,1024 |
| 43 | llm-server-parallel,6 |
| 44 | llm-server-cont-batching,true |
| 45 | llm-server-mlock,false |
| 46 | llm-server-no-mmap,false |
| 47 | , |
| 48 | # ============================================================================ |
| 49 | # EMAIL CONFIGURATION |
| 50 | # ============================================================================ |
| 51 | email-from,from@domain.com |
| 52 | email-server,mail.domain.com |
| 53 | email-port,587 |
| 54 | email-user,user@domain.com |
| 55 | email-pass, |
| 56 | , |
| 57 | # ============================================================================ |
| 58 | # DATABASE CONFIGURATION |
| 59 | # ============================================================================ |
| 60 | custom-server,localhost |
| 61 | custom-port,5432 |
| 62 | custom-database,mycustomdb |
| 63 | custom-username, |
| 64 | custom-password, |
| 65 | , |
| 66 | # ============================================================================ |
| 67 | # WEBSITE CRAWLER CONFIGURATION |
| 68 | # ============================================================================ |
| 69 | website-expires,1d |
| 70 | website-max-depth,3 |
| 71 | website-max-pages,100 |
| 72 | , |
| 73 | # ============================================================================ |
| 74 | # IMAGE GENERATOR CONFIGURATION |
| 75 | # ============================================================================ |
| 76 | image-generator-model,../../../../data/diffusion/sd_turbo_f16.gguf |
| 77 | image-generator-steps,4 |
| 78 | image-generator-width,512 |
| 79 | image-generator-height,512 |
| 80 | image-generator-gpu-layers,20 |
| 81 | image-generator-batch-size,1 |
| 82 | , |
| 83 | # ============================================================================ |
| 84 | # VIDEO GENERATOR CONFIGURATION |
| 85 | # ============================================================================ |
| 86 | video-generator-model,../../../../data/diffusion/zeroscope_v2_576w |
| 87 | video-generator-frames,24 |
| 88 | video-generator-fps,8 |
| 89 | video-generator-width,320 |
| 90 | video-generator-height,576 |
| 91 | video-generator-gpu-layers,15 |
| 92 | video-generator-batch-size,1 |
| 93 | , |
| 94 | # ============================================================================ |
| 95 | # BOTMODELS CONFIGURATION |
| 96 | # ============================================================================ |
| 97 | botmodels-enabled,true |
| 98 | botmodels-host,0.0.0.0 |
| 99 | botmodels-port,8085 |
| 100 | , |
| 101 | default-generator,all |
| 102 | , |
| 103 | # ============================================================================ |
| 104 | # OAUTH AUTHENTICATION CONFIGURATION |
| 105 | # ============================================================================ |
| 106 | # Enable social login providers by setting the corresponding -enabled flag |
| 107 | # |
| 108 | # Each provider requires: |
| 109 | # - oauth-{provider}-client-id: The Client ID from the provider |
| 110 | # - oauth-{provider}-client-secret: The Client Secret from the provider |
| 111 | # - oauth-{provider}-redirect-uri: (Optional) Custom callback URL |
| 112 | # |
| 113 | # Default redirect URI format: http://your-domain/auth/oauth/{provider}/callback |
| 114 | # ============================================================================ |
| 115 | , |
| 116 | # ---------------------------------------------------------------------------- |
| 117 | # GOOGLE OAUTH |
| 118 | # ---------------------------------------------------------------------------- |
| 119 | # Setup Instructions: |
| 120 | # 1. Go to https://console.cloud.google.com/apis/credentials |
| 121 | # 2. Create a new project or select existing |
| 122 | # 5. Add authorized redirect URI: http://your-domain/auth/oauth/google/callback |
| 123 | # 6. Copy the Client ID and Client Secret below |
| 124 | # |
| 125 | # Documentation: https://developers.google.com/identity/protocols/oauth2/web-server |
| 126 | # ---------------------------------------------------------------------------- |
| 127 | oauth-google-enabled,false |
| 128 | oauth-google-client-id, |
| 129 | oauth-google-client-secret, |
| 130 | oauth-google-redirect-uri, |
| 131 | , |
| 132 | # ---------------------------------------------------------------------------- |
| 133 | # MICROSOFT OAUTH (Azure AD) |
| 134 | # ---------------------------------------------------------------------------- |
| 135 | # Setup Instructions: |
| 136 | # 1. Go to https://portal.azure.com/#blade/Microsoft_AAD_RegisteredApps/ApplicationsListBlade |
| 137 | # 4. Add redirect URI: http://your-domain/auth/oauth/microsoft/callback (Web platform) |
| 138 | # 6. Copy the Application (client) ID and secret value below |
| 139 | # |
| 140 | # Documentation: https://learn.microsoft.com/en-us/azure/active-directory/develop/quickstart-register-app |
| 141 | # ---------------------------------------------------------------------------- |
| 142 | oauth-microsoft-enabled,false |
| 143 | oauth-microsoft-client-id, |
| 144 | oauth-microsoft-client-secret, |
| 145 | oauth-microsoft-redirect-uri, |
| 146 | , |
| 147 | # ---------------------------------------------------------------------------- |
| 148 | # DISCORD OAUTH |
| 149 | # ---------------------------------------------------------------------------- |
| 150 | # Setup Instructions: |
| 151 | # 1. Go to https://discord.com/developers/applications |
| 152 | # 4. Add redirect URL: http://your-domain/auth/oauth/discord/callback |
| 153 | # 5. Copy the Client ID and Client Secret below |
| 154 | # |
| 155 | # Documentation: https://discord.com/developers/docs/topics/oauth2 |
| 156 | # ---------------------------------------------------------------------------- |
| 157 | oauth-discord-enabled,false |
| 158 | oauth-discord-client-id, |
| 159 | oauth-discord-client-secret, |
| 160 | oauth-discord-redirect-uri, |
| 161 | , |
| 162 | # ---------------------------------------------------------------------------- |
| 163 | # FACEBOOK OAUTH |
| 164 | # ---------------------------------------------------------------------------- |
| 165 | # Setup Instructions: |
| 166 | # 1. Go to https://developers.facebook.com/apps/ |
| 167 | # 4. Go to Facebook Login > Settings |
| 168 | # 5. Add Valid OAuth Redirect URI: http://your-domain/auth/oauth/facebook/callback |
| 169 | # 6. Go to Settings > Basic to get App ID and App Secret |
| 170 | # |
| 171 | # Documentation: https://developers.facebook.com/docs/facebook-login/guides/advanced/manual-flow |
| 172 | # ---------------------------------------------------------------------------- |
| 173 | oauth-facebook-enabled,false |
| 174 | oauth-facebook-client-id, |
| 175 | oauth-facebook-client-secret, |
| 176 | oauth-facebook-redirect-uri, |
| 177 | , |
| 178 | # ---------------------------------------------------------------------------- |
| 179 | # TWITTER (X) OAUTH 2.0 |
| 180 | # ---------------------------------------------------------------------------- |
| 181 | # Setup Instructions: |
| 182 | # 1. Go to https://developer.twitter.com/en/portal/dashboard |
| 183 | # 2. Create a new project and app (or use existing) |
| 184 | # - Enable OAuth 2.0 |
| 185 | # - Type: Web App |
| 186 | # - Callback URL: http://your-domain/auth/oauth/twitter/callback |
| 187 | # 6. Copy Client ID and Client Secret below |
| 188 | # |
| 189 | # Note: Twitter requires OAuth 2.0 with PKCE for web apps |
| 190 | # Documentation: https://developer.twitter.com/en/docs/authentication/oauth-2-0 |
| 191 | # ---------------------------------------------------------------------------- |
| 192 | oauth-twitter-enabled,false |
| 193 | oauth-twitter-client-id, |
| 194 | oauth-twitter-client-secret, |
| 195 | oauth-twitter-redirect-uri, |
| 196 | , |
| 197 | # ---------------------------------------------------------------------------- |
| 198 | # REDDIT OAUTH |
| 199 | # ---------------------------------------------------------------------------- |
| 200 | # Setup Instructions: |
| 201 | # 1. Go to https://www.reddit.com/prefs/apps |
| 202 | # 4. Enter redirect URI: http://your-domain/auth/oauth/reddit/callback |
| 203 | # 5. Copy the client ID (under app name) and secret below |
| 204 | # |
| 205 | # Note: Reddit requires Basic Auth for token exchange and custom User-Agent |
| 206 | # Documentation: https://github.com/reddit-archive/reddit/wiki/OAuth2 |
| 207 | # ---------------------------------------------------------------------------- |
| 208 | oauth-reddit-enabled,false |
| 209 | oauth-reddit-client-id, |
| 210 | oauth-reddit-client-secret, |
| 211 | oauth-reddit-redirect-uri, |