You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -45,7 +45,7 @@ each time.
45
45
Simply run the below command in the `server` directory
46
46
47
47
```sh
48
-
npm run start:dev
48
+
npm run start-dev
49
49
```
50
50
51
51
This will start a development server with the `ts-node` and `nodemon` packages. This allows for easy development via cold-reloading. `ts-node` allows for running the typescript code without the need for compliation while `nodemon` monitors for changes to any `.ts` or `.js` files.
Copy file name to clipboardExpand all lines: server/src/prompts.data.ts
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,12 @@
1
1
exportconstquestions=[
2
2
"What is the title of the paper",
3
3
"Which year was the paper published",
4
-
"What are all of the author's names, in the format (J. Doe) in a list like this ['J. Doe', 'R. Austin']",
5
-
"What is the Part No. or name if that is not available",
6
-
'What is the type of part (eg, switching regulator), if there are multiple part numbers listed, list them all and seperate them with a "¶"',
4
+
"What are all of the author's names, in the format (J. Doe) in a comma separated list",
5
+
"What is the part number (or name if that is not available) of the part or parts studied by the paper",
6
+
"What is the type of part or parts (eg, switching regulator) mentioned in the paper",
7
7
"Who is the manufacturer",
8
-
'What is the type of testing location: Respond to this question with "Terrestrial" for a terrestial testing location, or "Flight" for a flight testing location',
9
-
'What type of testing was done: Respond to this question with "TID" for Total Ionizing Dose testing, "SEE" for heavy ion, proton, laser, or neutron testing, or "OTHER" if you are not completely 100% sure',
8
+
"What is the type of testing location: Respond to this question with \"Terrestrial\" for a terrestial testing location, or \"Flight\" for a flight testing location",
9
+
"What type of testing was done: Respond to this question with \"TID\" for Total Ionizing Dose testing, \"SEE\" for heavy ion, proton, laser, or neutron testing, or \"OTHER\" if you are not completely 100% sure"
10
10
];
11
11
12
12
exportconstprompt=`Please answer the following questions, as concisely as possible, and with a heavy emphasis on numbers instead of words.\n
0 commit comments