Spaces:
Sleeping
Sleeping
Update pages/Chat_Mode.py
Browse files- pages/Chat_Mode.py +1 -1
pages/Chat_Mode.py
CHANGED
@@ -64,7 +64,7 @@ if prompt := st.chat_input("Type some text here!"):
|
|
64 |
st.markdown(''':red[Tokens in prompt: ]''' + " " + str(prompt_tokens))
|
65 |
st.markdown(''':orange[Tokens in response: ]''' + " " + str(completion_tokens))
|
66 |
st.markdown(''':green[Total Tokens: ]''' + " " + str(total_tokens))
|
67 |
-
st.markdown(''':blue[GPT4 Cost: ]''' + " $" + str(round(cost,
|
68 |
st.markdown(''':rainbow[Our Cost: ]''' + " $0.00")
|
69 |
|
70 |
|
|
|
64 |
st.markdown(''':red[Tokens in prompt: ]''' + " " + str(prompt_tokens))
|
65 |
st.markdown(''':orange[Tokens in response: ]''' + " " + str(completion_tokens))
|
66 |
st.markdown(''':green[Total Tokens: ]''' + " " + str(total_tokens))
|
67 |
+
st.markdown(''':blue[GPT4 Cost: ]''' + " $" + str(round(cost, 5)))
|
68 |
st.markdown(''':rainbow[Our Cost: ]''' + " $0.00")
|
69 |
|
70 |
|