few readme requirements.txt additions
This commit is contained in:
parent
610598bd06
commit
d90578cad2
2 changed files with 37 additions and 0 deletions
|
|
@ -0,0 +1,33 @@
|
|||
# AI Blackjack Game
|
||||
|
||||
This is a simple blackjack game that uses an AI agents as Player and Dealer to play the game.
|
||||
|
||||
|
||||
### How to get Started?
|
||||
|
||||
1. Clone the GitHub repository
|
||||
|
||||
```bash
|
||||
git clone https://github.com/Shubhamsaboo/awesome-llm-apps.git
|
||||
cd ai_agent_tutorials/ai_blackjack_game
|
||||
```
|
||||
2. Install the required dependencies:
|
||||
|
||||
```bash
|
||||
pip install -r requirements.txt
|
||||
```
|
||||
3. Get your OpenAI API Key
|
||||
|
||||
- Sign up for an [OpenAI account](https://platform.openai.com/) (or the LLM provider of your choice) and obtain your API key.
|
||||
|
||||
4. Run the Streamlit App
|
||||
```bash
|
||||
streamlit run ai_blackjack_agent.py
|
||||
```
|
||||
|
||||
## Requirements
|
||||
|
||||
- autogen
|
||||
- numpy
|
||||
- openai
|
||||
- streamlit
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
autogen
|
||||
numpy
|
||||
openai
|
||||
streamlit
|
||||
Loading…
Reference in a new issue