Spaces:
Running
Running
title: Falcon 7B FastAPI Service emoji: π colorFrom: blue colorTo: green sdk: docker pinned: true app_port: 7860 license: apache-2.0
Falcon 7B FastAPI Service
This Space hosts a FastAPI application that serves the Falcon 7B model for text generation. The API is deployed using Docker.
Endpoints
/generate
Method: POST
Description: Generate text from a given prompt.
Payload:
{
"prompt": "Your input prompt",
"max_length": 50
}
Response:
{
"generated_text": "Generated text from Falcon 7B"
}