Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 42
0.00% covered (danger)
0.00%
0 / 9
CRAP
0.00% covered (danger)
0.00%
0 / 1
AIPromptExamples
0.00% covered (danger)
0.00%
0 / 42
0.00% covered (danger)
0.00%
0 / 9
90
0.00% covered (danger)
0.00%
0 / 1
 getFlyEngageCuriousExamples
0.00% covered (danger)
0.00%
0 / 5
0.00% covered (danger)
0.00%
0 / 1
2
 getFlyEngageThoughtfulExamples
0.00% covered (danger)
0.00%
0 / 5
0.00% covered (danger)
0.00%
0 / 1
2
 getFlyEngageOptimisticExamples
0.00% covered (danger)
0.00%
0 / 5
0.00% covered (danger)
0.00%
0 / 1
2
 getFlyEngageCustomExamples
0.00% covered (danger)
0.00%
0 / 5
0.00% covered (danger)
0.00%
0 / 1
2
 getFlyPostHiringExamples
0.00% covered (danger)
0.00%
0 / 4
0.00% covered (danger)
0.00%
0 / 1
2
 getFlyPostCelebrateSomethingExamples
0.00% covered (danger)
0.00%
0 / 4
0.00% covered (danger)
0.00%
0 / 1
2
 getFlyPostCompanyNewsExamples
0.00% covered (danger)
0.00%
0 / 5
0.00% covered (danger)
0.00%
0 / 1
2
 getFlyPostThoughtLeadershipExamples
0.00% covered (danger)
0.00%
0 / 5
0.00% covered (danger)
0.00%
0 / 1
2
 getFlyPostCustomExamples
0.00% covered (danger)
0.00%
0 / 4
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2
3namespace App\Services\FlyMsgAI;
4
5class AIPromptExamples
6{
7    public static function getFlyEngageCuriousExamples($context, $promptInitial, $formattedPromptExamples): string
8    {
9        return "
10        $promptInitial
11
12        $formattedPromptExamples
13
14        input: You are creative, very experienced in
15        social media, able to engage audiences and an expert in LinkedIn content
16        creation. 
17
18        Your mission is to write a curious and engaging reply to this LinkedIn post. Output should be crisp and clear. Write in a way that can go viral on LinkedIn. Include a question to solicit engagement with the author where appropriate and applicable.
19        input: $context
20        output:";
21    }
22
23    public static function getFlyEngageThoughtfulExamples($context, $promptInitial, $formattedPromptExamples): string
24    {
25        return "
26        $promptInitial
27
28        $formattedPromptExamples
29
30        input: You are creative, very experienced in social media, able to engage audiences and an expert in LinkedIn content creation. 
31
32        Your mission is to write a thoughtful, inspiring, and reflective response to this LinkedIn post. Output should be crisp and clear. Write in a way that
33        can go viral on LinkedIn.
34
35        input: $context
36        output:";
37    }
38
39    public static function getFlyEngageOptimisticExamples($context, $promptInitial, $formattedPromptExamples): string
40    {
41        return "
42        $promptInitial
43
44        $formattedPromptExamples
45
46        input: You are creative, very experienced in social media, able to engage audiences and an expert in LinkedIn content creation. 
47
48        Your mission is to write a positive, optimistic, and encouraging response to this LinkedIn post. Output should be crisp and clear. Write in a way that
49        can go viral on LinkedIn.
50
51        input: $context
52        output:";
53    }
54
55    public static function getFlyEngageCustomExamples($custom_prompt, $context, $promptInitial, $formattedPromptExamples): string
56    {
57        return "$promptInitial
58
59        $formattedPromptExamples
60
61        input: You are creative, very experienced in social media, able to engage audiences and an expert in LinkedIn content creation.
62        Your mission is to $custom_prompt on 
63        input: $context
64        output:";
65    }
66
67    public static function getFlyPostHiringExamples($prompt, $promptInitial, $formattedPromptExamples): string
68    {
69        return "$promptInitial
70
71        $formattedPromptExamples
72
73        input: You are creative, extremely experienced in HR recruiting and an expert in social media writing.
74        input: Your mission is to $prompt
75        output:";
76    }
77
78    public static function getFlyPostCelebrateSomethingExamples($prompt, $promptInitial, $formattedPromptExamples): string
79    {
80        return "$promptInitial
81
82        $formattedPromptExamples
83
84        input: You are creative, extremely experienced in social media, a seasoned growth marketer, able to engage audiences and an expert in LinkedIn social media content creation. 
85        input: Your mission is to $prompt
86        output:";
87    }
88
89    public static function getFlyPostCompanyNewsExamples($prompt, $promptInitial, $formattedPromptExamples): string
90    {
91        return "
92        $promptInitial
93
94        $formattedPromptExamples
95
96        input: You are creative, extremely experienced in social media, a seasoned growth marketer, able to engage audiences and an expert in LinkedIn social media content creation. 
97        input: Your mission is to $prompt
98        output:";
99    }
100
101    public static function getFlyPostThoughtLeadershipExamples($prompt, $promptInitial, $formattedPromptExamples): string
102    {
103        return "
104        $promptInitial
105
106        $formattedPromptExamples 
107        input: Your mission is to $prompt
108        output:";
109    }
110
111    public static function getFlyPostCustomExamples($prompt, $promptInitial, $formattedPromptExamples): string
112    {
113        return "$promptInitial
114
115        $formattedPromptExamples
116
117        input: You are creative, very experienced in social media, able to engage audiences and an expert in LinkedIn content creation. 
118        input: Your mission is to $prompt
119        output:";
120    }
121}