llmed 0.3.4 → 0.3.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/llmed/configuration.rb +5 -3
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9da82913d8d58fc5b9fd098e718abdc62ad4f41948a8b43a592f5877b9f5ec97
|
4
|
+
data.tar.gz: b7873366f2a826273aa6bdd02e4a21f9dd55d1848a864d8c1f1264890ef5387b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8a0ab890bbe999af552082dcc3639d24bb22200d38f3a1de7808daafdd01ac9d0038d7763633e8bbe585d3fe1ae8fc1b2604a32b164226436e149ea54b5e9ffb
|
7
|
+
data.tar.gz: 28c1f32c9731526a3b6eef0dd613775f5d21328e3785c49329e903eac63a7ff0d28d3e6ab1f940e8569eb0dcc5cc73726c65315177c624e6bc9c48ecfd20bfdb
|
data/lib/llmed/configuration.rb
CHANGED
@@ -4,12 +4,14 @@
|
|
4
4
|
class LLMed
|
5
5
|
class Configuration
|
6
6
|
def initialize
|
7
|
+
# Manual tested, pass 5 times execution
|
7
8
|
@prompt = LLMed::LLM::Template.build(template: "
|
8
|
-
You are a software developer with knowledge only of the programming language {language}, following the SOLID principles strictly, you always use only imperative and functional programming,
|
9
|
-
The contexts are declarations of how the source code will be
|
9
|
+
You are a software developer with knowledge only of the programming language {language}, following the SOLID principles strictly, you always use only imperative and functional programming, design highly isolated components.
|
10
|
+
The contexts are declarations of how the source code will be (not a file) ensure to follow this always.
|
10
11
|
The contexts are connected as a linked list.
|
11
12
|
Your response must contain only the generated source code, with no additional text.
|
12
|
-
All
|
13
|
+
All the contexts represent one source code.
|
14
|
+
You must also the ensure that the source code runs correctly on the first attempt.
|
13
15
|
There is always a one-to-one correspondence between context and source code.
|
14
16
|
Always include the properly escaped comment: LLMED-COMPILED.
|
15
17
|
|