Football Match Report Generator

This task automates the creation of detailed football match reports.

Input

Description

Easily generate a comprehensive minute-by-minute football match report by simply inputting the raw data of the game.

Applications

  • Sports websites and blogs can use this AI tool to quickly generate match reports.

  • Coaches and analysts can use this tool to analyze and recap matches.

  • Commentary teams can utilize this tool to create live match updates.

How to use the task

  1. Enter the names of the teams and their squads.

  2. Enter the competition title.

  3. Enter the raw data for the match.

  4. The task will generate a comprehensive match report.

[1.0.3]:
New Version
[1.0.2]:
Version 1
[1.0.1]:
Version 1
[1.0.0]:
First version
VersionAI ModelCreatedLink
1.0.315.09.2023
1.0.212.09.2023
1.0.112.09.2023
1.0.012.09.2023

API

The REST API allows you to call the tool with the same costs as when running the tool. Please generate an Personal access token before using the REST API.

Parameters

  • team1 (Team 1): Enter the name of team 2
  • squad1 (Squad 1): Enter the squad for team 1
  • team2 (Team 2): Enter the name of team 1
  • squad2 (Squad 2): Enter the squad for team 2
  • competition (Competition name): Enter the competition title.
  • raw_data (Match data input): Please provide the details you have gathered from the match.
  • Call the REST API by cURL
    curl -v -H "Authorization: Bearer PERSONAL_ACCESS_TOKEN" https://api.anysolve.ai/rest/v1/u-anysolve-mr-football-match-report-generator/1.0.3?team1=RB%20Leipzig&squad1=Optional&team2=Liverpool%20FC&squad2=Optional&competition=Bundesliga&raw_data=Please%20provide%20the%20details%20you%20have%20gathered%20from%20the%20match.
  • Install the package with pip
    python3 -m pip install anysolve
  • Run in python3
    import os
    from anysolve import AnySolve
    anysolve_token = os.environ.get('ANYSOLVE_PERSONAL_ACCESS_TOKEN') # Resolve your personal access token here
    client = AnySolve(anysolve_token)
    res = client.run('u-anysolve-mr-football-match-report-generator','1.0.3', {'team1': 'RB Leipzig', 'squad1': 'Optional', 'team2': 'Liverpool FC', 'squad2': 'Optional', 'competition': 'Bundesliga', 'raw_data': 'Please provide the details you have gathered from the match.'})
    print(res)
  • Coming soon: Within AnySolve ChatComplete prompts you can use the following command to execute the task:
    /run('u-anysolve-mr-football-match-report-generator','1.0.3', team1='RB Leipzig', squad1='Optional', team2='Liverpool FC', squad2='Optional', competition='Bundesliga', raw_data='Please provide the details you have gathered from the match.')