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.11.tar.gz (8.7 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.11-py3-none-any.whl (4.8 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: fi_dialogue_agents-0.0.11.tar.gz
  • Upload date:
  • Size: 8.7 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.11.tar.gz
Algorithm Hash digest
SHA256 170b83b2a2112008d326134931972634a70593ef791f38bd71932fa088c91dc9
MD5 2ba1cbc4f046a02ee5335e2fb218d992
BLAKE2b-256 b37484eb9e7937234fc27f0695b50f36a8f239a8fa506c78f92408bdb8d8156d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fi_dialogue_agents-0.0.11-py3-none-any.whl
Algorithm Hash digest
SHA256 e60aa602c6680a55bbac7e239d4d0711c38711bc63e73608270e43658883f352
MD5 76845f21f1ae7f4ec1216272bbd1ce4b
BLAKE2b-256 f9dfa56c38c5baeaa3ce9e1f2f8d2241f911629bc5c004158fa43f2a83403e71

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