Skip to main content

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fi_dialogue_agents-0.0.10.tar.gz (4.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

fi_dialogue_agents-0.0.10-py3-none-any.whl (4.7 kB view details)

Uploaded Python 3

File details

Details for the file fi_dialogue_agents-0.0.10.tar.gz.

File metadata

  • Download URL: fi_dialogue_agents-0.0.10.tar.gz
  • Upload date:
  • Size: 4.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for fi_dialogue_agents-0.0.10.tar.gz
Algorithm Hash digest
SHA256 8cbb286496b40cb5c82d74b405cdf37c484e326ac2c4416d26c5356a4259e2be
MD5 9048587ee406c1afbaa67582c9641d13
BLAKE2b-256 444a99e7742c704ffc7c7698839a784f945cf14220a079076ad93be5d7a7c6e2

See more details on using hashes here.

File details

Details for the file fi_dialogue_agents-0.0.10-py3-none-any.whl.

File metadata

File hashes

Hashes for fi_dialogue_agents-0.0.10-py3-none-any.whl
Algorithm Hash digest
SHA256 6beabb2e12987649522c9e1a182b7ada26076e981df3e764c1760ecfde6b3472
MD5 fd6dc226476df8023126b56a4c9be3f9
BLAKE2b-256 0a60b58e2ef71dafbc87ae3041c5a37a933056c57b8aeb26b69b2ca72547dc52

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page