Programmer-RD-AI
feat: add Paragraph component and types for typography
a8aec61
raw
history blame
851 Bytes
export const APIRoutes = {
GetPlaygroundAgents: (PlaygroundApiUrl: string) =>
`${PlaygroundApiUrl}/v1/playground/agents`,
AgentRun: (PlaygroundApiUrl: string) =>
`${PlaygroundApiUrl}/v1/playground/agents/{agent_id}/runs`,
PlaygroundStatus: (PlaygroundApiUrl: string) =>
`${PlaygroundApiUrl}/v1/playground/status`,
GetPlaygroundSessions: (PlaygroundApiUrl: string, agentId: string) =>
`${PlaygroundApiUrl}/v1/playground/agents/${agentId}/sessions`,
GetPlaygroundSession: (
PlaygroundApiUrl: string,
agentId: string,
sessionId: string
) =>
`${PlaygroundApiUrl}/v1/playground/agents/${agentId}/sessions/${sessionId}`,
DeletePlaygroundSession: (
PlaygroundApiUrl: string,
agentId: string,
sessionId: string
) =>
`${PlaygroundApiUrl}/v1/playground/agents/${agentId}/sessions/${sessionId}`
}