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 |
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
<?php | |
require __DIR__ . '/vendor/autoload.php'; | |
use PhpOffice\PhpSpreadsheet\Chart\Chart; | |
use PhpOffice\PhpSpreadsheet\Chart\DataSeries; | |
use PhpOffice\PhpSpreadsheet\Chart\DataSeriesValues; | |
use PhpOffice\PhpSpreadsheet\Chart\Legend; | |
use PhpOffice\PhpSpreadsheet\Chart\PlotArea; | |
use PhpOffice\PhpSpreadsheet\Chart\Title; | |
use PhpOffice\PhpSpreadsheet\Style\Alignment; | |
use PhpOffice\PhpSpreadsheet\Style\Border; |
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
<?php | |
require __DIR__ . '/vendor/autoload.php'; | |
use PhpOffice\PhpSpreadsheet\Chart\Chart; | |
use PhpOffice\PhpSpreadsheet\Chart\DataSeries; | |
use PhpOffice\PhpSpreadsheet\Chart\DataSeriesValues; | |
use PhpOffice\PhpSpreadsheet\Chart\Legend; | |
use PhpOffice\PhpSpreadsheet\Chart\PlotArea; | |
use PhpOffice\PhpSpreadsheet\Chart\Title; | |
use PhpOffice\PhpSpreadsheet\IOFactory; | |
use PhpOffice\PhpSpreadsheet\Spreadsheet; |