Katpeeler commited on
Commit
89913cd
·
1 Parent(s): eed2e2e

Update pages/Chat_Mode.py

Browse files
Files changed (1) hide show
  1. 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, 2))
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, 2)))
68
  st.markdown(''':rainbow[Our Cost: ]''' + " $0.00")
69
 
70