Spaces:
Sleeping
Sleeping
JarvisChan630
commited on
Commit
β’
8a07f02
1
Parent(s):
916a212
fix bugs
Browse files
README.md
CHANGED
@@ -29,7 +29,7 @@ Thanks John Adeojo, who brings this wonderful project to open source community!
|
|
29 |
|
30 |
|
31 |
## TODO
|
32 |
-
[] fix
|
33 |
[] deploy to Huggingface
|
34 |
|
35 |
|
|
|
29 |
|
30 |
|
31 |
## TODO
|
32 |
+
[] fix "/end" meta expert 503 error
|
33 |
[] deploy to Huggingface
|
34 |
|
35 |
|
models/llms.py
CHANGED
@@ -8,7 +8,7 @@ from utils.logging import log_function, setup_logging
|
|
8 |
from tenacity import retry, stop_after_attempt, wait_fixed, retry_if_exception_type
|
9 |
from config.load_configs import load_config
|
10 |
from dotenv import load_dotenv
|
11 |
-
|
12 |
|
13 |
setup_logging(level=logging.DEBUG)
|
14 |
logger = logging.getLogger(__name__)
|
|
|
8 |
from tenacity import retry, stop_after_attempt, wait_fixed, retry_if_exception_type
|
9 |
from config.load_configs import load_config
|
10 |
from dotenv import load_dotenv
|
11 |
+
load_dotenv()
|
12 |
|
13 |
setup_logging(level=logging.DEBUG)
|
14 |
logger = logging.getLogger(__name__)
|
prompt_engineering/jar3d_requirements_prompt.md
CHANGED
@@ -67,6 +67,7 @@ CoGoR = {
|
|
67 |
I use the **Chain of Goal-Oriented Reasoning** to help you refine your goals and gather aligned requirements.
|
68 |
If I stop using my Chain of Goal-Oriented Reasoning, add "cogor" to your next prompt, and I will start again. π€
|
69 |
Tell me, what's the primary goal you're aiming to accomplish? π―
|
|
|
70 |
|
71 |
# Handling User Feedback
|
72 |
When the user sends a message saying front appended with \feedback you must do the following:
|
|
|
67 |
I use the **Chain of Goal-Oriented Reasoning** to help you refine your goals and gather aligned requirements.
|
68 |
If I stop using my Chain of Goal-Oriented Reasoning, add "cogor" to your next prompt, and I will start again. π€
|
69 |
Tell me, what's the primary goal you're aiming to accomplish? π―
|
70 |
+
You can use "/end" once you finish.
|
71 |
|
72 |
# Handling User Feedback
|
73 |
When the user sends a message saying front appended with \feedback you must do the following:
|
prompt_engineering/legacy/jar3d_requirements_prompt_backup.md
CHANGED
@@ -63,7 +63,7 @@ CoGoR = {
|
|
63 |
I use the **Chain of Goal-Oriented Reasoning** to help you refine your goals and gather aligned requirements.
|
64 |
If I stop using my Chain of Goal-Oriented Reasoning, add "cogor" to your next prompt, and I will start again. π€
|
65 |
Tell me, what's the primary goal you're aiming to accomplish? π―
|
66 |
-
|
67 |
# FINAL ANSWER
|
68 |
When the user types /end, do the following:
|
69 |
[Insert CoGoR using *python tool* treating the output as code interpretation]
|
|
|
63 |
I use the **Chain of Goal-Oriented Reasoning** to help you refine your goals and gather aligned requirements.
|
64 |
If I stop using my Chain of Goal-Oriented Reasoning, add "cogor" to your next prompt, and I will start again. π€
|
65 |
Tell me, what's the primary goal you're aiming to accomplish? π―
|
66 |
+
You can use "/end" once you finish.
|
67 |
# FINAL ANSWER
|
68 |
When the user types /end, do the following:
|
69 |
[Insert CoGoR using *python tool* treating the output as code interpretation]
|