Server mode
Get Endpoint via Float16
This tutorial guides you through deploying a simple FastAPI "Hello World" application using Float16's deployment mode.
Float16 CLI installed
Logged into Float16 account
Terminal environment (VSCode or preferred compiler recommended)
Step 1 : Prepare Your Script
(main.py)
Save the script in a selected folder
Navigate to the folder in your terminal
Ensure the port is set to 8000
Step 2 : Create project
Resulting Files
float16.conf
: Contains your project IDrequirements.txt
: Initially empty
If you cannot create new project, learn more
Step 3 : Update Dependencies
Update requirements.txt
with necessary libraries:
if you don't know or don't specify the exact version, you can just input the library name without version.
Install dependencies:
Step 4 : Deploy Script
After successful deployment, you'll receive:
Function Endpoint
Server Endpoint
API Key
Example:
Step 5 : Endpoint Request
Use the provided endpoints with the API key (bearer token) to make requests.
Endpoint Request Example:
Path:
/hello
Expected Response:
{"message": "Hello World!"}
To understand the differences between function and server modes, refer to the dedicated section.
Congratulations! You've successfully use your first server mode on Float16's serverless GPU platform.
Explore More
Learn how to use Float16 CLI for various use cases in our tutorials.
Happy coding with Float16 Serverless GPU!
Last updated