a { position: relative; color: #000; text-decoration: none; } a::after { content: ''; position: absolute; width: 100%; height: 2px; bottom: 0; left: 0; background-color: #000; visibility: hidden; transform: scaleX(0); transform-origin: left; transition: all 0.3s ease-in-out; } a:hover::after { visibility: visible; transform: scaleX(1); }
body { font-family: Arial, sans-serif; margin: 0; padding: 0; background-color: #f4f4f4; color: #333; } header { background-color: #4CAF50; color: white; padding: 1em 0; text-align: center; } main { padding: 2em; } /* Popup overlay */ .overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.7); display: none; justify-content: center; align-items: center; z-index: 1000; } /* Popup container */ .popup-content { background-color: #fff; border-radius: 5px; width: 80%; max-width: 600px; max-height: 80%; box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); z-index: 1001; position: relative; display: flex; flex-direction: column; } /* Popup header */ .popup-header { display: flex; justify-content: space-between; align-items: center; background-color: #f1f1f1; padding: 10px 10px; border-bottom: 1px solid #ccc; border-radius: 5px 5px 0 0; position: sticky; top: 0; z-index: 10; } /* Close button */ .close-btn { font-size: 18px; font-weight: bold; cursor: pointer; } /* Terms content */ .terms-content { padding: 20px; overflow-y: auto; flex-grow: 1; font-size: 16px; } /* Style for the button that opens the popup */ .open-popup-btn { font-size: 16px; cursor: pointer; } .version { background-color: white; margin: 1em 0; padding: 1em; border-radius: 8px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); } .version h2 { color: #4CAF50; margin-top: 0; } footer { text-align: center; padding: 1em 0; background-color: #4CAF50; color: white; position: fixed; width: 100%; bottom: 0; }
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
margin: 0;
padding: 0;
}
.custimg {
box-shadow: 0 5px 60px rgba(0, 0, 0, 0.5) !important;
border-radius: 5px !important; /* Optional: adds a slight roundness to the corners */
}
p {
font-size:14px;
font-family: Calibri, sans-serif;
}
.ul2 {
font-size:14px;
font-family: Calibri, sans-serif;
}
.li2 {
padding-top:6px;
}
.container {
width: 100%;
margin: auto;
padding: 20px;
background-color: #ffffff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 8px;
position: relative;
font-size:12px;
font-family: Calibri, sans-serif;
line-height: 1.6;
}
h1 {
text-align: center;
color: #333333;
}
.code-container {
display: flex;
border: 0px solid #ccc;
border-radius: 8px;
overflow: hidden;
}
.line-numbers {
background-color: #2d2d2d;
color: #75715e;
text-align: right;
padding: 20px 10px;
border-top-left-radius: 8px;
border-bottom-left-radius: 8px;
user-select: none;
font-size:16px;
}
.code {
background-color: #2d2d2d;
color: #ffffff;
padding: 20px;
border-top-right-radius: 8px;
border-bottom-right-radius: 8px;
overflow-x: auto;
white-space: pre;
font-family: "Courier New", Courier, monospace;
font-size:16px;
flex: 1;
}
.keyword {
color: #cc99cd;
}
.function {
color: #66d9ef;
}
.string {
color: #a6e22e;
}
.comment {
color: #75715e;
}
.class-name {
color: #a6e22e;
}
.copy-button {
position: absolute !important;
top: 5px !important;
right: 5px !important;
width: 30px !important;
height: 30px !important;
padding: 0px 5px !important;
background-color: #4CAF50 !important;
color: #fff !important;
border: none !important;
border-radius: 5px !important;
cursor: pointer !important;
background: url("https://scadasolve.com/wp-content/uploads/2024/08/tiny.png") no-repeat scroll 0 0 transparent !important;
background-position: 5px center !important;
}
.copy-button:hover {
background-color:
#afd5de !important;
}
.code-container2 {
position: relative;
background-color: #f6f8fa;
border-radius: 5px;
padding: 16px;
font-size: 14px;
font-family: 'Courier New', Courier, monospace;
overflow-x: auto;
}
.pre2 {
margin: 0;
white-space: pre-wrap; /* Allow code to wrap to the next line */
word-wrap: break-word; /* Break words when necessary */
}
.copy-button2 {
position: absolute;
top: 8px;
right: 8px;
background-color: #007bff;
color: white;
border: none;
border-radius: 5px;
padding: 5px 10px;
cursor: pointer;
font-size: 12px;
}
.copy-button2:hover {
background-color: #0056b3;
}
.command2 {
color: #333;
}
.code2 {
color: #e83e8c;
}
Incorporating CASE AI in VB Scripting for HMI Environments
' VBScript to open CASE.exe, activate -talk, and handle the interaction
Option Explicit
' Define variables
Dim objShell, objExec, strInput, strOutput, startTime, endTime, responseTime
' Create a shell object
Set objShell = CreateObject("WScript.Shell")
' Start CASE.exe with -talk command
Set objExec = objShell.Exec("CASE.exe -talk")
' Wait for the model to load
Do While Not objExec.StdOut.AtEndOfStream
strOutput = objExec.StdOut.ReadLine
If InStr(strOutput, "UserPrompt>") > 0 Then Exit Do
Loop
' Input data from user
strInput = InputBox("Enter your prompt for the AI:", "Conversational Agent")
' Record the start time
startTime = Timer
' Send the user prompt to CASE
objExec.StdIn.WriteLine strInput
' Capture the output response
Do While Not objExec.StdOut.AtEndOfStream
strOutput = objExec.StdOut.ReadLine
If InStr(strOutput, "UserPrompt>") > 0 Then
endTime = Timer
Exit Do
End If
If Len(strOutput) > 0 Then
WScript.Echo strOutput
End If
Loop
' Calculate the response time
responseTime = endTime - startTime
' Display the response time
WScript.Echo "Response Time: " & responseTime & " seconds"
' Clean up
Set objExec = Nothing
Set objShell = Nothing
Incorporating CASE AI in Python for HMI Environments
import subprocess
import time
# Start CASE.exe with -talk command
process = subprocess.Popen(
["CASE.exe", "-talk"],
stdin=subprocess.PIPE,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
text=True
)
# Wait for the model to load and reach the UserPrompt
while True:
output = process.stdout.readline().strip()
print(output) # Print the initial output (optional)
if "UserPrompt>" in output:
break
# Input data from user
user_input = input("Enter your prompt for the AI: ")
# Record the start time
start_time = time.time()
# Send the user prompt to CASE
process.stdin.write(user_input + "\n")
process.stdin.flush()
# Capture the output response
response = []
while True:
output = process.stdout.readline().strip()
if "UserPrompt>" in output:
end_time = time.time()
break
if output:
response.append(output)
# Calculate the response time
response_time = end_time - start_time
# Display the response and response time
print("Response from AI:\n" + "\n".join(response))
print(f"Response Time: {response_time:.2f} seconds")
# Terminate the process (optional)
process.terminate()
Incorporating CASE AI for Batch Script (Windows Command Prompt) Environments
@echo off
setlocal
rem Start CASE.exe with -talk
start /B "" CASE.exe -talk > output.txt
rem Wait for the model to load (basic loop checking for UserPrompt>)
:waitForPrompt
findstr /C:"UserPrompt>" output.txt >nul
if errorlevel 1 (
timeout /t 1 /nobreak >nul
goto waitForPrompt
)
rem Prompt user for input
set /p userInput="Enter your prompt for the AI: "
rem Get start time
for /F "tokens=2 delims==" %%i in ('wmic OS get LocalDateTime /value') do set startTime=%%i
rem Send user input to CASE.exe
echo %userInput%>> output.txt
rem Wait for the response (basic loop checking for UserPrompt>)
:waitForResponse
findstr /C:"UserPrompt>" output.txt >nul
if errorlevel 1 (
timeout /t 1 /nobreak >nul
goto waitForResponse
)
rem Get end time
for /F "tokens=2 delims==" %%i in ('wmic OS get LocalDateTime /value') do set endTime=%%i
rem Calculate response time
set /A responseTime=endTime-startTime
rem Display the response time
echo Response Time: %responseTime% seconds
endlocal
Incorporating CASE AI for PowerShell Environments
# Start CASE.exe with -talk
$process = Start-Process "CASE.exe" -ArgumentList "-talk" -PassThru -RedirectStandardOutput "output.txt" -NoNewWindow
# Wait for the model to load
while (-not (Get-Content output.txt | Select-String -Pattern "UserPrompt>")) {
Start-Sleep -Milliseconds 500
}
# Prompt user for input
$userInput = Read-Host "Enter your prompt for the AI"
# Record the start time
$startTime = Get-Date
# Send the user input to CASE.exe
Add-Content "output.txt" $userInput
# Wait for the response
while (-not (Get-Content output.txt | Select-String -Pattern "UserPrompt>")) {
Start-Sleep -Milliseconds 500
}
# Record the end time
$endTime = Get-Date
# Calculate the response time
$responseTime = $endTime - $startTime
# Display the response time
Write-Output "Response Time: $($responseTime.TotalSeconds) seconds"
Incorporating CASE AI for C# (Console Application) Environments
using System;
using System.Diagnostics;
using System.IO;
class Program
{
static void Main()
{
Process process = new Process();
process.StartInfo.FileName = "CASE.exe";
process.StartInfo.Arguments = "-talk";
process.StartInfo.RedirectStandardInput = true;
process.StartInfo.RedirectStandardOutput = true;
process.StartInfo.UseShellExecute = false;
process.StartInfo.CreateNoWindow = true;
process.Start();
StreamReader outputReader = process.StandardOutput;
StreamWriter inputWriter = process.StandardInput;
// Wait for UserPrompt>
while (!outputReader.ReadLine().Contains("UserPrompt>")) {}
Console.Write("Enter your prompt for the AI: ");
string userInput = Console.ReadLine();
// Start timing
Stopwatch stopwatch = Stopwatch.StartNew();
// Send input
inputWriter.WriteLine(userInput);
// Read output and look for UserPrompt>
string response;
do
{
response = outputReader.ReadLine();
Console.WriteLine(response);
} while (!response.Contains("UserPrompt>"));
// Stop timing
stopwatch.Stop();
Console.WriteLine($"Response Time: {stopwatch.Elapsed.TotalSeconds} seconds");
}
}
Incorporating CASE AI for Java Environments
import java.io.*;
import java.util.Scanner;
public class CASEChat {
public static void main(String[] args) throws IOException {
ProcessBuilder builder = new ProcessBuilder("CASE.exe", "-talk");
builder.redirectErrorStream(true);
Process process = builder.start();
BufferedReader reader = new BufferedReader(new InputStreamReader(process.getInputStream()));
BufferedWriter writer = new BufferedWriter(new OutputStreamWriter(process.getOutputStream()));
// Wait for UserPrompt>
String line;
while ((line = reader.readLine()) != null) {
System.out.println(line);
if (line.contains("UserPrompt>")) break;
}
// Get user input
Scanner scanner = new Scanner(System.in);
System.out.print("Enter your prompt for the AI: ");
String userInput = scanner.nextLine();
// Start timing
long startTime = System.nanoTime();
// Send user input
writer.write(userInput + "\n");
writer.flush();
// Read response and wait for UserPrompt>
while ((line = reader.readLine()) != null) {
System.out.println(line);
if (line.contains("UserPrompt>")) {
long endTime = System.nanoTime();
double responseTime = (endTime - startTime) / 1_000_000_000.0;
System.out.printf("Response Time: %.2f seconds%n", responseTime);
break;
}
}
process.destroy();
}
}
Incorporating CASE AI for Node.js Environments
const { spawn } = require('child_process');
const readline = require('readline');
const process = spawn('CASE.exe', ['-talk']);
const rl = readline.createInterface({
input: process.stdout,
output: process.stdin,
terminal: false
});
// Wait for UserPrompt>
process.stdout.on('data', (data) => {
const output = data.toString();
console.log(output);
if (output.includes('UserPrompt>')) {
rl.question('Enter your prompt for the AI: ', (userInput) => {
const startTime = process.hrtime();
process.stdin.write(userInput + '\n');
process.stdout.on('data', (responseData) => {
const response = responseData.toString();
console.log(response);
if (response.includes('UserPrompt>')) {
const endTime = process.hrtime(startTime);
const responseTime = endTime[0] + endTime[1] / 1e9;
console.log(`Response Time: ${responseTime.toFixed(2)} seconds`);
rl.close();
}
});
});
}
});
Incorporating CASE AI for Ruby Environments
require 'open3'
require 'time'
# Start CASE.exe with -talk
stdin, stdout, stderr, wait_thr = Open3.popen3("CASE.exe -talk")
# Wait for UserPrompt>
until stdout.gets.chomp.include?("UserPrompt>")
# Optionally print initialization output
end
# Prompt user for input
print "Enter your prompt for the AI: "
user_input = gets.chomp
# Record start time
start_time = Time.now
# Send input
stdin.puts user_input
# Capture response
response = ""
until (line = stdout.gets.chomp).include?("UserPrompt>")
response += line + "\n"
end
# Record end time
end_time = Time.now
# Calculate response time
response_time = end_time - start_time
# Display the response and time
puts "Response:\n#{response}"
puts "Response Time: #{response_time.round(2)} seconds"
Incorporating CASE AI for Go Environments
package main
import (
"bufio"
"fmt"
"os"
"os/exec"
"strings"
"time"
)
func main() {
// Start CASE.exe with -talk
cmd := exec.Command("CASE.exe", "-talk")
stdin, _ := cmd.StdinPipe()
stdout, _ := cmd.StdoutPipe()
cmd.Start()
// Wait for UserPrompt>
scanner := bufio.NewScanner(stdout)
for scanner.Scan() {
output := scanner.Text()
fmt.Println(output)
if strings.Contains(output, "UserPrompt>") {
break
}
}
// Prompt user for input
fmt.Print("Enter your prompt for the AI: ")
var userInput string
fmt.Scanln(&userInput)
// Record start time
startTime := time.Now()
// Send user input
fmt.Fprintln(stdin, userInput)
// Capture response
for scanner.Scan() {
output := scanner.Text()
fmt.Println(output)
if strings.Contains(output, "UserPrompt>") {
endTime := time.Now()
responseTime := endTime.Sub(startTime)
fmt.Printf("Response Time: %.2f seconds\n", responseTime.Seconds())
break
}
}
cmd.Wait()
}
Incorporating CASE AI for Perl Environments
use strict;
use warnings;
use Time::HiRes qw(time);
use IPC::Open3;
use Symbol 'gensym';
# Start CASE.exe with -talk
my $stderr = gensym;
my $pid = open3(my $stdin, my $stdout, $stderr, 'CASE.exe -talk');
# Wait for UserPrompt>
while () {
print $_;
last if /UserPrompt>/;
}
# Prompt user for input
print "Enter your prompt for the AI: ";
chomp(my $user_input = );
# Record start time
my $start_time = time();
# Send user input
print $stdin "$user_input\n";
# Capture response
while () {
print $_;
if (/UserPrompt/>) {
my $end_time = time();
my $response_time = $end_time - $start_time;
printf "Response Time: %.2f seconds\n", $response_time;
last;
}
}
Incorporating CASE AI for PHP Environments
array("pipe", "r"), // stdin
1 => array("pipe", "w"), // stdout
2 => array("pipe", "w") // stderr
);
$process = proc_open('CASE.exe -talk', $descriptorspec, $pipes);
if (is_resource($process)) {
// Wait for UserPrompt>
while ($line = fgets($pipes[1])) {
echo $line;
if (strpos($line, "UserPrompt>") !== false) {
break;
}
}
// Prompt user for input
$user_input = readline("Enter your prompt for the AI: ");
// Record start time
$start_time = microtime(true);
// Send user input to CASE.exe
fwrite($pipes[0], $user_input . PHP_EOL);
// Capture response
while ($line = fgets($pipes[1])) {
echo $line;
if (strpos($line, "UserPrompt>") !== false) {
break;
}
}
// Calculate response time
$end_time = microtime(true);
$response_time = $end_time - $start_time;
// Display response time
echo "Response Time: " . round($response_time, 2) . " seconds" . PHP_EOL;
// Close the pipes
fclose($pipes[0]);
fclose($pipes[1]);
fclose($pipes[2]);
// Close the process
proc_close($process);
}
?>
Incorporating CASE AI for ASP.NET Environments
using System;
using System.Diagnostics;
using System.Threading.Tasks;
using System.Web.UI;
public partial class Chat : Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected async void BtnChat_Click(object sender, EventArgs e)
{
string userInput = txtUserInput.Text;
string response = await RunCaseAiChat(userInput);
lblResponse.Text = response;
}
private async Task RunCaseAiChat(string userInput)
{
Process process = new Process();
process.StartInfo.FileName = "CASE.exe";
process.StartInfo.Arguments = "-talk";
process.StartInfo.RedirectStandardInput = true;
process.StartInfo.RedirectStandardOutput = true;
process.StartInfo.UseShellExecute = false;
process.StartInfo.CreateNoWindow = true;
process.Start();
// Wait for UserPrompt>
while (!process.StandardOutput.ReadLine().Contains("UserPrompt>")) { }
// Start timing
Stopwatch stopwatch = Stopwatch.StartNew();
// Send user input
process.StandardInput.WriteLine(userInput);
// Capture response
string response = string.Empty;
string line;
while ((line = process.StandardOutput.ReadLine()) != null)
{
response += line + "
";
if (line.Contains("UserPrompt>"))
{
stopwatch.Stop();
response += $"Response Time: {stopwatch.Elapsed.TotalSeconds} seconds
";
break;
}
}
process.WaitForExit();
process.Close();
return response;
}
}