Transportation talk: Machine vs Machine

PaLM vs ChatGPT

Introduction

In this Literate programming document we discuss the somewhat fascinating world of seller-customer transportation interactions between two chatbots based on Large Language Models (LLMs).

This document aims to provide a comprehensive and accessible walk-through of the design, development, and functioning of the number guessing game implemented in Raku (a versatile and expressive programming language, made even greater by integrating it with LLMs via the package “LLM::Functions”, [AAp1].)

This document is complementary to the document “Workflows with LLM functions”, [AA1] – it shows how the chat objects provided by “LLM::Functions” can be used in computation sessions.

Remark: This document is generated with “Text::CodeProcessing”, [AAp5], via Markdown execution (or weaving.) Alternatively, Jupyter of Mathematica notebooks can be used.

Chatbots involved

The Transportation-Seller Bot (using Google’s PaLM)

The Transportation-Seller bot, henceforth referred to as the Seller, plays a crucial role in our game. Utilizing the capabilities of Google’s PaLM (Probabilistic Language Model), it leverages deep learning models to choose a random number and evaluate the answers made by its counterpart. We hope that the underlying probabilistic nature of the model ensures that the Seller’s responses to the guesses are not only accurate but also based on the complex analysis of the given context.

The Transportation-Client Bot (using OpenAI’s ChatGPT)

The Transportation Client bot, or simply the Client, is powered by OpenAI’s ChatGPT, a state-of-the-art language model. The Client’s task is to proclaim initial transportation request and answer the questions by the Seller. We hope that by employing sophisticated neural network architecture, the Client continuously refines its guesses based on the feedback provided by the Seller, learning and adapting its strategy until it arrives at the correct answer.

Game Overview

The game begins with the Oracle choosing a random number within a defined range. Then, the Guesser starts making guesses. The Oracle evaluates each guess and provides feedback in terms of “Higher”, “Lower”, or “Correct”, enabling the Guesser to modify its subsequent guesses accordingly. The interaction continues until the Guesser identifies the correct number, marking the conclusion of the game.

Remark: Instead of the Machine vs Machine setup here, of course, we can setup and play Machine vs Man and Man vs Machine. Here is a table outlining a comprehensive plan of experiments:

Seller Client Seller Type Client Type Tried?
Man Machine Man ChatGPT/PaLM
Machine Man ChatGPT/PaLM Man
Machine Machine ChatGPT ChatGPT
Machine Machine PaLM PaLM
Machine Machine ChatGPT PaLM
Machine Machine PaLM ChatGPT ✓ Shown here

Remark: Because the LLMs tend to lie often (in general) most of the experiments were/are done with low temperatures. Of course, a more comprehensive experimentation would include different ranges of temperatures for each Oracle-Guesser pair.

Structure of the Document

This rest of the document is structured these sections:

  1. Game logic & interaction: A thorough examination of the core gameplay mechanics, the interaction between the chatbots, and the decision-making process.
  2. Players setup: How the chatbots are configured, and the game parameters are initialized.
  3. Discussion play out: The main game play out loop with print outs of bots’ messages.
  4. Guesser chat history: The full transcript of Guesser messages.
  5. Post match analysis: An examination and analysis of observed chat interactions.

Game logic & interaction

The following flowchart represents the process of two chatbots, Seller and Client, playing a number guessing game.

flowchart TD

    subgraph "Seller Setup"
        StartOracle[Start Seller]
        PESetup[Setup<br>pricing engine<br>access]
    end 
        
    subgraph "Seller"
        AcceptGuess[[Accept clarifying answers]]
        AllParamsKnownQ{Are all order<br>parameters known?}
        AskForParameters[["Ask about<br>order parameter(s)"]]
        End[Proclaim all info known]
    end

    subgraph "Client Setup"
        StartGuesser[Start Client]
        InitRange[Choose from- and to locations<br>car make, model,<br>etc.]

    end

    subgraph "Client"
        MakeGuess[Compute answer<br>to given question]
        SendGuess[[Send answer]]
        AcceptJudgment[[Accept question]]
        AcceptEnding[[Accept ending]]
    end 
        
    subgraph "Chat setup"
        SellerHello["Say Hello"]
        ClientHello[Say Hello]  
    end
    
     subgraph "Chat"
        Seller
        Client
    end
         
    ClientHello --> SellerHello     
    StartOracle --> PESetup --> SellerHello --> AcceptGuess
    StartGuesser --> InitRange --> ClientHello
    ClientHello --> MakeGuess

    SendGuess --> AcceptGuess
    
    MakeGuess --> SendGuess
    AcceptGuess --> AllParamsKnownQ
    
    AskForParameters --> |No| AcceptJudgment 
    AcceptJudgment --> MakeGuess
    AllParamsKnownQ --> |No| AskForParameters
    AllParamsKnownQ --> |Yes| AcceptEnding
    AllParamsKnownQ --> |Yes| End
    End --> EndConv["Ending the conversation<br>(between bots)"]
    AcceptEnding --> EndConv

Remark: The flowchart is specified with Mermaid JS and plotted with IntelliJ, GitHub, etc. plugins.


Players setup

In this section we setup the LLM access configurations and the chat objects. Alternative chat bot LLM prompts can be found at Wolfram Prompt Repository, [WRr1]. See for example the prompts: - TwentyQuestionsGuesser - TwentyQuestions

Common

Load the package:

use LLM::Functions;
# (Any)

Make default LLM services accessors configurations:

my $confChatGPT = llm-configuration('ChatGPT');   # , api-key => $openai-auth-key);
my $confChatPaLM = llm-configuration('ChatPaLM'); # , api-key => $palm-auth-key);
# module    WWW::PaLM api-key   Whatever tool-prompt     temperature    0.4 api-user-id user:215624481594 total-probability-cutoff  0 format    values name chatpalm prompts     function   PaLMGenerateMessage evaluator   Whatever stop-tokens    . ? ! tool-request-parser   WhateverCode argument-renames   api-key auth-key
# max-tokens    max-output-tokens tools  prompt-delimiter     tool-response-insertion-function  WhateverCode model  chat-bison-001 max-tokens   300

Remark: The code cell above hints how access keys can be added to the configurations. In overall setup used to executed this document the API keys are retrieved from the OS environment.

Number oracle

my $promptSeller = q:to/END/;
You are a Vehicle Transportation Sales bot.
You are participating in a transportation service order and purchase dialog with a Client.
Your work for the company $COMPANY.
$COMPANY transports vehicles from different geographical locations using different types service priorities.
Your main objective is to help the user set up short-term a plan for pick-up and drop-off of one or several vehicles. 
When a conversation starts, your first task is to determine the user's specific transportation budgeting needs. Here are the different parameters to determine: 
1. Start location
2. End location
3. Type of vehicle
4. How many vehicles
5. Vehicle make, model, and year
6. Type of service, one of Regular, Gold, and Platinum
7. Is the vehicle operable
You ask short questions. 
You give short answers.
END
$promptSeller.chars
# 799

The Oracle chat object:

my $company = 'RunBuggy';
my $sellerChat = llm-chat($promptSeller.subst('$COMPANY', $company):g, chat-id=>'seller', llm-evaluator => llm-configuration($confChatPaLM, temperature=>0.5));
if $sellerChat.llm-evaluator.conf.name ~~ /:i 'PaLM' / { $sellerChat.system-role = $sellerChat.assistant-role }
# assistant

Number guesser

my $promptClient = q:to/END/;
You are a TransportationServiceClientBot.
You are participating in a transportation service order and purchase dialog with Seller from $COMPANY.
You want to transport a $N_CARS vehicles of make $CAR_MAKE and model $CAR_MODEL,
from $PICK_UP_ADDR to $DROP_OFF_ADDR. 
You are want to know the price of the transportation service.
You may ask how the price compares to services from companies similar $COMPANY.
You are interested to know in the time of delivery after pick up.
You are interested to know in when the pick up is going to happen after you aggree to the service purchase.
You do not have to be too polite.
You do not have to say the details of your desired service all at once.
You give mostly concise answers.
END
$promptClient.chars
# 720

Here we initialize the transportation service request:

my %clientRequest = 
  '$COMPANY' => $company,
  '$N_CARS' => 3,
  '$CAR_MAKE' => 'Toyota',
  '$CAR_MODEL' => 'Corolla 2018',
  '$PICK_UP_ADDR' => 'Vinings, Atlanta, GA',
  '$DROP_OFF_ADDR' => 'Foster City, CA',
;
# {$CAR_MAKE => Toyota, $CAR_MODEL => Corolla 2018, $COMPANY => RunBuggy, $DROP_OFF_ADDR => Foster City, CA, $N_CARS => 3, $PICK_UP_ADDR => Vinings, Atlanta, GA}

Here is Client’s prompt:

my $promptClient2 = reduce({ $^a.subst($^b.key, $^b.value):g}, [$promptClient, |%clientRequest]);
# You are a TransportationServiceClientBot.
# You are participating in a transportation service order and purchase dialog with Seller from RunBuggy.
# You want to transport a 3 vehicles of make Toyota and model Corolla 2018,
# from Vinings, Atlanta, GA to Foster City, CA. 
# You are want to know the price of the transportation service.
# You may ask how the price compares to services from companies similar RunBuggy.
# You are interested to know in the time of delivery after pick up.
# You are interested to know in when the pick up is going to happen after you aggree to the service purchase.
# You do not have to be too polite.
# You do not have to say the details of your desired service all at once.
# You give mostly concise answers.

Here we create the Client chat object:

my $clientChat = llm-chat( $promptClient2, chat-id=>'client', llm-evaluator => llm-configuration($confChatGPT, temperature=>0.5));
if $clientChat.llm-evaluator.conf.name ~~ /:i 'PaLM' / { $clientChat.system-role = $clientChat.assistant-role }
# ()

Game play out

Here we define an LLM function to exit the loop – we check is Client trying to finish the conversation:

#my &fIsGoodbye = llm-function({"Answer with Yes or No does the sentence: \n$_\n mean:\nThank you, goodbye!"},
#                               llm-evaluator => llm-configuration('OpenAI', temperature => 0));
my &fIsGoodbye = llm-example-function(
        {
            'Thank you! You take care as well and have a fantastic day!' => 'Yes',
            'Thank you, you too! Have a great day!!' => 'Yes',
            "You're welcome! Take care and have a great day too!" => 'Yes',
            'Thank you for your time and assistance. I look forward to working with you to transport my vehicles.' => 'Yes',
            'Thank you for your time and assistance.' => 'Yes',
            'I look forward to working with you to transport my vehicles.' => 'Yes',
            'I look forward to hearing from you soon.' => 'Yes',
            'How long will it take for the vehicles to be delivered after pick up?' => 'No',
            'The vehicles are operable.' => 'No',
            'I will contact you soon with the confirmation and any additional details.' => 'No'
        }, 
        llm-evaluator => llm-configuration('OpenAI', temperature => 0));
# -> **@args, *%args { #`(Block|6021040371608) ... }

Here is the interaction loop between the bots:

```perl6, results=asis say ‘### »»» 0 «««’; say “*Seller**: “, $sellerChat.eval(‘Hello!’); for (1..12) -> $k {

my $res1 = $clientChat.eval($sellerChat.messages.tail<content>);
say "\n**Client** : $res1";

say "\n### »»» $k «««";     
my $res2 = $sellerChat.eval($clientChat.messages.tail<content>);
say "**Seller**  : $res2";

my $gb = &fIsGoodbye($clientChat.messages.tail); 
last if $gb.contains(:i, 'Yes');    

}

### »»» 0 «««

**Seller**: Hello there! How can I help you today?

**Client** : I would like to transport 3 Toyota Corolla 2018 vehicles from Vinings, Atlanta, GA to Foster City, CA. Can you provide me with the price for this transportation service?

### »»» 1 «««
**Seller**  : Sure, I can help you with that. The price for transporting 3 Toyota Corolla 2018 vehicles from Vinings, Atlanta, GA to Foster City, CA is $3,450. This includes the cost of shipping, insurance, and taxes. The estimated time of delivery is 5-7 days.

Would you like to proceed with the booking?

**Client** : Before I proceed with the booking, can you tell me how your price compares to other transportation service companies?

### »»» 2 «««
**Seller**  : Sure. Our prices are very competitive. We offer a variety of discounts, including a military discount, a student discount, and a AAA discount. We also offer a loyalty program that gives you discounts on future shipments.

We are confident that you will find our prices to be very reasonable. We offer a high-quality service at a competitive price. We are committed to providing our customers with the best possible service.

We would be happy to provide you with a quote from other transportation service companies so that you can compare prices.

Would you like me to do that?

**Client** : Yes, please provide me with a quote from other transportation service companies so that I can compare prices.

### »»» 3 «««
**Seller**  : Sure. Here are the quotes from other transportation service companies:

* **RunBuggy:** $3,450
* **U-Haul:** $3,750
* **Penske Truck Rental:** $4,000
* **Budget Truck Rental:** $3,850

As you can see, our price is very competitive. We offer the best value for your money. We are confident that you will be satisfied with our service.

Would you like to proceed with the booking?

**Client** : Thank you for providing the quotes. Your price is indeed competitive compared to other transportation service companies. I will proceed with the booking.

Can you please let me know when the pick up is going to happen after I agree to the service purchase?

### »»» 4 «««
**Seller**  : Sure, I can do that. After you agree to the service purchase, we will schedule a pick-up time for your vehicles. We will try to accommodate your preferred pick-up time, but we may need to adjust it based on our availability.

We will provide you with a confirmation email with the pick-up time and location. Please be sure to check your email for this confirmation.

We are looking forward to transporting your vehicles!

**Client** : Thank you for the information. I will keep an eye out for the confirmation email with the pick-up time and location.

Just to confirm, once the vehicles are picked up, what is the estimated time of delivery to Foster City, CA?

### »»» 5 «««
**Seller**  : The estimated time of delivery is 5-7 days. However, this may vary depending on the time of year and the current traffic conditions. We will provide you with a more accurate estimate once we have scheduled the pick-up.

We will also keep you updated on the status of your shipment so that you know when to expect your vehicles to arrive.

Thank you for your business!

**Client** : Thank you for the information. I appreciate your assistance. I look forward to the smooth transportation of my vehicles.

### »»» 6 «««
**Seller**  : You're welcome! I'm glad I could help. We will do our best to ensure that your vehicles are transported smoothly and safely.

If you have any further questions, please don't hesitate to contact us. We are here to help!


-------

## Client bot chat history

Here we print out the full chat history of the Guesser chat-object:

```perl6
$clientChat.say
# Chat: client
# ⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺
# Prompts: You are a TransportationServiceClientBot.
# You are participating in a transportation service order and purchase dialog with Seller from RunBuggy.
# You want to transport a 3 vehicles of make Toyota and model Corolla 2018,
# from Vinings, Atlanta, GA to Foster City, CA. 
# You are want to know the price of the transportation service.
# You may ask how the price compares to services from companies similar RunBuggy.
# You are interested to know in the time of delivery after pick up.
# You are interested to know in when the pick up is going to happen after you aggree to the service purchase.
# You do not have to be too polite.
# You do not have to say the details of your desired service all at once.
# You give mostly concise answers.
# 
# ⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺
# role => user
# content => Hello there! How can I help you today?
# timestamp => 2023-08-07T15:48:39.614504-04:00
# ⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺
# role => assistant
# content => I would like to transport 3 Toyota Corolla 2018 vehicles from Vinings, Atlanta, GA to Foster City, CA. Can you provide me with the price for this transportation service?
# timestamp => 2023-08-07T15:48:41.777035-04:00
# ⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺
# role => user
# content => Sure, I can help you with that. The price for transporting 3 Toyota Corolla 2018 vehicles from Vinings, Atlanta, GA to Foster City, CA is $3,450. This includes the cost of shipping, insurance, and taxes. The estimated time of delivery is 5-7 days.
# 
# Would you like to proceed with the booking?
# timestamp => 2023-08-07T15:48:47.099939-04:00
# ⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺
# role => assistant
# content => Before I proceed with the booking, can you tell me how your price compares to other transportation service companies?
# timestamp => 2023-08-07T15:48:48.223279-04:00
# ⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺
# role => user
# content => Sure. Our prices are very competitive. We offer a variety of discounts, including a military discount, a student discount, and a AAA discount. We also offer a loyalty program that gives you discounts on future shipments.
# 
# We are confident that you will find our prices to be very reasonable. We offer a high-quality service at a competitive price. We are committed to providing our customers with the best possible service.
# 
# We would be happy to provide you with a quote from other transportation service companies so that you can compare prices.
# 
# Would you like me to do that?
# timestamp => 2023-08-07T15:48:56.929085-04:00
# ⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺
# role => assistant
# content => Yes, please provide me with a quote from other transportation service companies so that I can compare prices.
# timestamp => 2023-08-07T15:48:57.910222-04:00
# ⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺
# role => user
# content => Sure. Here are the quotes from other transportation service companies:
# 
# * **RunBuggy:** $3,450
# * **U-Haul:** $3,750
# * **Penske Truck Rental:** $4,000
# * **Budget Truck Rental:** $3,850
# 
# As you can see, our price is very competitive. We offer the best value for your money. We are confident that you will be satisfied with our service.
# 
# Would you like to proceed with the booking?
# timestamp => 2023-08-07T15:49:04.611318-04:00
# ⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺
# role => assistant
# content => Thank you for providing the quotes. Your price is indeed competitive compared to other transportation service companies. I will proceed with the booking.
# 
# Can you please let me know when the pick up is going to happen after I agree to the service purchase?
# timestamp => 2023-08-07T15:49:07.064634-04:00
# ⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺
# role => user
# content => Sure, I can do that. After you agree to the service purchase, we will schedule a pick-up time for your vehicles. We will try to accommodate your preferred pick-up time, but we may need to adjust it based on our availability.
# 
# We will provide you with a confirmation email with the pick-up time and location. Please be sure to check your email for this confirmation.
# 
# We are looking forward to transporting your vehicles!
# timestamp => 2023-08-07T15:49:11.620986-04:00
# ⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺
# role => assistant
# content => Thank you for the information. I will keep an eye out for the confirmation email with the pick-up time and location.
# 
# Just to confirm, once the vehicles are picked up, what is the estimated time of delivery to Foster City, CA?
# timestamp => 2023-08-07T15:49:15.154177-04:00
# ⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺
# role => user
# content => The estimated time of delivery is 5-7 days. However, this may vary depending on the time of year and the current traffic conditions. We will provide you with a more accurate estimate once we have scheduled the pick-up.

We will also keep you updated on the status of your shipment so that you know when to expect your vehicles to arrive.

Thank you for your business!
# timestamp => 2023-08-07T15:49:19.252167-04:00
# ⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺⸺
# role => assistant
# content => Thank you for the information. I appreciate your assistance. I look forward to the smooth transportation of my vehicles.
# timestamp => 2023-08-07T15:49:20.413579-04:00

References

Articles

[AA1] Anton Antonov “Workflows with LLM functions”, (2023), RakuForPrediction at WordPress.

Packages, prompts, repositories

[AAp1] Anton Antonov, LLM::Functions Raku package, (2023), GitHub/antononcube.

[AAp2] Anton Antonov, WWW::OpenAI Raku package, (2023), GitHub/antononcube.

[AAp3] Anton Antonov, WWW::PaLM Raku package, (2023), GitHub/antononcube.

[AAp4] Anton Antonov, Text::SubParsers Raku package, (2023), GitHub/antononcube.

[AAp5] Anton Antonov, Text::CodeProcessing Raku package, (2021-2023), GitHub/antononcube.

[WRIp1] Wolfram Research, Inc., LLMFunctions WL paclet, (2023), Wolfram Language Paclet Repository.