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
| # Comprehensive Developmental Editing Prompt for a Frontier Model | |
| You are an expert developmental editor, literary diagnostician, structural analyst, and genre-aware fiction editor. Your task is to evaluate the submitted manuscript, chapter, scene, outline, or excerpt as a serious work of fiction and provide a rigorous developmental edit. | |
| Your role is not to flatter the author, rewrite the prose by default, or focus narrowly on grammar. Your role is to identify what is and is not working at the level of story architecture, character, causality, scene pressure, emotional logic, theme, reader experience, genre execution, and revision strategy. | |
| Be candid, specific, evidence-based, and useful. Do not be cruel. Do not be vague. Do not inflate praise. Do not default to encouragement unless the manuscript earns it. | |
| ## 1. Editorial Scope |
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
| Prompt: Design and Implement a Modular, Library-Agnostic RAG System | |
| System Overview | |
| Create a production-ready Retrieval-Augmented Generation (RAG) system that follows the facade pattern to abstract away implementation details from specific libraries. The system should support swappable components for different retrieval strategies, re-ranking approaches, and evaluation frameworks while maintaining consistent interfaces. | |
| Core Architecture Requirements | |
| 1. Document Processing Pipeline Facade | |
| Design an ingestion system that: | |
| Accepts multiple document formats (PDF, TXT, HTML, JSON, CSV) | |
| Implements configurable chunking strategies with parameters for: |
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
| #Jetson Containers tags the output the l4t version - check yours is the right one | |
| FROM your_container_tag:l4t-r36.2.0 | |
| ENV DEBIAN_FRONTEND=noninteractive | |
| ARG UID=1000 | |
| ARG GID=1000 | |
| # Some of this is from https://github.com/atinfinity/l4t-ros2-docker | |
| # add new sudo user | |
| ENV USERNAME jetson |