Spaces:
Paused
Paused
| from fastapi import FastAPI | |
| app = FastAPI() | |
| def greet_json(): | |
| return {"Hello": "World!"} | |
| def greet_text(): | |
| return "Hello Akanksh B C!" | |
| def sum_numbers(a: int, b: int): | |
| return {"sum": a + b} |