You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
awaitcl.Message(content="Modify the agents and tools from below settings").send()
34
+
35
+
36
+
@cl.set_chat_profiles
37
+
asyncdefset_profiles(current_user: cl.User):
38
+
return [
39
+
cl.ChatProfile(
40
+
name="Auto",
41
+
markdown_description="Automatically generate agents and tasks based on your input.",
42
+
starters=[
43
+
cl.Starter(
44
+
label="Create a movie script",
45
+
message="Create a movie script about a futuristic society where AI and humans coexist, focusing on the conflict and resolution between them. Start with an intriguing opening scene.",
46
+
icon="/public/movie.svg",
47
+
),
48
+
cl.Starter(
49
+
label="Design a fantasy world",
50
+
message="Design a detailed fantasy world with unique geography, cultures, and magical systems. Start by describing the main continent and its inhabitants.",
51
+
icon="/public/fantasy.svg",
52
+
),
53
+
cl.Starter(
54
+
label="Write a futuristic political thriller",
55
+
message="Write a futuristic political thriller involving a conspiracy within a global government. Start with a high-stakes meeting that sets the plot in motion.",
56
+
icon="/public/thriller.svg",
57
+
),
58
+
cl.Starter(
59
+
label="Develop a new board game",
60
+
message="Develop a new, innovative board game. Describe the game's objective, rules, and unique mechanics. Create a scenario to illustrate gameplay.",
61
+
icon="/public/game.svg",
62
+
),
63
+
]
64
+
),
65
+
cl.ChatProfile(
66
+
name="Manual",
67
+
markdown_description="Manually define your agents and tasks using a YAML file.",
Copy file name to clipboardExpand all lines: pyproject.toml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
[tool.poetry]
2
2
name = "PraisonAI"
3
-
version = "0.0.27"
3
+
version = "0.0.28"
4
4
description = "PraisonAI application combines AutoGen and CrewAI or similar frameworks into a low-code solution for building and managing multi-agent LLM systems, focusing on simplicity, customization, and efficient human-agent collaboration."
0 commit comments