Connect with us

AI in Travel

AI-powered travel agency Holiwise raises…

Published

on


Holiwise, a London-based AI-powered travel agency has raised a €1.45M pre-seed in an oversubscribed round backed by senior executives from global firms including Bank of America, Barclays, Google, and Goldman Sachs.

The raise was led by Bobby Previti, head of SSA and covered bond trading at Bank of America, and joined by Ulf Nilsson, Nordics & Eastern Europe CEO at DHL, who has also been named to join the Holiwise board; Sabri EL JAILANI and Filippo Zorzoli of Barclays Investment Bank; and Houman Ashrafzadeh, founder of Padium and co-founder of Urban Greens.

The pre-seed round coincides with Holiwise’s integrations with some of the travel industry’s most influential platforms.

HBX Group and Amadeus have been confirmed as a couple of those integrations.

These partnerships enable the platform to offer end-to-end trip planning and booking – spanning flights, stays, and experiences – across more than 10,000 destinations worldwide.

Together, its hoped the fresh capital and industry partnerships will be used to accelerate development of Holiwise’s AI travel agent and dynamic packaging models, as well as expand platform capabilities, and scale its premium concierge service.

“We’ve identified a clear gap in the market between mainstream online travel agencies and high-end travel concierges,” said Albin Eriksson Lippe, CEO and co-founder of Holiwise.

“Premium travellers are underserved, often forced to choose between impersonal, self-serve booking platforms or expensive concierge services that are slow to access.

“Holiwise is building an AI travel agent that combines the convenience of technology with the quality of a tailored luxury experience.

“It can instantly plan and book complete personalised itineraries, including synchronised flights, premium stays, and curated experiences for individuals or groups.”

Bobby Previti, lead investor, added: “I agree with the founders’ vision that there is a gap in the market for premium travellers.

“Holiwise is taking an innovative approach to solve the problem, with an exceptional team that understands the problem well.

“I strongly believe that the team is in the right place at the right time, working towards a vision that I’m keen to support.”

Holiwise uses proprietary deep learning and dynamic packaging models to create its personalised trips in seconds.

Users can personalise trips by mood, budget, location or timeframe, and book entire packages – including flights, accommodation and activities – with a single click.

The platform is already live with tens of thousands of monthly users and over 80% of customers returning to book again.



Source link

Continue Reading
Click to comment

You must be logged in to post a comment Login

Leave a Reply

AI in Travel

Airbnb Is the ‘Best-Placed’ Online Travel Agency to Fend Off AI Disruption: Bernstein Report

Published

on


All of the major online travel agencies facing looming pressures: Artificial intelligence disruption, slowing growth in online adoption, and competition. But Airbnb is “best-placed” among online travel agencies to deal with “the medium-term challenges,” according to research from Bernstein analysts.

Their reasoning? Airbnb’s high percentage of direct/free traffic, which Airbnb claims is around 90%, and its potential to further monetize its business. For example, Airbnb recently relaunched its Experiences business, debuted a new Services vertical, and is mulling new businesses.

For example, if ChatGPT becomes a must-have paid marketing channel for onl



Source link

Continue Reading

AI in Travel

Vibe Coding High-Performance Data Tools in Rust

Published

on


Vibe Coding High-Performance Data Tools in RustVibe Coding High-Performance Data Tools in Rust
Image by Author | ChatGPT

 

Working with data is everywhere now, from small apps to huge systems. But handling data quickly and safely isn’t always easy. That’s where Rust comes in. Rust is a programming language built for speed and safety. It’s great for building tools that need to process large amounts of data without slowing down or crashing. In this article, we’ll explore how Rust can help you create high-performance data tools.

 

What Is “Vibe Coding”?

 
Vibe coding refers to the practice of using large language models (LLMs) to produce code based on natural language descriptions. Instead of typing out every line of code yourself, you tell the AI what your program should do, and it writes the code for you. Vibe coding makes it easier and faster to build software, especially for people who don’t have a lot of experience with coding.

The vibe coding process involves the following steps:

  1. Natural Language Input: The developer provides a description of the desired functionality in plain language.
  2. AI Interpretation: The AI analyzes the input and determines the necessary code structure and logic.
  3. Code Generation: The AI generates the code based on its interpretation.
  4. Execution: The developer runs the generated code to see if it works as intended.
  5. Refinement: If something isn’t right, the developer tells the AI what to fix.
  6. Iteration: The iterative process continues until the desired software is achieved.

 

Why Rust for Data Tools?

 
Rust is becoming a popular choice for building data tools due to several key advantages:

  • High Performance: Rust delivers performance comparable to C and C++ and handles large datasets quickly
  • Memory Safety: Rust helps manage memory safely without a garbage collector, which reduces bugs and improves performance
  • Concurrency: Rust’s ownership rules prevent data races, letting you write safe parallel code for multi-core processors
  • Rich Ecosystem: Rust has a growing ecosystem of libraries, known as crates, that make it easy to build powerful, cross-platform tools

 

Setting Up Your Rust Environment

 
Getting started is straightforward:

  1. Install Rust: Use rustup to install Rust and keep it updated
  2. IDE Support: Popular editors like VS Code and IntelliJ Rust make it easy to write Rust code
  3. Useful Crates: For data processing, consider crates such as csv, serde, rayon, and tokio

With this foundation, you’re ready to build data tools in Rust.

 

Example 1: CSV Parser

 
One common task when working with data is reading CSV files. CSV files store data in a table format, like a spreadsheet. Let’s build a simple tool in Rust to do just that.

 

// Step 1: Adding Dependencies

In Rust, we use crates to help us. For this example, add these to your project’s Cargo.toml file:

[dependencies]
csv = "1.1"
serde = { version = "1.0", features = ["derive"] }
rayon = "1.7"

 

  • csv helps us read CSV files
  • serde lets us convert CSV rows into Rust data types
  • rayon lets us process data in parallel

 

// Step 2: Defining a Record Struct

We need to tell Rust what kind of data each row holds. For example, if each row has an id, name, and value, we write:

use serde::Deserialize;

#[derive(Debug, Deserialize)]
struct Record {
    id: u32,
    name: String,
    value: f64,
}

 

This makes it easy for Rust to turn CSV rows into Record structs.

 

// Step 3: Using Rayon for Parallelism

Now, let’s write a function that reads the CSV file and filters records where the value is greater than 100.

use csv::ReaderBuilder;
use rayon::prelude::*;
use std::error::Error;

// Record struct from the previous step needs to be in scope
use serde::Deserialize;

#[derive(Debug, Deserialize, Clone)]
struct Record {
    id: u32,
    name: String,
    value: f64,
}

fn process_csv(path: &str) -> Result<(), Box> {
    let mut rdr = ReaderBuilder::new()
        .has_headers(true)
        .from_path(path)?;

    // Collect records into a vector
    let records: Vec = rdr.deserialize()
        .filter_map(Result::ok)
        .collect();

    // Process records in parallel: filter where value > 100.0
    let filtered: Vec<_> = records.par_iter()
        .filter(|r| r.value > 100.0)
        .cloned()
        .collect();

    // Print filtered records
    for rec in filtered {
        println!("{:?}", rec);
    }
    Ok(())
}

fn main() {
    if let Err(err) = process_csv("data.csv") {
        eprintln!("Error processing CSV: {}", err);
    }
}

 

Example 2: Asynchronous Streaming Data Processor

 
In many data scenarios — such as logs, sensor data, or financial ticks — you need to process data streams asynchronously without blocking the program. Rust’s async ecosystem makes it easy to build streaming data tools.

 

// Step 1: Adding Asynchronous Dependencies

Add these crates to your Cargo.toml to help with async tasks and JSON data:

[dependencies]
tokio = { version = "1", features = ["full"] }
async-stream = "0.3"
serde_json = "1.0"
tokio-stream = "0.1"
futures-core = "0.3"

 

  • tokio is the async runtime that runs our tasks
  • async-stream helps us create streams of data asynchronously
  • serde_json parses JSON data into Rust structs

 

// Step 2: Creating an Asynchronous Data Stream

Here’s an example that simulates receiving JSON events one by one with a delay. We define an Event struct, then create a stream that produces these events asynchronously:

use async_stream::stream;
use futures_core::stream::Stream;
use serde::Deserialize;
use tokio::time::{sleep, Duration};
use tokio_stream::StreamExt;

#[derive(Debug, Deserialize)]
struct Event {
    event_type: String,
    payload: String,
}

fn event_stream() -> impl Stream {
    stream! {
        for i in 1..=5 {
            let event = Event {
                event_type: "update".into(),
                payload: format!("data {}", i),
            };
            yield event;
            sleep(Duration::from_millis(500)).await;
        }
    }
}

#[tokio::main]
async fn main() {
    let mut stream = event_stream();

    while let Some(event) = stream.next().await {
        println!("Received event: {:?}", event);
        // Here you can filter, transform, or store the event
    }
}

 

Tips to Maximize Performance

 

  • Profile your code with tools like cargo bench or perf to spot bottlenecks
  • Prefer zero-cost abstractions like iterators and traits to write clean and fast code
  • Use async I/O with tokio when dealing with network or disk streaming
  • Keep Rust’s ownership model front and center to avoid unnecessary allocations or clones
  • Build in release mode (cargo build --release) to enable compiler optimizations
  • Use specialized crates like ndarray or Single Instruction, Multiple Data (SIMD) libraries for heavy numerical workloads

 

Wrapping Up

 
Vibe coding lets you build software by describing what you want, and the AI turns your ideas into working code. This process saves time and lowers the barrier to entry. Rust is perfect for data tools, giving you speed, safety, and control without a garbage collector. Plus, Rust’s compiler helps you avoid common bugs.

We showed how to build a CSV processor that reads, filters, and processes data in parallel. We also built an asynchronous stream processor to handle live data using tokio. Use AI to explore ideas and Rust to bring them to life. Together, they help you build high-performance tools.
 
 

Jayita Gulati is a machine learning enthusiast and technical writer driven by her passion for building machine learning models. She holds a Master’s degree in Computer Science from the University of Liverpool.



Source link

Continue Reading

AI in Travel

Agoda introduces AI bot to answer hotel questions in real time

Published

on


Agoda has launched an AI chatbot designed to provide instant answers to travellers’ hotel-specific questions. The Property AMA (Ask Me Anything) Bot aims to help users make quicker, more confident booking decisions by delivering precise information in seconds.

Since its soft launch, the Property AMA Bot has gained popularity, answering over 30,000 hotel-related questions per day. Millions of travellers visit Agoda each day to explore accommodation options, compare amenities, and find suitable stays. While property pages provide detailed information, answers to simple questions such as “Is there parking available?” or “What is the quality of the breakfast?” can sometimes be difficult to locate. By connecting Agoda’s systems with the advanced language model ChatGPT, enriched with live property data, the Property AMA Bot provides up-to-date responses.

The Property AMA Bot provides instant responses to travellers’ hotel queries across Agoda’s platforms

Previously, Agoda users could contact property owners directly via a messaging system, but response rates and times varied. The Property AMA Bot offers real-time, reliable answers to enhance user confidence and is available on any property page across all Agoda platforms, including desktop, mobile web, and app. With its launch, Agoda aims to provide more responsive and user-friendly booking experiences, allowing travellers to move from browsing to booking with greater ease, supported by the company’s focus on making travel simpler, faster, and more personalised.

“Helping travellers get the answers they need, when they need them, is central to building trust in our platform and delivering even more value to customers,” said Idan Zalzberg, chief technology officer at Agoda. “The Property AMA Bot reduces uncertainty by answering questions instantly, which in turn leads to a smoother, more satisfying booking experience.”



Source link

Continue Reading

Trending

Copyright © 2025 AISTORIZ. For enquiries email at prompt@travelstoriz.com