Skip to content

Instantly share code, notes, and snippets.

View isaaclepes's full-sized avatar
👨‍💻

Isaac LePes isaaclepes

👨‍💻
View GitHub Profile
@isaaclepes
isaaclepes / chat.php
Last active March 17, 2023 06:28
These PHP files constitute a gpt-3.5-turbo powered chat assistant.
<?php
session_start();
if (!isset($_SESSION['chat_id'])) {
$_SESSION['chat_id'] = uniqid();
}
require_once 'vendor/autoload.php';
use GuzzleHttp\Client;