Spaces:
Running
Running
Commit
·
87d384c
1
Parent(s):
75b9484
fix: typo
Browse files- src/calculator.py +1 -1
- src/content.py +1 -1
src/calculator.py
CHANGED
|
@@ -11,7 +11,7 @@ from src.constants import PROMPTS
|
|
| 11 |
|
| 12 |
def calculator_mode():
|
| 13 |
|
| 14 |
-
st.expander("How to
|
| 15 |
|
| 16 |
with st.container(border=True):
|
| 17 |
df = load_models(filter_main=True)
|
|
|
|
| 11 |
|
| 12 |
def calculator_mode():
|
| 13 |
|
| 14 |
+
st.expander("How to use this calculator?", expanded = False).markdown(HOW_TO_TEXT)
|
| 15 |
|
| 16 |
with st.container(border=True):
|
| 17 |
df = load_models(filter_main=True)
|
src/content.py
CHANGED
|
@@ -33,7 +33,7 @@ INTRO_TEXT = """
|
|
| 33 |
HOW_TO_TEXT = """
|
| 34 |
Chose a provider, a model and an example of usage (prompts).
|
| 35 |
|
| 36 |
-
1.The calculator will provide you estimates of environmental impacts of this example. To learn more about how these impacts are computed check the Methodology tab.
|
| 37 |
|
| 38 |
2. You can then check for equivalences of these impacts.
|
| 39 |
|
|
|
|
| 33 |
HOW_TO_TEXT = """
|
| 34 |
Chose a provider, a model and an example of usage (prompts).
|
| 35 |
|
| 36 |
+
1. The calculator will provide you estimates of environmental impacts of this example. To learn more about how these impacts are computed check the Methodology tab.
|
| 37 |
|
| 38 |
2. You can then check for equivalences of these impacts.
|
| 39 |
|