My agent - #1
Open
Nihalfateen wants to merge 2 commits into
Open
Conversation
Add a Minimax-based autonomous agent (agents/my_agent.py) that uses depth-limited Minimax with alpha-beta pruning and a heuristic tuned for Connect Four. Update README.md to document the new agent, architecture, and evaluation notes. Enhance backend/server.py to track game numbers, persist per-round results to /tmp/scores.csv, accept and store agent display names, and send agent name updates to the frontend; also refine some logging and message handling. Update frontend/script.js to show agent display names, handle incoming agent_name messages, and use names for connection/status/turn UI. Include a sample scores.csv file with historical entries.
Add a new author entry for Nihal Fateen to the project's README Authors section, including a link to their GitHub profile.
Author
|
@mariolpantunes |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add my_agent.py the submitted autonomous agent using Minimax with alpha-beta pruning.