Skip to content

Commit

Permalink
Tuning
Browse files Browse the repository at this point in the history
  • Loading branch information
geir-eilertsen committed Nov 29, 2024
1 parent 493a7be commit 2c93d28
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,6 @@ private String getEnrichedRobotDescription() {
String documentEnrichment = """
\r\nUse the information from the DOCUMENTS section to provide accurate answers but act as if you knew this information innately.
If unsure, simply state that you don't know.
Take a deep breath and relax. Solve your tasks step by step
DOCUMENTS:
{documents}
""";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public String name() {

@Override
public String description() {
return "This function is used for writing notes in your notebook with date and text so that it can be read to you and acted on later";
return "This function is used for writing notes in your notebook. When the time arrives, you will be reminded of the note.";
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public String name() {

@Override
public String description() {
return "This function is used for remembering since you actually do not have built-in memory.";
return "This function is used for remembering. Thoughts will be added to your context.";
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public List<EnvironmentFunction<?,?>> all() {
private List<EnvironmentFunction<?,?>> equipmentFunctions() {
return List.of(
new LookAtWatch(),
// new WriteInNoteBook(noteBook),
new WriteInNoteBook(noteBook),
new Remember(forRemembering)
);
}
Expand Down

0 comments on commit 2c93d28

Please sign in to comment.