-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor some functions and adjust rates
- Loading branch information
Jason
committed
Feb 25, 2024
1 parent
3a62c08
commit 688222e
Showing
8 changed files
with
65 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
About {{agent}}: | ||
{{agent.getSelfContext()}} | ||
|
||
{{agent}}'s goal is {{agent.goal}}. | ||
And {{agent}}'s recent memories: | ||
{{relevant_memories_string}} | ||
Rate your progress towards your goal with an integer from 1-5, 1 being bad, 5 being good. | ||
|
||
|
||
Write in the first person from the point of view of {{agent}}. | ||
Write in natural short response style. | ||
{% if random_prime %} | ||
Think about the word "{{random_prime}}". | ||
{% endif %} | ||
Base your evaluation on your past memories only. | ||
Format your response like: | ||
Explanation: I didnt get my groceries today | ||
Score: 1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,3 +11,4 @@ SQLAlchemy==2.0.23 | |
vllm==0.2.6 | ||
python-Levenshtein | ||
jsonlines | ||
nltk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
REDIS_URL=redis://localhost:6379 | ||
NEXT_PUBLIC_API_URL=https://replicantlife.com/api/v1/replays |