Bundle: Start accepting --url/ABOUT_OUTLINE_URL option#34
Conversation
... to specify alternative input outline file. Along the lines, also relax testing by not using the production outline file.
WalkthroughThe changes introduce and document a new Changes
Sequence Diagram(s)sequenceDiagram
participant User
participant CLI
participant LllmsTxtBuilder
participant CrateDbKnowledgeOutline
User->>CLI: cratedb-about bundle --url <outline> --format llm --outdir <dir>
CLI->>LllmsTxtBuilder: Instantiate with outline_url, outdir, etc.
LllmsTxtBuilder->>CrateDbKnowledgeOutline: load(outline_url)
CrateDbKnowledgeOutline-->>LllmsTxtBuilder: Returns outline data
LllmsTxtBuilder->>LllmsTxtBuilder: Process and bundle files
LllmsTxtBuilder-->>User: Bundle created in output directory
Possibly related PRs
Suggested reviewers
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (7)
🧰 Additional context used🧬 Code Graph Analysis (1)src/cratedb_about/cli.py (1)
🔇 Additional comments (18)
✨ Finishing Touches
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
The
--urloption was missing with thebundlesubcommand yet. Now that it exists, it can be used to relax testing by not using the production outline file, no longer causing sporadic timeout errors.