This Golang project parses unstructured HAWB documents in PDF format and converts extracted data into the IATA One Record API using Vertex AI as an LLM.
- Golang: Ensure that Go is installed on your system.
- Google Cloud Account: The project uses Google Cloud services such as Vertex AI and Cloud Storage.
- .env File: Create a
.env
file with the required configuration values.
Create a .env
file in the root directory of the project with the following content:
GOOGLE_APPLICATION_CREDENTIALS=<Path to credentials to get an access to the Google Cloud>
GCLOUD_PROJECT_ID=<ID of Google Cloud Project>
GCLOUD_LOCATION=<Location of Google Cloud Project>
GCLOUD_BUCKETNAME=<Path to the Google Cloud bucket>
AI_MODEL=<AI model for the document parsing, e.g. gemini-2.0-flash-exp>
- Clone this repository:
git clone https://github.com/setlog/iata-hackathon-2025.git
cd iata-hackathon-2025
- Install dependencies:
go mod tidy
Start the service using the following command:
go run -o iata-hackathon-2025 .
The application provides the following REST API endpoints:
GET /hwbreportanalysis/all
- Description: Parses all PDF documents (HAWBs) stored in the Google Cloud Storage bucket GCLOUD_BUCKETNAME and returns the output in JSON format.
GET /hwbreportanalysis?fileName=<fileName>
- Description: Parses the specified PDF document from the bucket GCLOUD_BUCKETNAME and returns the output in JSON format.
GET /json2iata/all
- Description: Converts all generated JSON data into IATA format and uploads it to the One Record Server via API.
POST /json2iata
- Description: Converts a single HAWB JSON into IATA format and uploads it to the One Record Server via API.
- Request Body: JSON containing the data to be converted.
For any questions or issues, please contact the project maintainer or create an Issue.