Spaces:
Sleeping
Sleeping
Abhinav Mallick commited on
Commit ·
3d4bc22
1
Parent(s): a498d5f
change space ur
Browse files- inference.py +1 -1
- run_all_tasks.py +2 -2
inference.py
CHANGED
|
@@ -49,7 +49,7 @@ BENCHMARK = os.getenv("RCA_BENCHMARK", "vatavaran")
|
|
| 49 |
RCA_TASK_ID = (os.getenv("RCA_TASK_ID") or "").strip() or None
|
| 50 |
|
| 51 |
|
| 52 |
-
RCA_BASE_URL = "https://abmallick-vatavaran.hf.space"
|
| 53 |
RCA_USE_BASE_URL = (os.getenv("RCA_USE_BASE_URL") or "true").lower() == "true"
|
| 54 |
RCA_ENV_MODE = (os.getenv("RCA_ENV_MODE") or "client").strip().lower()
|
| 55 |
RCA_MAX_STEPS = int(os.getenv("RCA_MAX_STEPS", "4"))
|
|
|
|
| 49 |
RCA_TASK_ID = (os.getenv("RCA_TASK_ID") or "").strip() or None
|
| 50 |
|
| 51 |
|
| 52 |
+
RCA_BASE_URL = "https://abmallick-vatavaran-env.hf.space"
|
| 53 |
RCA_USE_BASE_URL = (os.getenv("RCA_USE_BASE_URL") or "true").lower() == "true"
|
| 54 |
RCA_ENV_MODE = (os.getenv("RCA_ENV_MODE") or "client").strip().lower()
|
| 55 |
RCA_MAX_STEPS = int(os.getenv("RCA_MAX_STEPS", "4"))
|
run_all_tasks.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
"""
|
| 2 |
Run inference across the selected default Bank tasks.
|
| 3 |
|
| 4 |
-
Connects directly to https://abmallick-vatavaran.hf.space and iterates
|
| 5 |
the configured task IDs sequentially in a single process so the conversation
|
| 6 |
log is preserved across all tasks (one reset at the very start, then one
|
| 7 |
episode per task appended to the same log file).
|
|
@@ -23,7 +23,7 @@ from inference import (
|
|
| 23 |
_run_episode,
|
| 24 |
)
|
| 25 |
|
| 26 |
-
HF_SPACE_URL = "https://abmallick-vatavaran.hf.space"
|
| 27 |
|
| 28 |
# Task IDs aligned with the default inference list.
|
| 29 |
TASK_IDS = [
|
|
|
|
| 1 |
"""
|
| 2 |
Run inference across the selected default Bank tasks.
|
| 3 |
|
| 4 |
+
Connects directly to https://abmallick-vatavaran-env.hf.space and iterates
|
| 5 |
the configured task IDs sequentially in a single process so the conversation
|
| 6 |
log is preserved across all tasks (one reset at the very start, then one
|
| 7 |
episode per task appended to the same log file).
|
|
|
|
| 23 |
_run_episode,
|
| 24 |
)
|
| 25 |
|
| 26 |
+
HF_SPACE_URL = "https://abmallick-vatavaran-env.hf.space"
|
| 27 |
|
| 28 |
# Task IDs aligned with the default inference list.
|
| 29 |
TASK_IDS = [
|