776 B
776 B
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
-
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.
-
Configure the API key as an environment variable:
export OPENAI_API_KEY=your_openai_api_keyOptionally, 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" -
Run the application:
cargo run