Spaces:
Running
Running
pragneshbarik
commited on
Commit
·
e87951e
1
Parent(s):
be398c6
changed Rupees to dollar
Browse files- app.py +4 -1
- requirements.txt +23 -2
app.py
CHANGED
@@ -253,7 +253,10 @@ def sidebar():
|
|
253 |
st.write("Speed :", st.session_state["tps"], " tokens/sec")
|
254 |
st.write(
|
255 |
"Total cost incurred :",
|
256 |
-
round(
|
|
|
|
|
|
|
257 |
"INR",
|
258 |
)
|
259 |
|
|
|
253 |
st.write("Speed :", st.session_state["tps"], " tokens/sec")
|
254 |
st.write(
|
255 |
"Total cost incurred :",
|
256 |
+
round(
|
257 |
+
COST_PER_1000_TOKENS_INR * 80 * st.session_state["tokens_used"] / 1000,
|
258 |
+
3,
|
259 |
+
),
|
260 |
"INR",
|
261 |
)
|
262 |
|
requirements.txt
CHANGED
@@ -2,6 +2,7 @@ altair==5.1.2
|
|
2 |
asttokens==2.2.1
|
3 |
attrs==23.1.0
|
4 |
backcall==0.2.0
|
|
|
5 |
blinker==1.6.3
|
6 |
cachetools==5.3.1
|
7 |
certifi==2023.7.22
|
@@ -11,6 +12,7 @@ colorama==0.4.6
|
|
11 |
comm==0.1.3
|
12 |
debugpy==1.6.7
|
13 |
decorator==5.1.1
|
|
|
14 |
executing==1.2.0
|
15 |
filelock==3.12.4
|
16 |
fsspec==2023.9.2
|
@@ -23,21 +25,27 @@ ipykernel==6.23.3
|
|
23 |
ipython==8.14.0
|
24 |
jedi==0.18.2
|
25 |
Jinja2==3.1.2
|
|
|
26 |
jsonschema==4.19.1
|
27 |
jsonschema-specifications==2023.7.1
|
28 |
jupyter_client==8.3.0
|
29 |
jupyter_core==5.3.1
|
|
|
30 |
markdown-it-py==3.0.0
|
31 |
MarkupSafe==2.1.3
|
32 |
matplotlib-inline==0.1.6
|
33 |
mdurl==0.1.2
|
|
|
34 |
nest-asyncio==1.5.6
|
|
|
|
|
35 |
numpy==1.26.0
|
36 |
packaging==23.1
|
37 |
pandas==2.1.1
|
38 |
parso==0.8.3
|
39 |
pickleshare==0.7.5
|
40 |
Pillow==10.0.1
|
|
|
41 |
platformdirs==3.8.0
|
42 |
prompt-toolkit==3.0.38
|
43 |
protobuf==4.24.4
|
@@ -49,22 +57,36 @@ Pygments==2.15.1
|
|
49 |
python-dateutil==2.8.2
|
50 |
python-dotenv==1.0.0
|
51 |
pytz==2023.3.post1
|
|
|
52 |
PyYAML==6.0.1
|
53 |
pyzmq==25.1.0
|
54 |
referencing==0.30.2
|
|
|
55 |
requests==2.31.0
|
56 |
rich==13.6.0
|
57 |
rpds-py==0.10.4
|
|
|
|
|
|
|
|
|
|
|
58 |
six==1.16.0
|
59 |
smmap==5.0.1
|
|
|
60 |
stack-data==0.6.2
|
61 |
streamlit==1.27.2
|
|
|
62 |
tenacity==8.2.3
|
|
|
|
|
63 |
toml==0.10.2
|
64 |
toolz==0.12.0
|
|
|
|
|
65 |
tornado==6.3.2
|
66 |
tqdm==4.66.1
|
67 |
traitlets==5.9.0
|
|
|
68 |
typing_extensions==4.8.0
|
69 |
tzdata==2023.3
|
70 |
tzlocal==5.1
|
@@ -72,6 +94,5 @@ urllib3==2.0.6
|
|
72 |
validators==0.22.0
|
73 |
watchdog==3.0.0
|
74 |
wcwidth==0.2.6
|
|
|
75 |
zipp==3.17.0
|
76 |
-
sentence-transformers==2.2.2
|
77 |
-
pinecone-client==2.2.4
|
|
|
2 |
asttokens==2.2.1
|
3 |
attrs==23.1.0
|
4 |
backcall==0.2.0
|
5 |
+
beautifulsoup4==4.12.2
|
6 |
blinker==1.6.3
|
7 |
cachetools==5.3.1
|
8 |
certifi==2023.7.22
|
|
|
12 |
comm==0.1.3
|
13 |
debugpy==1.6.7
|
14 |
decorator==5.1.1
|
15 |
+
dnspython==2.4.2
|
16 |
executing==1.2.0
|
17 |
filelock==3.12.4
|
18 |
fsspec==2023.9.2
|
|
|
25 |
ipython==8.14.0
|
26 |
jedi==0.18.2
|
27 |
Jinja2==3.1.2
|
28 |
+
joblib==1.3.2
|
29 |
jsonschema==4.19.1
|
30 |
jsonschema-specifications==2023.7.1
|
31 |
jupyter_client==8.3.0
|
32 |
jupyter_core==5.3.1
|
33 |
+
loguru==0.7.2
|
34 |
markdown-it-py==3.0.0
|
35 |
MarkupSafe==2.1.3
|
36 |
matplotlib-inline==0.1.6
|
37 |
mdurl==0.1.2
|
38 |
+
mpmath==1.3.0
|
39 |
nest-asyncio==1.5.6
|
40 |
+
networkx==3.2.1
|
41 |
+
nltk==3.8.1
|
42 |
numpy==1.26.0
|
43 |
packaging==23.1
|
44 |
pandas==2.1.1
|
45 |
parso==0.8.3
|
46 |
pickleshare==0.7.5
|
47 |
Pillow==10.0.1
|
48 |
+
pinecone-client==2.2.4
|
49 |
platformdirs==3.8.0
|
50 |
prompt-toolkit==3.0.38
|
51 |
protobuf==4.24.4
|
|
|
57 |
python-dateutil==2.8.2
|
58 |
python-dotenv==1.0.0
|
59 |
pytz==2023.3.post1
|
60 |
+
pywin32==306
|
61 |
PyYAML==6.0.1
|
62 |
pyzmq==25.1.0
|
63 |
referencing==0.30.2
|
64 |
+
regex==2023.10.3
|
65 |
requests==2.31.0
|
66 |
rich==13.6.0
|
67 |
rpds-py==0.10.4
|
68 |
+
safetensors==0.4.1
|
69 |
+
scikit-learn==1.3.2
|
70 |
+
scipy==1.11.4
|
71 |
+
sentence-transformers==2.2.2
|
72 |
+
sentencepiece==0.1.99
|
73 |
six==1.16.0
|
74 |
smmap==5.0.1
|
75 |
+
soupsieve==2.5
|
76 |
stack-data==0.6.2
|
77 |
streamlit==1.27.2
|
78 |
+
sympy==1.12
|
79 |
tenacity==8.2.3
|
80 |
+
threadpoolctl==3.2.0
|
81 |
+
tokenizers==0.15.0
|
82 |
toml==0.10.2
|
83 |
toolz==0.12.0
|
84 |
+
torch==2.1.2
|
85 |
+
torchvision==0.16.2
|
86 |
tornado==6.3.2
|
87 |
tqdm==4.66.1
|
88 |
traitlets==5.9.0
|
89 |
+
transformers==4.35.2
|
90 |
typing_extensions==4.8.0
|
91 |
tzdata==2023.3
|
92 |
tzlocal==5.1
|
|
|
94 |
validators==0.22.0
|
95 |
watchdog==3.0.0
|
96 |
wcwidth==0.2.6
|
97 |
+
win32-setctime==1.1.0
|
98 |
zipp==3.17.0
|
|
|
|