Spaces:
Building
Building
from fastapi import APIRouter, Request | |
router = APIRouter() | |
async def ollama_response(request: Request): | |
data = await request.json() | |
question = data.get("question", "No question provided.") | |
return {"response": f"Olama received: {question}"} | |