feat: add language support for wiki generation#75
Open
maxfrank76 wants to merge 2 commits intorepowise-dev:mainfrom
Open
feat: add language support for wiki generation#75maxfrank76 wants to merge 2 commits intorepowise-dev:mainfrom
maxfrank76 wants to merge 2 commits intorepowise-dev:mainfrom
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add language support for wiki generation
This PR adds the ability to generate wiki documentation in a user‑specified language (e.g., Russian, Spanish, etc.) instead of always English. The language is read from
.repowise/config.yaml(language: ru) and passed through the generation pipeline.Changes
models.py: addedlanguage: str = "en"field toGenerationConfig.init_cmd.py: loadslanguagefrom config and passes it toGenerationConfig; also displays selected language in console.orchestrator.py: addedgeneration_configparameter torun_generationto preserve the original config (especiallylanguage) when creating a newGenerationConfigwith adjustedmax_concurrency.page_generator.py:languageand stores it asself._language._call_providerinjects a language instruction into the system prompt ifself._language != "en". The instruction tells the LLM to generate documentation in the specified language while keeping code, file paths, and symbol names unchanged.How to test
.repowise/config.yamlwith:Notes
Default language is en.
Only descriptive text is translated; code blocks, file paths, and symbol names remain original.
Works with any provider (Anthropic, OpenAI, Gemini, Ollama) as long as the model supports multilingual output.