Spaces:
Build error
Build error
File size: 972 Bytes
8d2f9d4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
from fastapi import FastAPI, HTTPException, APIRouter
from pydantic import BaseModel
from app.utils.system_prompt import system_prompt, agentic_prompt
prompt_router = APIRouter()
# Define a model for the prompts
class Prompt(BaseModel):
system_prompt: str = None
agentic_prompt: str = None
# API endpoint to get the current prompts
@prompt_router.get("/prompts")
def get_prompts():
return {
"system_prompt": system_prompt,
"agentic_prompt": agentic_prompt,
}
# API endpoint to update the prompts
@prompt_router.put("/prompts")
def update_prompts(prompts: Prompt):
global system_prompt, agentic_prompt
if prompts.system_prompt is not None:
system_prompt = prompts.system_prompt
if prompts.agentic_prompt is not None:
agentic_prompt = prompts.agentic_prompt
return {
"message": "Prompts updated successfully",
"system_prompt": system_prompt,
"agentic_prompt": agentic_prompt,
}
|