Get up and running with Prisma in minutes.
- Python 3.12+ with Poetry
- Ollama installed with llama3.1:8b model
- Zotero with research library (optional for basic testing)
# Clone the repository
git clone https://github.com/CServinL/prisma.git
cd prisma
# Set up Python environment with Poetry
poetry install
poetry shell
# Test the CLI
poetry run prisma --help# Create a research stream for continuous monitoring
poetry run prisma streams create "Neural Networks 2024" "neural networks transformer attention" --frequency weekly
# List your research streams
poetry run prisma streams list
# Update all streams to find new papers
poetry run prisma streams update --all
# Generate a literature review (classic approach)
poetry run prisma review "machine learning" --output "ml_review.md"# Create focused research streams
prisma streams create "AI Ethics" "artificial intelligence ethics bias fairness" --frequency weekly
prisma streams create "Quantum ML" "quantum machine learning" --frequency monthly
# Monitor and update
prisma streams summary # Overview of all streams
prisma streams update --all # Find new papers in all streams
prisma streams info ai-ethics # Detailed stream information- Executive Summary: Key findings and trends
- Paper Summaries: Structured analysis of each paper
- Comparative Analysis: Trends, gaps, and conflicts
- Recommendations: Future research directions
- Raw Data: CSV/JSON exports for further analysis