Hadiboo commited on
Commit
48d28bd
·
verified ·
1 Parent(s): 24ea58e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +44 -34
app.py CHANGED
@@ -1,36 +1,46 @@
1
- import streamlit as st
2
- from transformers import AutoModelForCausalLM, AutoTokenizer
3
- from accelerate import Accelerator # Import Accelerator from the accelerate library
4
-
5
- def main():
6
- st.title("Chatbot with Hugging Face Model")
7
-
8
- model_id = "mistralai/Mixtral-8x7B-Instruct-v0.1"
9
- tokenizer = AutoTokenizer.from_pretrained(model_id)
10
-
11
- # Create an Accelerator instance
12
- accelerator = Accelerator()
13
-
14
- # Use the Accelerator for initializing the model
15
- model = AutoModelForCausalLM.from_pretrained(model_id, device_map=accelerator.device)
16
-
17
- user_input = st.text_input("User Input:", "What is your favourite condiment?")
18
-
19
- if st.button("Generate Response"):
20
- messages = [
21
- {"role": "user", "content": user_input},
22
- {"role": "assistant", "content": "Placeholder assistant message"}
23
- ]
24
-
25
- inputs = tokenizer.apply_chat_template(messages, return_tensors="pt").to(accelerator.device)
26
-
27
- # Use the Accelerator for generating outputs
28
- with accelerator.device():
29
- outputs = model.generate(inputs, max_new_tokens=20)
30
-
31
- response = tokenizer.decode(outputs[0], skip_special_tokens=True)
32
-
33
- st.text_area("Assistant's Response:", response)
 
 
 
 
 
 
 
 
 
 
34
 
35
  if __name__ == "__main__":
36
- main()
 
1
+ def print_board(board):
2
+ for row in board:
3
+ print(" | ".join(row))
4
+ print("-" * 9)
5
+
6
+ def check_winner(board, player):
7
+ # Check rows, columns, and diagonals
8
+ for i in range(3):
9
+ if all(cell == player for cell in board[i]) or all(board[j][i] == player for j in range(3)):
10
+ return True
11
+ if all(board[i][i] == player for i in range(3)) or all(board[i][2 - i] == player for i in range(3)):
12
+ return True
13
+ return False
14
+
15
+ def check_tie(board):
16
+ return all(cell != " " for row in board for cell in row)
17
+
18
+ def tic_tac_toe():
19
+ board = [[" " for _ in range(3)] for _ in range(3)]
20
+ current_player = "X"
21
+
22
+ print("Welcome to Tic-Tac-Toe!")
23
+
24
+ while True:
25
+ print_board(board)
26
+
27
+ row = int(input(f"Player {current_player}, enter row (0, 1, or 2): "))
28
+ col = int(input(f"Player {current_player}, enter column (0, 1, or 2): "))
29
+
30
+ if board[row][col] == " ":
31
+ board[row][col] = current_player
32
+ if check_winner(board, current_player):
33
+ print_board(board)
34
+ print(f"Player {current_player} wins! Congratulations!")
35
+ break
36
+ elif check_tie(board):
37
+ print_board(board)
38
+ print("It's a tie! Well played.")
39
+ break
40
+ else:
41
+ current_player = "O" if current_player == "X" else "X"
42
+ else:
43
+ print("Cell already occupied. Try again.")
44
 
45
  if __name__ == "__main__":
46
+ tic_tac_toe()