From 506d0b399cce564595d059b07b9bfde10e8f469d Mon Sep 17 00:00:00 2001 From: Karthik Kalyanaraman <105607645+karthikscale3@users.noreply.github.com> Date: Tue, 7 May 2024 11:25:08 -0700 Subject: [PATCH] Release 1.3.1 (#87) * Pagination bug * Bug fix * chore: add docker cmd * Compatibility fixes for SDK version 2.0.0 (#69) * Pagination bug * Bug fix * Fix for schema changes * Render tool calling * Support for Langgraph, Qdrant & Groq (#73) * Pagination bug * Bug fix * Add langgraph support * QDrant support * Add Groq support * update README * update README * feat: optimise docker image for self host setup * adding api access to traces endpoint * clean up * refactor * feat: add clickhouse db create on app start (#79) * docs: add railway deploy, fix sdk badges (#81) * Playground and Prompt Management (#83) * Pagination bug * Bug fix * Playground - basic implementation * Playground - streaming and nonstreaming * Move playground inside project * API key flow * Api key * Playground refactor * Add chat hookup * anthropic streaming support * Bug fixes to openai playground * Anthropic bugfixes * Anthropic bugfix * Cohere first iteration * Cohere role fixes * Cohere api fix * Parallel running * Playground cost calculation non streaming * playground - streaming token calculation * latency and cost * Support for Groq * Add model name * Prompt management views * Remove current promptset flow * Prompt management API hooks * Prompt registry final * Playground bugfixes * Bug fix playground * Rearrange project nav * Fix playground * Fix prompts * Bugfixes * Minor fix * Prompt versioning bugfix * Bugfix * fix: clickhouse table find queries (#82) * Fix to surface multiple LLM requests inside LLM View (#84) * Pagination bug * Bug fix * Fix for surfacing multiple LLM requests in LLMView * Minor bugfixes (#86) * Pagination bug * Bug fix * Bugfixes --------- Co-authored-by: Darshit Suratwala Co-authored-by: darshit-s3 <119623510+darshit-s3@users.noreply.github.com> Co-authored-by: dylan Co-authored-by: dylanzuber-scale3 <116033320+dylanzuber-scale3@users.noreply.github.com> --- app/(protected)/project/[project_id]/playground/page.tsx | 2 +- .../project/[project_id]/prompts/[prompt_id]/page.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/(protected)/project/[project_id]/playground/page.tsx b/app/(protected)/project/[project_id]/playground/page.tsx index 56731b7d..d370b0bb 100644 --- a/app/(protected)/project/[project_id]/playground/page.tsx +++ b/app/(protected)/project/[project_id]/playground/page.tsx @@ -75,7 +75,7 @@ export default function Page() { return (
- Note: Don't forget to add your LLM provider API keys in the{" "} + Note: Dont forget to add your LLM provider API keys in the{" "} settings page. diff --git a/app/(protected)/project/[project_id]/prompts/[prompt_id]/page.tsx b/app/(protected)/project/[project_id]/prompts/[prompt_id]/page.tsx index dd58727b..f9511c31 100644 --- a/app/(protected)/project/[project_id]/prompts/[prompt_id]/page.tsx +++ b/app/(protected)/project/[project_id]/prompts/[prompt_id]/page.tsx @@ -14,7 +14,7 @@ import { useState } from "react"; import { useQuery, useQueryClient } from "react-query"; import { toast } from "sonner"; -export default function Prompt() { +export default function Page() { const promptsetId = useParams()?.prompt_id as string; const router = useRouter(); const [prompts, setPrompts] = useState([]);