Skip to content

Commit 5c1fd51

Browse files
committed
feat(ui): update llm action names and models in start_chat
1 parent 5d2a0f5 commit 5c1fd51

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/hf_demo_space/app.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,9 @@ async def start_chat():
7979
res = await cl.AskActionMessage(
8080
content="Select the LLM to power Agent Tide! You can use one of the following free options or configure your own via api key! We recommend `gpt-4.1` or `sonnet-4` for ultimate performance (don't worry we are not logging api keys, you can check the code yourself)! Bear in mind that free alternatives can be context and rate limited.",
8181
actions=[
82-
cl.Action(name="kimi-k2", payload={"model": "moonshotai/kimi-k2:free"}, label="kimi-k2"),
82+
cl.Action(name="deepseek/deepseek-chat-v3.1:free", payload={"model": "deepseek/deepseek-chat-v3.1:free"}, label="deepseek-chat-v3.1"),
8383
cl.Action(name="qwen3-coder", payload={"model": "qwen/qwen3-coder:free"}, label="qwen3-coder"),
84-
cl.Action(name="gpt-oss-20b", payload={"model": "openai/gpt-oss-20b:free"}, label="gpt-oss-20b"),
84+
cl.Action(name="grok-4-fast", payload={"model": "x-ai/grok-4-fast:free"}, label="grok-4-fast"),
8585
cl.Action(name="custom", payload={"model": "custom"}, label="bring your model")
8686
],
8787
timeout=3600

0 commit comments

Comments
 (0)