mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-16 08:20:14 +01:00
🔗 feat: Convo Settings via URL Query Params & Mention Models (#5184)
* feat: first pass, convo settings from query params * feat: Enhance query parameter handling for assistants and agents endpoints * feat: Update message formatting and localization for AI responses, bring awareness to mention command * docs: Update translations README with detailed instructions for translation script usage and contribution guidelines * chore: update localizations * fix: missing agent_id assignment * feat: add models as initial mention option * feat: update query parameters schema to confine possible query params * fix: normalize custom endpoints * refactor: optimize custom endpoint type check
This commit is contained in:
parent
766657da83
commit
7987e04a2c
19 changed files with 370 additions and 48 deletions
|
|
@ -11,7 +11,20 @@ This script can be expensive, several dollars worth, even with prompt caching. I
|
|||
|
||||
### Instructions:
|
||||
|
||||
1. Main script: Run `bun config/translations/scan.ts` from the root directory.
|
||||
2. Observe translations being generated in all supported languages.
|
||||
- Supported languages are localizations with general translation prompts:
|
||||
- These prompts are directly found in `client/src/localization/prompts`.
|
||||
*All commands are run from the root directory.*
|
||||
|
||||
**Supported languages are localizations with general translation prompts**
|
||||
- These prompts are directly found in `client/src/localization/prompts`.
|
||||
- If your language is missing, you can contribute by adding a new file in `client/src/localization/prompts` with the language code as the file name.
|
||||
|
||||
0. Make sure git history is clean with `git status`.
|
||||
1. Install `hnswlib-node` package temporarily (we don't need to include it in the project):
|
||||
```bash
|
||||
npm install --save-dev hnswlib-node
|
||||
```
|
||||
2. Run `bun install`.
|
||||
3. Main script: Run `bun config/translations/scan.ts`.
|
||||
4. Observe translations being generated in all supported languages and saved in `client/src/localization/languages`.
|
||||
- e.g.: `client/src/localization/languages/Es_missing_keys.json`
|
||||
5. Discard all git changes with `git checkout .`.
|
||||
6. Copy the generated translations to their respective files, e.g.: `client/src/localization/languages/Es.ts`.
|
||||
Loading…
Add table
Add a link
Reference in a new issue