Skip to content

Commit 8e0c078

Browse files
BeatrixCohereClaytonSmith
authored andcommitted
Add use agents view env variable. (cohere-ai#192)
* Change * Format
1 parent a897f73 commit 8e0c078

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.env-template

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ BEDROCK_REGION_NAME=<REGION NAME>
3636

3737
# Experimental features
3838
USE_EXPERIMENTAL_LANGCHAIN=False
39+
USE_AGENTS_VIEW=False
3940

4041
# Community features
4142
USE_COMMUNITY_FEATURES='True'

src/backend/routers/experimental_features.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ def list_experimental_features():
2424
experimental_features = {
2525
"USE_EXPERIMENTAL_LANGCHAIN": bool(
2626
strtobool(os.getenv("USE_EXPERIMENTAL_LANGCHAIN", "false"))
27-
)
27+
),
28+
"USE_AGENTS_VIEW": bool(strtobool(os.getenv("USE_AGENTS_VIEW", "false"))),
2829
}
2930
return experimental_features

0 commit comments

Comments
 (0)