GurgenGulay commited on
Commit
15bf6d8
·
verified ·
1 Parent(s): a2f38b7

Update prompts.txt

Browse files
Files changed (1) hide show
  1. prompts.txt +33 -14
prompts.txt CHANGED
@@ -1,14 +1,33 @@
1
- input_texts = [
2
- "Site Reliability Engineering is a concept born at Google. Ben Trainor's team of seven people started it in 2003 to keep Google.com running reliably.",
3
- "Reliability is critical for any system. Without reliability, even the best features are useless as users can't access them.",
4
- "SRE teams at Google handle large-scale systems with efficiency, working closely with developers to ensure scalability, reliability, and cost-effectiveness.",
5
- "Site Reliability Engineering treats operations as a software engineering problem, making it distinct from traditional operations teams."]
6
- target_texts = [
7
- "SRE was introduced at Google in 2003 by Ben Trainor's team to ensure the reliability of Google.com.",
8
- "Reliability is essential for a system to be usable; without it, features lose value.",
9
- "Google's SRE teams collaborate with developers to manage large-scale systems efficiently and reliably.",
10
- "SRE approaches operations as a software engineering task, revolutionizing traditional operational methods."]
11
-
12
- # Veriyi temizleme
13
- input_texts_cleaned = [clean_text(text) for text in input_texts]
14
- target_texts_cleaned = [clean_text(text) for text in target_texts]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Purpose and Relevance Prompt
2
+ "Describe why Site Reliability Engineering (SRE) is a crucial discipline in today's technology landscape. Explain how it aligns with business objectives such as system uptime, scalability, and user satisfaction. Use analogies or examples to clarify its purpose."
3
+
4
+ Historical Context Prompt
5
+ "Outline the historical development of SRE, beginning with its inception at Google in 2003. Discuss the challenges that prompted its creation and how these challenges shaped its principles. Compare its evolution to similar fields like DevOps and explain their overlaps and differences."
6
+
7
+ Core Practices Prompt
8
+ "List and explain the core practices of SRE, such as Service Level Objectives (SLOs), incident management, and capacity planning. For each practice, provide examples of how it is implemented and its benefits in ensuring system reliability."
9
+
10
+ Team Dynamics Prompt
11
+ "Explain the role of an SRE team within an organization. Discuss how they collaborate with developers and operations teams to maintain balance between rapid feature deployment and system stability. Include an example of how an SRE team intervenes during a critical incident."
12
+
13
+ Philosophical Principles Prompt
14
+ "Discuss the philosophical principles behind SRE, such as 'embracing risk' and 'monitoring as a feature.' Explain how these principles differ from traditional IT practices and why they are necessary in large-scale systems."
15
+
16
+ Scaling Challenges Prompt
17
+ "Describe the unique challenges of scaling systems from thousands to billions of users. Include examples of how Google tackled these challenges using automation, resource optimization, and innovative monitoring practices."
18
+
19
+ Real-World Case Studies Prompt
20
+ "Provide real-world case studies where SRE practices prevented system failures or resolved critical issues. Include specific examples, such as Gmail's reliability strategies, and discuss the lessons learned from these scenarios."
21
+
22
+ SRE Tools and Automation Prompt
23
+ "Describe the tools and automation techniques commonly used in SRE. Discuss how these tools, such as monitoring systems, alerting platforms, and chaos engineering practices, contribute to maintaining system reliability."
24
+
25
+ Educational Techniques Prompt
26
+ "Suggest ways to make SRE concepts more accessible to students. Include tips for using diagrams, real-world analogies, or hands-on labs to explain complex topics like error budgets or capacity planning."
27
+
28
+ Future of SRE Prompt
29
+ "Predict the future of Site Reliability Engineering. Discuss trends such as the integration of AI for predictive monitoring, serverless architecture challenges, and how SRE principles might evolve in a cloud-native environment."
30
+
31
+ Engagement and Retention Prompt
32
+ "Provide suggestions for keeping students engaged during a lecture on SRE. For instance, suggest interactive activities, thought experiments, or group discussions to explore topics like trade-offs between reliability and feature velocity."
33
+