Design agents to compete on FI Dialogue
Project description
Build FI Dialogue Agents
fi_dialogue_agents is a Python package that simplifies creating dialogue agents using Flask and Socket.IO for FI Dialogue. This wrapper makes it easy to build and deploy agents with minimal configuration, and even allows public access via ngrok reverse tunneling.
Installation
To install the package, simply run:
pip install fi_dialogue_agents
Usagea
Once installed, you can use the Agent class to build your own dialogue agents. Below is a quick guide on initializing agents, handling messages, and running the server.
1. Agent Initialization
The Agent class is the core of this package. Initialize an agent by specifying the host and port for the Flask server:
from fi_dialogue_agents import Agent
# Create an instance of the Agent
agent = Agent(host="0.0.0.0", port=5001)
2. Handling Incoming Messages
You can define a custom message handler using the on_message method. This function is triggered whenever a message is received from the client.
def handle_user_message(message):
print(f"Handling message: {message}")
agent.send_message(f"Echo: {message}")
# Set the custom message handler
agent.on_message(handle_user_message)
3. Running the Server
You can either run the server locally or expose it publicly via ngrok.
a. Running Locally
To start the server locally, use the following command:
agent.run()
b. Running with Ngrok
If you want to expose the server publicly, you can use ngrok. Pass your ngrok authentication token to the run method:
agent.run(debug=True, ngrok_token="<your_ngrok_token>")
You can obtain your ngrok token from ngrok's website.
4. Running the Agent Script
To start the agent, run the following command in your terminal:
python agent.py
This will start the server and, if ngrok is used, provide both the local and public URLs. Hot-reloading is enabled by default, but it is disabled when ngrok is used to prevent generating multiple public URLs.
If you'd like to run the agent as a background process, you can use the nohup command:
nohup python agent.py > output.log 2>&1 &
The server logs, including the ngrok URL, will be saved to output.log.
API Reference
Agent Class
Agent(host, port, cors_allowed_origins): Initializes a new Flask-SocketIO agent.
-
host: The hostname for the Flask server (default: "0.0.0.0"). -
port: The port to run the server (default: 5001). -
on_message(handler): Set a custom handler for user messages.handler: A function that will be called with the incoming message as its argument.
-
send_message(message): Sends a message to the client.message: The message to send back to the client.
-
start_typing(): Sends a typing notification to the client. -
stop_typing(): Stops the typing notification. -
run(debug=True, ngrok_token=None): Starts the Flask-SocketIO server.debug: Whether to run the server in debug mode.ngrok_token: If provided, the server will be exposed to the public via an Ngrok tunnel.
License
This project is licensed under the MIT License. See the LICENSE file for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file fi_dialogue_agents-0.0.7.tar.gz.
File metadata
- Download URL: fi_dialogue_agents-0.0.7.tar.gz
- Upload date:
- Size: 4.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ef077b95baca80494d6149a546952a6a5ca65398ff35ed7fd7ac45c79c931bd8
|
|
| MD5 |
dd0597004fa78e3e578abecfcdaad075
|
|
| BLAKE2b-256 |
9fa51b3e542baacedee3176a1a39a27f919e00199481def13fc8c7875671243c
|
File details
Details for the file fi_dialogue_agents-0.0.7-py3-none-any.whl.
File metadata
- Download URL: fi_dialogue_agents-0.0.7-py3-none-any.whl
- Upload date:
- Size: 4.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
31d55a728da0fa173af5fb1cab011679fcd6d5b3835e782b9ee89b1c13479fe2
|
|
| MD5 |
a7753e05bbcb7d4857d5a24c971b87aa
|
|
| BLAKE2b-256 |
01a707be75639b4cbd5f82e6539b243d940bc7b090c60cc3efd056b32aa55536
|