Update flow name to "Basic Prompting (Hello, world!)" in relevant files

This commit is contained in:
Gabriel Luiz Freitas Almeida 2024-04-03 22:48:22 -03:00
commit 9de5e42cec
3 changed files with 4 additions and 4 deletions

View file

@ -43,7 +43,7 @@ export default function UndrawCardComponent({
}}
/>
);
case "Basic Prompting":
case "Basic Prompting (Hello, world!)":
return (
<BasicPrompt
style={{

View file

@ -34,10 +34,10 @@ export default function NewFlowModal({
{/* {examples.map((example, idx) => {
return <UndrawCardComponent key={idx} flow={example} />;
})} */}
{examples.find((e) => e.name == "Basic Prompting") && (
{examples.find((e) => e.name == "Basic Prompting (Hello, world!)") && (
<UndrawCardComponent
key={1}
flow={examples.find((e) => e.name == "Basic Prompting")!}
flow={examples.find((e) => e.name == "Basic Prompting (Hello, world!)")!}
/>
)}
{examples.find((e) => e.name == "Memory Chatbot") && (

View file

@ -381,7 +381,7 @@ def get_starter_project(active_user):
# once the client is created, we can get the starter project
with session_getter(get_db_service()) as session:
flow = session.exec(
select(Flow).where(Flow.folder == STARTER_FOLDER_NAME).where(Flow.name == "Basic Prompting")
select(Flow).where(Flow.folder == STARTER_FOLDER_NAME).where(Flow.name == "Basic Prompting (Hello, world!)")
).first()
if not flow:
raise ValueError("No starter project found")