Live Portfolio

A showcase of content generated by the TNGPT AI tools.

Futures that will come soon...

AI Image Studio

AI Generated Image of an astronaut

Prompt:

"Photorealistic image of an astronaut riding a horse on Mars, cinematic lighting."

AI Generated Image of a futuristic city

Prompt:

"Cyberpunk city at night, neon signs reflected in the rain-soaked streets, style of Blade Runner."

AI Generated Image of a cat

Prompt:

"A portrait of a regal cat wearing a tiny crown, oil painting style."

Programmer's Guild

Python: Flask Server

Generated by the Python AI Expert.

from flask import Flask
app = Flask(__name__)

@app.route('/')
def hello_world():
    return 'Hello, from your TNGPT AI!'

if __name__ == '__main__':
    app.run(debug=True)

JavaScript: Fetch Data

Generated by the JavaScript AI Expert.

async function getUsers() {
    try {
        const response = await fetch('https://api.example.com/users');
        if (!response.ok) {
            throw new Error(`HTTP error! status: ${response.status}`);
        }
        const data = await response.json();
        console.log(data);
    } catch (error) {
        console.error('Could not fetch users:', error);
    }
}