makepad/platform/script/test
2026-09-02 14:31:15 +02:00
..
src script: the VM reaches std and its slot through one host — no aliased references 2026-09-02 14:31:15 +02:00
Cargo.toml First 2.0 2026-02-12 14:52:33 +01:00
README.md First 2.0 2026-02-12 14:52:33 +01:00

Makepad Example: ChatGPT

A simple example of a Makepad Framework application that uses its network layer to interact with OpenAI's GPT model.

How to Run

  1. Set up your OpenAI API key:

    • Visit OpenAI's API Key page and follow the instructions to create and retrieve your API key.
    • Note: Using the OpenAI API incurs costs.
  2. Configure the API key as an environment variable:

    export OPENAI_API_KEY=your_openai_api_key
    

    Optionally, you can configure the model and endpoint:

    export OPENAI_MODEL=your_desired_model  # default is "gpt-4o"
    export OPENAI_BASE_URL=your_custom_api_base_url  # default is "https://api.openai.com/v1"
    
  3. Run the application:

    cargo run