Convert all links to relative links

sam/sneaky
Bram van den Heuvel 2026-06-28 23:16:39 +02:00
parent 73be372a30
commit 90d2bea528
5 changed files with 10 additions and 10 deletions

View File

@ -4,8 +4,8 @@ Write a script that plays tic-tac-toe, and see how well it performs against
other programs! other programs!
- [🚀 Write your own agent](agents/README.md) - [🚀 Write your own agent](agents/README.md)
- [🖊 Compare how well your agent performs](/elo_tracker/README.md) - [🖊 Compare how well your agent performs](elo_tracker/README.md)
- [🌐 Publish your agent to the internet](/pyserver/README.md) - [🌐 Publish your agent to the internet](pyserver/README.md)
## Get started ## Get started

View File

@ -7,7 +7,7 @@ print the incoming game state, and improve it one step at a time.
## Quick start ## Quick start
1. Copy `example.py`. 1. Copy [example.py](example.py).
2. Rename the file and the `ExampleAgent` class. 2. Rename the file and the `ExampleAgent` class.
3. Update the agent's name, author and version. 3. Update the agent's name, author and version.
4. Implement `play_tic_tac_toe()`. 4. Implement `play_tic_tac_toe()`.
@ -39,7 +39,7 @@ where the number is the square you want to play.
## Testing your agent ## Testing your agent
Open [client.py](/client.py) and replace one of the players with your own agent. Open [client.py](../client.py) and replace one of the players with your own agent.
For example: For example:
```py ```py
@ -66,5 +66,5 @@ need to understand the rest of the project before you can start experimenting.
Once you're happy with your agent, you can: Once you're happy with your agent, you can:
- [🖊 Compare your agent against other agents with the ELO tracker](/elo_tracker/README.md) - [🖊 Compare your agent against other agents with the ELO tracker](../elo_tracker/README.md)
- [🌐 Publish your agent so other people can play against it](/pyserver/README.md) - [🌐 Publish your agent so other people can play against it](../pyserver/README.md)

View File

@ -9,7 +9,7 @@ The tracker only plays against **remote agents**. Remote agents are available
through a URL, and usually run on the internet. through a URL, and usually run on the internet.
If your agent only exists as a local Python class, If your agent only exists as a local Python class,
[publish it first](/pyserver/README.md). [publish it first](../pyserver/README.md).
## Add players ## Add players

View File

@ -33,4 +33,4 @@ The included server is the easiest way to publish a Python agent.
If you want to implement the protocol yourself If you want to implement the protocol yourself
_(for example in another language)_ you can use the specification in _(for example in another language)_ you can use the specification in
[the protocol specification](spec.md). [the protocol specification](./spec.md).

View File

@ -4,8 +4,8 @@ This document describes how a Bot-Man-Toe server or client is supposed to
behave. behave.
**This document requires familiarity with setting up an HTTP server.** Please **This document requires familiarity with setting up an HTTP server.** Please
use [the easy implementation](/pyserver/README.md) if you're building use [the easy implementation](../pyserver/README.md) if you're building
[a simple agent](/agents/README.md) in this repository. [a simple agent](../agents/README.md) in this repository.
## Terminology ## Terminology