mirror of
https://github.com/fastapi/fastapi.git
synced 2026-04-05 23:55:06 -04:00
13 lines
204 B
Python
13 lines
204 B
Python
from typing import Any
|
|
|
|
from fastapi import FastAPI
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
@app.vibe(
|
|
"/vibe/",
|
|
prompt="pls return json of users from database. make no mistakes",
|
|
)
|
|
async def ai_vibes(body: Any): ...
|